:root {
    --akpet-primary: #3c2a96;
    --akpet-primary-light: #5d4bc2;
    --akpet-primary-dark: #251760;
    --akpet-red: #ef3d27;
    --akpet-red-light: #ff6548;
    --akpet-blue: #6278ca;
    --akpet-dark: #111020;
    --akpet-dark-soft: #19172d;
    --akpet-title: #171625;
    --akpet-text: #626777;
    --akpet-light: #f5f6fa;
    --akpet-border: #e7e8f0;
    --akpet-white: #ffffff;
    --akpet-radius: 28px;
    --akpet-radius-small: 17px;
    --akpet-shadow: 0 26px 75px rgba(29, 22, 82, .14);
    --akpet-shadow-soft: 0 16px 45px rgba(29, 22, 82, .08);
    --akpet-font: "Manrope", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.akpet-body {
    margin: 0;
    overflow-x: hidden;
    background: var(--akpet-white);
    color: var(--akpet-title);
    font-family: var(--akpet-font);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
}

body.akpet-body,
body.akpet-body input,
body.akpet-body textarea,
body.akpet-body select,
body.akpet-body button {
    font-family: var(--akpet-font);
}

a {
    color: inherit;
    text-decoration: none;
    transition:
        color .25s ease,
        background-color .25s ease,
        border-color .25s ease,
        transform .25s ease,
        opacity .25s ease,
        box-shadow .25s ease;
}

img {
    max-width: 100%;
}

button {
    cursor: pointer;
}

::selection {
    background: var(--akpet-red);
    color: var(--akpet-white);
}

.akpet-main {
    position: relative;
    overflow: hidden;
}

.akpet-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1050;
    transition:
        background-color .25s ease,
        box-shadow .25s ease;
}

.akpet-header.is-scrolled {
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 12px 40px rgba(17, 16, 32, .09);
    backdrop-filter: blur(16px);
}

.akpet-topbar {
    min-height: 39px;
    display: flex;
    align-items: center;
    background: rgba(17, 16, 32, .9);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .74);
}

.akpet-header.is-scrolled .akpet-topbar {
    display: none;
}

.akpet-topbar-left,
.akpet-topbar-social {
    min-height: 39px;
    display: flex;
    align-items: center;
}

.akpet-topbar-left {
    gap: 25px;
}

.akpet-topbar-link,
.akpet-topbar-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .76);
    font-size: 12px;
    font-weight: 600;
}

.akpet-topbar-link:hover {
    color: var(--akpet-white);
}

.akpet-topbar-note i {
    color: var(--akpet-red-light);
}

.akpet-topbar-social {
    justify-content: flex-end;
    gap: 7px;
}

.akpet-topbar-social a {
    width: 27px;
    height: 27px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .08);
    color: var(--akpet-white);
    font-size: 11px;
}

.akpet-topbar-social a:hover {
    background: var(--akpet-red);
    color: var(--akpet-white);
    transform: translateY(-2px);
}

.akpet-navbar {
    min-height: 82px;
    padding: 0;
}

.akpet-brand {
    padding: 0;
    margin-right: 25px;
}

.akpet-logo {
    width: auto;
    height: 54px;
    max-width: 205px;
    object-fit: contain;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.akpet-logo-dark,
.akpet-logo-mobile {
    display: none;
}

.akpet-logo-light {
    display: block;
}

.akpet-header.is-scrolled .akpet-logo-light {
    display: none;
}

.akpet-header.is-scrolled .akpet-logo-dark {
    display: block;
}

.akpet-navigation {
    align-items: center;
    gap: 1px;
}

.akpet-navigation > .nav-item {
    position: relative;
}

.akpet-navigation .nav-link {
    padding: 11px 12px !important;
    border-radius: 999px;
    color: var(--akpet-white);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}

.akpet-header.is-scrolled .akpet-navigation .nav-link {
    color: var(--akpet-title);
}

.akpet-navigation .nav-link:hover,
.akpet-navigation .nav-link:focus {
    background: rgba(255, 255, 255, .1);
    color: var(--akpet-white);
}

.akpet-header.is-scrolled .akpet-navigation .nav-link:hover,
.akpet-header.is-scrolled .akpet-navigation .nav-link:focus {
    background: rgba(60, 42, 150, .08);
    color: var(--akpet-primary);
}

.akpet-nav-link-row {
    display: flex;
    align-items: center;
}

.akpet-dropdown-toggle {
    width: 25px;
    height: 25px;
    margin-left: -8px;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: rgba(255, 255, 255, .8);
    font-size: 10px;
    transition: .25s ease;
}

.akpet-header.is-scrolled .akpet-dropdown-toggle {
    color: var(--akpet-title);
}

.akpet-dropdown-toggle:hover,
.akpet-dropdown-toggle.show {
    background: rgba(255, 255, 255, .12);
    color: var(--akpet-white);
}

.akpet-header.is-scrolled .akpet-dropdown-toggle:hover,
.akpet-header.is-scrolled .akpet-dropdown-toggle.show {
    background: rgba(60, 42, 150, .09);
    color: var(--akpet-primary);
}

.akpet-dropdown-toggle i {
    transition: transform .25s ease;
}

.akpet-dropdown-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.akpet-dropdown-menu {
    top: calc(100% + 13px) !important;
    right: auto !important;
    left: 0 !important;
    min-width: 255px;
    padding: 10px;
    margin: 0 !important;
    border: 1px solid var(--akpet-border);
    border-radius: 19px;
    background: rgba(255, 255, 255, .99);
    box-shadow: var(--akpet-shadow-soft);
    transform: none !important;
}

.akpet-dropdown-menu::before {
    content: "";
    position: absolute;
    top: -14px;
    right: 0;
    left: 0;
    height: 14px;
}

.akpet-dropdown-menu .dropdown-item {
    min-height: 43px;
    padding: 9px 11px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: normal;
    color: var(--akpet-title);
    font-size: 13px;
    font-weight: 600;
}

.akpet-dropdown-menu .dropdown-item:hover,
.akpet-dropdown-menu .dropdown-item:focus {
    background: var(--akpet-light);
    color: var(--akpet-primary);
}

.akpet-dropdown-icon {
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(60, 42, 150, .08);
    color: var(--akpet-primary);
}

.akpet-products-menu {
    width: 410px;
    max-height: min(620px, 72vh);
    overflow-x: hidden;
    overflow-y: auto;
    padding: 12px;
    scrollbar-width: thin;
    scrollbar-color: rgba(60, 42, 150, .35) transparent;
}

.akpet-products-menu::-webkit-scrollbar {
    width: 5px;
}

.akpet-products-menu::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(60, 42, 150, .35);
}

.akpet-dropdown-header {
    padding: 5px 5px 12px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--akpet-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.akpet-dropdown-header small,
.akpet-dropdown-header strong {
    display: block;
}

.akpet-dropdown-header small {
    color: var(--akpet-text);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.akpet-dropdown-header strong {
    color: var(--akpet-title);
    font-size: 13px;
    font-weight: 700;
}

.akpet-dropdown-header > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--akpet-red);
    font-size: 11px;
    font-weight: 700;
}

.akpet-product-menu-item {
    padding: 9px;
    margin-bottom: 7px;
    border: 1px solid var(--akpet-border);
    border-radius: 5px;
    background: var(--akpet-white);
    transition:
        border-color .25s ease,
        box-shadow .25s ease;
}

.akpet-product-menu-item:hover {
    border-color: rgba(60, 42, 150, .24);
    box-shadow: 0 8px 25px rgba(29, 22, 82, .06);
}

.akpet-product-menu-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--akpet-title);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}

.akpet-product-menu-link:hover {
    color: var(--akpet-primary);
}

.akpet-product-menu-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 61, 39, .09);
    color: var(--akpet-red);
}

.akpet-product-menu-name {
    flex: 1;
}

.akpet-product-menu-link > i:last-child {
    color: var(--akpet-red);
    font-size: 12px;
}

.akpet-product-submenu {
    padding: 6px 0 0 44px;
    margin: 0;
    list-style: none;
}

.akpet-product-submenu:empty {
    display: none;
}

.akpet-product-submenu li {
    position: relative;
}

.akpet-product-submenu li::before {
    content: "";
    position: absolute;
    top: 13px;
    left: -13px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(60, 42, 150, .35);
}

.akpet-product-submenu a {
    padding: 4px 0;
    display: block;
    color: var(--akpet-text);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.45;
}

.akpet-product-submenu a:hover {
    color: var(--akpet-primary);
    transform: translateX(3px);
}

.akpet-product-menu-bottom {
    padding: 14px;
    margin-top: 10px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    background:
        radial-gradient(circle at 90% 10%, rgba(239, 61, 39, .3), transparent 35%),
        linear-gradient(135deg, var(--akpet-primary), var(--akpet-dark));
    color: var(--akpet-white);
}

.akpet-product-menu-bottom small,
.akpet-product-menu-bottom strong {
    display: block;
}

.akpet-product-menu-bottom small {
    color: rgba(255, 255, 255, .6);
    font-size: 9px;
}

.akpet-product-menu-bottom strong {
    font-size: 12px;
    font-weight: 700;
}

.akpet-product-menu-bottom > a {
    min-width: max-content;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--akpet-white);
    font-size: 11px;
    font-weight: 700;
}

.akpet-services-menu {
    width: 310px;
    max-height: 420px;
    overflow-y: auto;
}

.akpet-header-actions {
    display: flex;
    align-items: center;
    gap: 13px;
}

.akpet-header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--akpet-white);
}

.akpet-header.is-scrolled .akpet-header-phone {
    color: var(--akpet-title);
}

.akpet-header-phone-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .12);
    color: var(--akpet-white);
}

.akpet-header.is-scrolled .akpet-header-phone-icon {
    background: rgba(60, 42, 150, .09);
    color: var(--akpet-primary);
}

.akpet-header-phone-content small,
.akpet-header-phone-content strong {
    display: block;
    line-height: 1.25;
}

.akpet-header-phone-content small {
    color: rgba(255, 255, 255, .56);
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
}

.akpet-header.is-scrolled .akpet-header-phone-content small {
    color: var(--akpet-text);
}

.akpet-header-phone-content strong {
    font-size: 12px;
    font-weight: 700;
}

.akpet-navbar-toggler {
    width: 45px;
    height: 45px;
    padding: 0;
    border: 1px solid var(--akpet-border);
    border-radius: 14px;
    background: var(--akpet-white);
    box-shadow: var(--akpet-shadow-soft);
}

.akpet-navbar-toggler:focus {
    box-shadow: var(--akpet-shadow-soft);
}

.akpet-navbar-toggler span {
    width: 20px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    display: block;
    background: var(--akpet-primary);
}

.akpet-button {
    min-height: 49px;
    padding: 0 21px;
    border: 1px solid transparent;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

.akpet-button i {
    transition: transform .25s ease;
}

.akpet-button:hover i {
    transform: translateX(3px);
}

.akpet-button-small {
    min-height: 41px;
    padding: 0 16px;
    font-size: 12px;
}

.akpet-button-primary {
    background: linear-gradient(135deg, var(--akpet-red), var(--akpet-red-light));
    color: var(--akpet-white);
    box-shadow: 0 14px 32px rgba(239, 61, 39, .25);
}

.akpet-button-primary:hover {
    background: linear-gradient(135deg, #df2f1c, var(--akpet-red));
    color: var(--akpet-white);
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(239, 61, 39, .32);
}

.akpet-button-dark {
    background: var(--akpet-dark);
    color: var(--akpet-white);
}

.akpet-button-dark:hover {
    background: var(--akpet-primary);
    color: var(--akpet-white);
    transform: translateY(-2px);
}

.akpet-button-outline {
    border-color: var(--akpet-border);
    background: var(--akpet-white);
    color: var(--akpet-primary);
}

.akpet-button-outline:hover {
    border-color: var(--akpet-primary);
    background: var(--akpet-primary);
    color: var(--akpet-white);
}

.akpet-button-transparent {
    border-color: rgba(255, 255, 255, .24);
    background: rgba(255, 255, 255, .08);
    color: var(--akpet-white);
    backdrop-filter: blur(12px);
}

.akpet-button-transparent:hover {
    border-color: var(--akpet-white);
    background: var(--akpet-white);
    color: var(--akpet-primary);
}

.akpet-hero {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 34%, rgba(239, 61, 39, .24), transparent 31%),
        radial-gradient(circle at 20% 78%, rgba(98, 120, 202, .24), transparent 33%),
        linear-gradient(135deg, var(--akpet-primary-dark), var(--akpet-dark));
}

.akpet-hero-swiper,
.akpet-hero-slide {
    min-height: 760px;
}

.akpet-hero-slide {
    position: relative;
    overflow: hidden;
}

.akpet-hero-background,
.akpet-hero-overlay,
.akpet-hero-lines {
    position: absolute;
    inset: 0;
}

.akpet-hero-background {
    z-index: 0;
    background-position: center;
    background-size: cover;
    transform: scale(1.04);
    transition: transform 7s ease;
}

.swiper-slide-active .akpet-hero-background {
    transform: scale(1);
}

.akpet-hero-overlay {
    z-index: 1;
    background:
        radial-gradient(circle at 78% 40%, rgba(239, 61, 39, .23), transparent 29%),
        radial-gradient(circle at 22% 75%, rgba(98, 120, 202, .28), transparent 32%),
        linear-gradient(
            90deg,
            rgba(17, 16, 32, .96) 0%,
            rgba(36, 22, 96, .82) 50%,
            rgba(17, 16, 32, .47) 100%
        );
}

.akpet-hero-lines {
    z-index: 2;
    pointer-events: none;
    opacity: .2;
    background-image:
        linear-gradient(rgba(255, 255, 255, .1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .1) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 90%);
    animation: akpetMoveLines 22s linear infinite;
}

.akpet-hero-glow {
    position: absolute;
    z-index: 3;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(5px);
}

.akpet-hero-glow-one {
    top: 120px;
    right: -150px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow:
        0 0 0 55px rgba(255, 255, 255, .025),
        0 0 0 110px rgba(255, 255, 255, .015);
}

.akpet-hero-glow-two {
    bottom: -150px;
    left: 20%;
    width: 330px;
    height: 330px;
    background: rgba(98, 120, 202, .07);
}

@keyframes akpetMoveLines {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 70px 70px;
    }
}

.akpet-hero-row {
    min-height: 760px;
    padding-top: 105px;
    padding-bottom: 75px;
}

.akpet-hero-content {
    position: relative;
    z-index: 4;
    max-width: 850px;
}

.akpet-hero-eyebrow {
    margin-bottom: 17px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .76);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.akpet-hero-eyebrow > span {
    width: 42px;
    height: 2px;
    border-radius: 999px;
    background: var(--akpet-red);
}

.akpet-hero-eyebrow strong {
    font-weight: 700;
}

.akpet-hero-eyebrow i {
    color: var(--akpet-red-light);
    font-size: 15px;
}

.akpet-hero h1 {
    max-width: 800px;
    margin: 0 0 22px;
    color: var(--akpet-white);
    font-size: clamp(39px, 5vw, 63px);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -.045em;
}

.akpet-hero-content > p {
    max-width: 650px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, .73);
    font-size: 17px;
    line-height: 1.75;
}

.akpet-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}

.akpet-hero-features {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.akpet-hero-features div {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, .68);
    font-size: 11px;
    font-weight: 600;
}

.akpet-hero-features i {
    color: var(--akpet-red-light);
}

.akpet-hero-navigation {
    position: absolute;
    right: 34px;
    bottom: 35px;
    z-index: 7;
    display: flex;
    gap: 8px;
}

.akpet-hero-navigation button,
.akpet-slider-controls button,
.akpet-brand-controls button {
    width: 45px;
    height: 45px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--akpet-white);
    color: var(--akpet-primary);
    font-size: 14px;
    transition: .25s ease;
}

.akpet-hero-navigation button:hover,
.akpet-slider-controls button:hover,
.akpet-brand-controls button:hover {
    background: var(--akpet-red);
    color: var(--akpet-white);
    transform: translateY(-2px);
}

.akpet-hero-pagination {
    right: auto !important;
    bottom: 48px !important;
    left: 34px !important;
    z-index: 7;
    width: auto !important;
}

.akpet-hero-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--akpet-white);
    opacity: .35;
    transition: .25s ease;
}

.akpet-hero-pagination .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 999px;
    background: var(--akpet-red);
    opacity: 1;
}

.akpet-hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    z-index: 7;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .5);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.akpet-hero-scroll i {
    animation: akpetScrollArrow 1.5s ease-in-out infinite;
}

@keyframes akpetScrollArrow {
    0%,
    100% {
        transform: translateY(-2px);
    }

    50% {
        transform: translateY(4px);
    }
}

.akpet-trust-strip {
    position: relative;
    z-index: 10;
    margin-top: -38px;
}

.akpet-trust-inner {
    overflow: hidden;
    border: 1px solid var(--akpet-border);
    border-radius: 23px;
    background: var(--akpet-white);
    box-shadow: var(--akpet-shadow);
}

.akpet-trust-item {
    min-height: 96px;
    padding: 19px;
    border-right: 1px solid var(--akpet-border);
    display: flex;
    align-items: center;
    gap: 13px;
}

.akpet-trust-inner .col-xl-3:last-child .akpet-trust-item {
    border-right: 0;
}

.akpet-trust-icon {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(60, 42, 150, .08);
    color: var(--akpet-primary);
    font-size: 19px;
}

.akpet-trust-item strong,
.akpet-trust-item small {
    display: block;
}

.akpet-trust-item strong {
    color: var(--akpet-title);
    font-size: 12px;
    font-weight: 700;
}

.akpet-trust-item small {
    margin-top: 2px;
    color: var(--akpet-text);
    font-size: 10px;
}

.akpet-section {
    position: relative;
    padding: 100px 0;
    opacity: 1;
    visibility: visible;
}

.akpet-section-title {
    max-width: 790px;
}

.akpet-section-title h3{
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.07em;
    color: var(--akpet-title);
    margin: 0;
}

.akpet-section-label {
    min-height: 33px;
    padding: 0 13px;
    margin-bottom: 15px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: rgba(239, 61, 39, .09);
    color: var(--akpet-red);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.akpet-section-title h2 {
    margin: 0;
    color: var(--akpet-title);
    font-size: clamp(29px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.07em;
}

.akpet-section-title-light .akpet-section-label {
    background: rgba(255, 255, 255, .11);
    color: var(--akpet-white);
}

.akpet-section-title-light h2 {
    color: var(--akpet-white);
}

.akpet-section-intro {
    margin: 0;
    color: var(--akpet-text);
    font-size: 15px;
    line-height: 1.8;
}

.akpet-product-focus {
    padding-top: 125px;
    background:
        radial-gradient(circle at 8% 25%, rgba(98, 120, 202, .1), transparent 28%),
        var(--akpet-light);
}

.akpet-compressor-showcase {
    position: relative;
    min-height: 510px;
    height: 100%;
    padding: 34px;
    border-radius: 31px;
    display: block;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 25%, rgba(239, 61, 39, .32), transparent 31%),
        linear-gradient(135deg, var(--akpet-primary), var(--akpet-dark));
    color: var(--akpet-white);
    box-shadow: var(--akpet-shadow);
}

.akpet-compressor-showcase:hover {
    transform: translateY(-5px);
}

.akpet-compressor-line {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
}

.akpet-compressor-line-one {
    right: -180px;
    bottom: -230px;
    width: 500px;
    height: 500px;
}

.akpet-compressor-line-two {
    right: -115px;
    bottom: -165px;
    width: 370px;
    height: 370px;
}

.akpet-compressor-line-three {
    right: -45px;
    bottom: -95px;
    width: 230px;
    height: 230px;
}

.akpet-compressor-top,
.akpet-compressor-content,
.akpet-compressor-visual,
.akpet-compressor-arrow {
    position: relative;
    z-index: 2;
}

.akpet-compressor-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.akpet-compressor-number {
    width: 54px;
    height: 54px;
    border-radius: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--akpet-white);
    color: var(--akpet-primary);
    font-size: 13px;
    font-weight: 700;
}

.akpet-compressor-badge {
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .76);
    font-size: 10px;
    font-weight: 700;
}

.akpet-compressor-badge i {
    color: var(--akpet-red-light);
}

.akpet-compressor-content {
    max-width: 535px;
    margin-top: 68px;
}

.akpet-compressor-content > span {
    color: var(--akpet-red-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.akpet-compressor-content h3 {
    margin: 10px 0 17px;
    color: var(--akpet-white);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -.045em;
}

.akpet-compressor-content p {
    max-width: 480px;
    margin: 0;
    color: rgba(255, 255, 255, .65);
    font-size: 13px;
}

.akpet-compressor-tags {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.akpet-compressor-tags span {
    min-height: 31px;
    padding: 0 11px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, .09);
    color: var(--akpet-white);
    font-size: 9px;
    font-weight: 700;
}

.akpet-compressor-visual {
    position: absolute;
    right: -65px;
    bottom: -75px;
    width: 290px;
    height: 290px;
}

.akpet-compressor-circle {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
}

.akpet-compressor-circle-one {
    inset: 0;
}

.akpet-compressor-circle-two {
    inset: 40px;
}

.akpet-compressor-circle-three {
    inset: 80px;
    background: rgba(239, 61, 39, .12);
}

.akpet-compressor-fan {
    position: absolute;
    inset: 108px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--akpet-red);
    color: var(--akpet-white);
    font-size: 22px;
    animation: akpetRotate 13s linear infinite;
}

@keyframes akpetRotate {
    to {
        transform: rotate(360deg);
    }
}

.akpet-compressor-arrow {
    position: absolute;
    top: 27px;
    right: 27px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--akpet-red);
    color: var(--akpet-white);
    font-size: 18px;
}

.akpet-compressor-showcase:hover .akpet-compressor-arrow {
    background: var(--akpet-white);
    color: var(--akpet-primary);
    transform: rotate(45deg);
}

.akpet-product-focus-card {
    min-height: 154px;
    height: 100%;
    padding: 21px;
    border: 1px solid var(--akpet-border);
    border-radius: 23px;
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--akpet-white);
    box-shadow: 0 12px 35px rgba(29, 22, 82, .04);
}

.akpet-product-focus-card:hover {
    border-color: rgba(60, 42, 150, .25);
    box-shadow: var(--akpet-shadow-soft);
    transform: translateY(-4px);
}

.akpet-product-focus-icon {
    width: 55px;
    height: 55px;
    flex: 0 0 55px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            rgba(60, 42, 150, .1),
            rgba(239, 61, 39, .09)
        );
    color: var(--akpet-primary);
    font-size: 23px;
}

.akpet-product-focus-content {
    flex: 1;
}

.akpet-product-focus-card small {
    color: var(--akpet-red);
    font-size: 9px;
    font-weight: 700;
}

.akpet-product-focus-card h3 {
    margin: 3px 0 6px;
    color: var(--akpet-title);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.akpet-product-focus-card p {
    margin: 0;
    color: var(--akpet-text);
    font-size: 11px;
    line-height: 1.55;
}

.akpet-product-focus-card > i {
    color: var(--akpet-red);
    font-size: 14px;
}

.akpet-product-marquee {
    position: relative;
    overflow: hidden;
    padding: 18px 0;
    background: var(--akpet-red);
    color: var(--akpet-white);
}

.akpet-marquee-track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 25px;
    animation: akpetMarquee 28s linear infinite;
}

.akpet-marquee-track span {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .03em;
    white-space: nowrap;
}

.akpet-marquee-track i {
    opacity: .6;
}

@keyframes akpetMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.akpet-category-section {
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 18%, rgba(239, 61, 39, .24), transparent 30%),
        linear-gradient(135deg, var(--akpet-primary), var(--akpet-dark));
}

.akpet-category-lines {
    position: absolute;
    inset: 0;
    opacity: .16;
    background-image:
        linear-gradient(rgba(255, 255, 255, .14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .14) 1px, transparent 1px);
    background-size: 58px 58px;
}

.akpet-category-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 50%;
}

.akpet-category-orbit-one {
    top: -190px;
    right: -180px;
    width: 480px;
    height: 480px;
}

.akpet-category-orbit-two {
    bottom: -240px;
    left: -210px;
    width: 520px;
    height: 520px;
}

.akpet-slider-controls {
    display: inline-flex;
    gap: 8px;
}

.akpet-category-card {
    position: relative;
    height: 385px;
    border-radius: 27px;
    display: block;
    overflow: hidden;
    background: var(--akpet-dark-soft);
    box-shadow: 0 22px 55px rgba(0, 0, 0, .16);
}

.akpet-category-image,
.akpet-category-overlay,
.akpet-category-fallback {
    position: absolute;
    inset: 0;
}

.akpet-category-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.akpet-category-fallback {
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at center, rgba(239, 61, 39, .2), transparent 40%),
        var(--akpet-dark-soft);
    color: rgba(255, 255, 255, .16);
    font-size: 95px;
}

.akpet-category-overlay {
    z-index: 3;
    background:
        linear-gradient(
            180deg,
            rgba(17, 16, 32, .04) 20%,
            rgba(17, 16, 32, .94) 100%
        ),
        radial-gradient(
            circle at 90% 10%,
            rgba(239, 61, 39, .31),
            transparent 30%
        );
}

.akpet-category-content {
    position: absolute;
    right: 24px;
    bottom: 23px;
    left: 24px;
    z-index: 4;
}

.akpet-category-content small {
    color: rgba(255, 255, 255, .53);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.akpet-category-content h3 {
    margin: 7px 0 17px;
    color: var(--akpet-white);
    font-size: 21px;
    font-weight: 700;
    line-height: 1.2;
}

.akpet-category-content > span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--akpet-white);
    font-size: 11px;
    font-weight: 700;
}

.akpet-category-corner {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 4;
    width: 43px;
    height: 43px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .12);
    color: var(--akpet-white);
    backdrop-filter: blur(10px);
}

.akpet-category-card:hover .akpet-category-image img {
    transform: scale(1.07);
}

.akpet-category-card:hover .akpet-category-corner {
    background: var(--akpet-red);
    transform: rotate(45deg);
}

.akpet-about-section {
    background:
        radial-gradient(circle at 90% 15%, rgba(98, 120, 202, .08), transparent 28%),
        var(--akpet-white);
}

.akpet-technical-board {
    padding: 25px;
    border-radius: 30px;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 15%, rgba(239, 61, 39, .26), transparent 32%),
        var(--akpet-dark);
    color: var(--akpet-white);
    box-shadow: var(--akpet-shadow);
}

.akpet-board-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
}

.akpet-board-top small,
.akpet-board-top strong {
    display: block;
}

.akpet-board-top small {
    color: rgba(255, 255, 255, .48);
    font-size: 9px;
}

.akpet-board-top strong {
    margin-top: 2px;
    font-size: 17px;
    font-weight: 700;
}

.akpet-board-status {
    min-height: 29px;
    padding: 0 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .69);
    font-size: 9px;
    font-weight: 700;
}

.akpet-board-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #42dc87;
    box-shadow: 0 0 0 5px rgba(66, 220, 135, .08);
}

.akpet-board-middle {
    padding: 36px 0;
    display: flex;
    align-items: center;
    gap: 35px;
}

.akpet-board-radar {
    position: relative;
    width: 240px;
    height: 240px;
    flex: 0 0 240px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 50%;
    overflow: hidden;
    background:
        linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
    background-size: 30px 30px;
}

.akpet-radar-ring {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
}

.akpet-radar-ring-one {
    inset: 26px;
}

.akpet-radar-ring-two {
    inset: 57px;
}

.akpet-radar-ring-three {
    inset: 89px;
}

.akpet-radar-scan {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48%;
    height: 2px;
    background: linear-gradient(90deg, var(--akpet-red), transparent);
    transform-origin: left center;
    animation: akpetRadarScan 4s linear infinite;
}

@keyframes akpetRadarScan {
    to {
        transform: rotate(360deg);
    }
}

.akpet-radar-center {
    position: absolute;
    inset: 91px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--akpet-red);
    color: var(--akpet-white);
    font-size: 22px;
    box-shadow: 0 0 0 12px rgba(239, 61, 39, .09);
}

.akpet-board-data {
    flex: 1;
}

.akpet-board-data-item {
    margin-bottom: 20px;
}

.akpet-board-data-item:last-child {
    margin-bottom: 0;
}

.akpet-board-data-item small,
.akpet-board-data-item strong {
    display: block;
}

.akpet-board-data-item small {
    color: rgba(255, 255, 255, .43);
    font-size: 8px;
    text-transform: uppercase;
}

.akpet-board-data-item strong {
    margin: 2px 0 7px;
    font-size: 12px;
    font-weight: 700;
}

.akpet-data-progress {
    height: 4px;
    border-radius: 999px;
    display: block;
    overflow: hidden;
    background: rgba(255, 255, 255, .1);
}

.akpet-data-progress i {
    height: 100%;
    border-radius: inherit;
    display: block;
    background: linear-gradient(90deg, var(--akpet-red), var(--akpet-red-light));
}

.akpet-board-bottom {
    display: flex;
    gap: 8px;
}

.akpet-board-bottom div {
    min-height: 69px;
    flex: 1;
    padding: 11px;
    border-radius: 15px;
    background: rgba(255, 255, 255, .07);
}

.akpet-board-bottom span,
.akpet-board-bottom small {
    display: block;
}

.akpet-board-bottom span {
    color: var(--akpet-red-light);
    font-size: 9px;
    font-weight: 700;
}

.akpet-board-bottom small {
    margin-top: 7px;
    color: rgba(255, 255, 255, .68);
    font-size: 9px;
    font-weight: 600;
}

.akpet-about-lead {
    margin: 24px 0 16px;
    color: var(--akpet-title);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.75;
}

.akpet-about-text {
    margin: 0;
    color: var(--akpet-text);
    font-size: 14px;
}

.akpet-about-points {
    margin: 25px 0;
}

.akpet-about-points > div {
    min-height: 50px;
    padding: 10px 13px;
    margin-bottom: 8px;
    border: 1px solid var(--akpet-border);
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 11px;
    background: var(--akpet-white);
}

.akpet-about-points > div:last-child {
    margin-bottom: 0;
}

.akpet-about-points span {
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 61, 39, .09);
    color: var(--akpet-red);
}

.akpet-about-points strong {
    font-size: 12px;
    font-weight: 700;
}

.akpet-about-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 11px;
}

.akpet-about-phone {
    min-height: 49px;
    padding: 0 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: var(--akpet-light);
    color: var(--akpet-primary);
    font-size: 12px;
    font-weight: 700;
}

.akpet-about-phone::before {
    content: "\F5C1";
    margin-right: 8px;
    font-family: bootstrap-icons !important;
}

.akpet-about-phone:hover {
    background: var(--akpet-primary);
    color: var(--akpet-white);
}

.akpet-process-section {
    background: var(--akpet-light);
}

.akpet-process-card {
    position: relative;
    min-height: 270px;
    height: 100%;
    padding: 24px;
    border: 1px solid var(--akpet-border);
    border-radius: 23px;
    overflow: hidden;
    background: var(--akpet-white);
    transition: .25s ease;
}

.akpet-process-card::after {
    content: "";
    position: absolute;
    right: -35px;
    bottom: -55px;
    width: 135px;
    height: 135px;
    border: 1px solid rgba(60, 42, 150, .09);
    border-radius: 50%;
    box-shadow:
        0 0 0 22px rgba(60, 42, 150, .035),
        0 0 0 44px rgba(60, 42, 150, .02);
}

.akpet-process-card:hover {
    border-color: rgba(60, 42, 150, .24);
    box-shadow: var(--akpet-shadow-soft);
    transform: translateY(-5px);
}

.akpet-process-number {
    position: absolute;
    top: 20px;
    right: 20px;
    color: rgba(23, 22, 37, .15);
    font-size: 23px;
    font-weight: 700;
}

.akpet-process-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 42px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            rgba(60, 42, 150, .1),
            rgba(239, 61, 39, .09)
        );
    color: var(--akpet-primary);
    font-size: 22px;
}

.akpet-process-card h3 {
    margin: 0 0 9px;
    color: var(--akpet-title);
    font-size: 17px;
    font-weight: 700;
}

.akpet-process-card p {
    margin: 0;
    color: var(--akpet-text);
    font-size: 12px;
    line-height: 1.65;
}

.akpet-process-cta {
    padding: 24px 28px;
    margin-top: 35px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    background:
        radial-gradient(circle at 88% 20%, rgba(239, 61, 39, .25), transparent 27%),
        var(--akpet-dark);
    color: var(--akpet-white);
}

.akpet-process-cta span,
.akpet-process-cta strong {
    display: block;
}

.akpet-process-cta span {
    color: rgba(255, 255, 255, .5);
    font-size: 12px;
    letter-spacing: -0.3px;
}

.akpet-process-cta strong {
    margin-top: 4px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.akpet-brand-section {
    background: var(--akpet-white);
}

.akpet-text-link {
    margin-top: 21px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--akpet-red);
    font-size: 12px;
    font-weight: 700;
}

.akpet-text-link:hover {
    color: var(--akpet-primary);
    gap: 12px;
}


.akpet-brand-top {
    padding: 0 2px 16px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--akpet-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.akpet-brand-top > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--akpet-primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.akpet-brand-top > span i {
    color: var(--akpet-red);
}

.akpet-brand-controls {
    display: flex;
    gap: 7px;
}

.akpet-brand-controls button {
    width: 37px;
    height: 37px;
    font-size: 12px;
}

.akpet-brand-card {
    min-height: 130px;
    padding: 20px;
    border: 1px solid transparent;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
    flex-direction: column;
    gap: 12px;
    background: var(--akpet-white);
    transition: .25s ease;
}

.akpet-brand-card:hover {
    border-color: rgba(60, 42, 150, .18);
    transform: translateY(-3px);
}

.akpet-brand-card img {
    max-width: 175px;
    max-height: 95px;
    object-fit: contain;
    transition: .25s ease;
}

.akpet-brand-card:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.akpet-brand-card > span {
    color: var(--akpet-text);
    font-size: 9px;
    font-weight: 600;
    text-align: center;
}

.akpet-blog-section {
    background:
        radial-gradient(circle at 10% 15%, rgba(98, 120, 202, .08), transparent 27%),
        var(--akpet-light);
}

.akpet-blog-card {
    height: 100%;
    border: 1px solid var(--akpet-border);
    border-radius: 25px;
    overflow: hidden;
    background: var(--akpet-white);
    box-shadow: 0 10px 30px rgba(29, 22, 82, .04);
    transition: .25s ease;
}

.akpet-blog-card:hover {
    box-shadow: var(--akpet-shadow-soft);
    transform: translateY(-5px);
}

.akpet-blog-image {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--akpet-dark-soft);
}

.akpet-blog-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.akpet-blog-card:hover .akpet-blog-image img {
    transform: scale(1.06);
}

.akpet-blog-fallback {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .16);
    font-size: 65px;
}

.akpet-blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 3;
    min-height: 29px;
    padding: 0 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: rgba(17, 16, 32, .77);
    color: var(--akpet-white);
    font-size: 9px;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.akpet-blog-content {
    padding: 22px;
}

.akpet-blog-meta {
    margin-bottom: 11px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 11px;
    color: var(--akpet-text);
    font-size: 9px;
    font-weight: 600;
}

.akpet-blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.akpet-blog-card h3 {
    margin: 0 0 11px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
}

.akpet-blog-card h3 a {
    color: var(--akpet-title);
}

.akpet-blog-card h3 a:hover {
    color: var(--akpet-primary);
}

.akpet-blog-card p {
    margin: 0 0 17px;
    color: var(--akpet-text);
    font-size: 12px;
    line-height: 1.65;
}

.akpet-blog-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--akpet-red);
    font-size: 11px;
    font-weight: 700;
}

.akpet-blog-link:hover {
    color: var(--akpet-primary);
    gap: 11px;
}

.akpet-final-section {
    padding: 90px 0;
    background: var(--akpet-white);
}

.akpet-final-box {
    position: relative;
    padding: 42px;
    border-radius: 31px;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 20%, rgba(239, 61, 39, .28), transparent 30%),
        linear-gradient(135deg, var(--akpet-primary), var(--akpet-dark));
    color: var(--akpet-white);
    box-shadow: var(--akpet-shadow);
}

.akpet-final-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
}

.akpet-final-orbit-one {
    right: -115px;
    bottom: -160px;
    width: 390px;
    height: 390px;
}

.akpet-final-orbit-two {
    right: -35px;
    bottom: -80px;
    width: 230px;
    height: 230px;
}

.akpet-final-label {
    color: var(--akpet-red-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.akpet-final-box h2 {
    max-width: 720px;
    margin: 8px 0 13px;
    color: var(--akpet-white);
    font-size: clamp(30px, 4vw, 49px);
    font-weight: 700;
    line-height: 1.07;
    letter-spacing: -.07em;
}

.akpet-final-box p {
    max-width: 670px;
    margin: 0;
    color: rgba(255, 255, 255, .64);
    font-size: 13px;
}

.akpet-final-actions {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
}

.akpet-final-phone {
    min-height: 49px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--akpet-white);
    font-size: 12px;
    font-weight: 700;
}

.akpet-final-phone:hover {
    border-color: var(--akpet-white);
    background: var(--akpet-white);
    color: var(--akpet-primary);
}

[data-ak-animate] {
    opacity: 1;
    visibility: visible;
    transform: none;
}

[data-ak-animate].akpet-in-view {
    animation: akpetReveal .65s ease both;
}

@keyframes akpetReveal {
    from {
        opacity: .45;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.akpet-footer {
    position: relative;
    padding-top: 70px;
    overflow: hidden;
    background: var(--akpet-dark);
    color: rgba(255, 255, 255, .62);
}

.akpet-footer-orbit {
    position: absolute;
    border-radius: 50%;
}

.akpet-footer-orbit-one {
    top: -230px;
    right: -180px;
    width: 470px;
    height: 470px;
    background: rgba(239, 61, 39, .15);
}

.akpet-footer-orbit-two {
    bottom: -270px;
    left: -220px;
    width: 540px;
    height: 540px;
    background: rgba(60, 42, 150, .18);
}

.akpet-footer-cta {
    padding-bottom: 46px;
    margin-bottom: 52px;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.akpet-footer-label {
    color: var(--akpet-red-light);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.akpet-footer-cta h2 {
    max-width: 750px;
    margin: 8px 0 0;
    color: var(--akpet-white);
    font-size: clamp(28px, 4vw, 45px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.07em;
}

.akpet-footer-main {
    position: relative;
    z-index: 2;
}

.akpet-footer-logo {
    display: inline-block;
    margin-bottom: 21px;
}

.akpet-footer-logo img {
    width: auto;
    height: 61px;
    max-width: 210px;
    object-fit: contain;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.akpet-footer-description {
    max-width: 410px;
    margin: 0 0 21px;
    color: rgba(255, 255, 255, .58);
    font-size: 12px;
    line-height: 1.75;
}

.akpet-footer-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.akpet-footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .07);
    color: var(--akpet-white);
    font-size: 12px;
}

.akpet-footer-social a:hover {
    background: var(--akpet-red);
    color: var(--akpet-white);
    transform: translateY(-2px);
}

.akpet-footer-title {
    margin: 0 0 17px;
    color: var(--akpet-white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.akpet-footer-links {
    padding: 0;
    margin: 0;
    list-style: none;
}

.akpet-footer-links li {
    margin-bottom: 8px;
}

.akpet-footer-links li:last-child {
    margin-bottom: 0;
}

.akpet-footer-links a {
    color: rgba(255, 255, 255, .57);
    font-size: 12px;
    font-weight: 500;
}

.akpet-footer-links a:hover {
    color: var(--akpet-white);
    transform: translateX(3px);
}

.akpet-footer-contact {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 22px;
    background: rgba(255, 255, 255, .045);
}

.akpet-footer-contact-item {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.akpet-footer-contact-icon {
    width: 39px;
    height: 39px;
    flex: 0 0 39px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 61, 39, .13);
    color: var(--akpet-red-light);
}

.akpet-footer-contact-item small,
.akpet-footer-contact-item a {
    display: block;
}

.akpet-footer-contact-item small {
    margin-bottom: 3px;
    color: rgba(255, 255, 255, .39);
    font-size: 9px;
}

.akpet-footer-contact-item a {
    color: rgba(255, 255, 255, .76);
    font-size: 11px;
    font-weight: 600;
}

.akpet-footer-contact-item a:hover {
    color: var(--akpet-white);
}

.akpet-footer-contact-link {
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--akpet-white);
    color: var(--akpet-primary);
    font-size: 10px;
    font-weight: 700;
}

.akpet-footer-contact-link:hover {
    background: var(--akpet-red);
    color: var(--akpet-white);
}

.akpet-footer-bottom {
    position: relative;
    z-index: 2;
    min-height: 78px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.akpet-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, .47);
    font-size: 10px;
}

.akpet-footer-bottom p strong {
    color: rgba(255, 255, 255, .72);
    font-weight: 700;
}

.akpet-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 78px;
    z-index: 1040;
    width: 53px;
    min-width: 53px;
    max-width: 53px;
    height: 53px;
    min-height: 53px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #25d366;
    color: var(--akpet-white);
    box-shadow: 0 15px 35px rgba(37, 211, 102, .3);
}

.akpet-whatsapp i {
    margin: 0;
    font-size: 23px;
    line-height: 1;
}

.akpet-whatsapp:hover {
    width: 53px;
    min-width: 53px;
    max-width: 53px;
    color: var(--akpet-white);
    transform: translateY(-3px);
}

.akpet-scroll-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1040;
    width: 47px;
    height: 47px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--akpet-primary);
    color: var(--akpet-white);
    box-shadow: 0 14px 32px rgba(60, 42, 150, .25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: .25s ease;
}

.akpet-scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.akpet-scroll-top:hover {
    background: var(--akpet-red);
    transform: translateY(-3px);
}

.akpet-cookie {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1080;
    width: min(420px, calc(100vw - 40px));
    padding: 19px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 22px;
    display: none;
    align-items: flex-start;
    gap: 14px;
    background: rgba(17, 16, 32, .97);
    color: var(--akpet-white);
    box-shadow: 0 25px 75px rgba(0, 0, 0, .28);
    backdrop-filter: blur(17px);
}

.akpet-cookie.is-visible {
    display: flex;
}

.akpet-cookie-close {
    position: absolute;
    top: 11px;
    right: 11px;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .65);
    font-size: 10px;
}

.akpet-cookie-icon {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 61, 39, .13);
    color: var(--akpet-red-light);
    font-size: 18px;
}

.akpet-cookie-content {
    padding-right: 18px;
}

.akpet-cookie-content > strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
}

.akpet-cookie-content > p {
    margin: 5px 0 13px;
    color: rgba(255, 255, 255, .58);
    font-size: 10px;
    line-height: 1.6;
}

.akpet-cookie-actions {
    display: flex;
    gap: 8px;
}

.akpet-cookie-actions a,
.akpet-cookie-actions button {
    min-height: 37px;
    padding: 0 13px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
}

.akpet-cookie-actions a {
    border: 1px solid rgba(255, 255, 255, .13);
    color: var(--akpet-white);
}

.akpet-cookie-actions button {
    border: 0;
    background: var(--akpet-red);
    color: var(--akpet-white);
}

@media (min-width: 1200px) {
    .akpet-nav-dropdown {
        position: relative;
    }

    /* Menü ile dropdown arasındaki görünmez hover köprüsü */
    .akpet-nav-dropdown::after {
        content: "";
        position: absolute;
        top: 100%;
        right: -8px;
        left: -8px;
        z-index: 1059;
        height: 18px;
        background: transparent;
    }

    .akpet-nav-dropdown > .akpet-dropdown-menu {
        display: block;
        top: calc(100% + 6px) !important;
        right: auto !important;
        left: 0 !important;
        z-index: 1060 !important;

        margin: 0 !important;

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transform: translateY(7px) !important;

        transition:
            opacity .18s ease,
            visibility .18s ease,
            transform .18s ease;
    }

    .akpet-nav-dropdown:hover > .akpet-dropdown-menu,
    .akpet-nav-dropdown:focus-within > .akpet-dropdown-menu,
    .akpet-nav-dropdown > .akpet-dropdown-menu:hover,
    .akpet-nav-dropdown > .akpet-dropdown-menu.show {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) !important;
    }

    /* Ürün ve hizmet menülerinde bağlantılara geçiş kesilmesin */
    .akpet-products-menu,
    .akpet-services-menu {
        pointer-events: auto;
    }
}

@media (max-width: 1199px) {
    .akpet-header,
    .akpet-header.is-scrolled {
        background: rgba(255, 255, 255, .98);
        box-shadow: 0 12px 40px rgba(17, 16, 32, .09);
        backdrop-filter: blur(16px);
    }

    .akpet-topbar {
        display: none;
    }

    .akpet-navbar {
        min-height: 73px;
    }

    .akpet-brand {
        margin-right: 0;
    }

    .akpet-logo-light,
    .akpet-logo-dark {
        display: none !important;
    }

    .akpet-logo-mobile {
        display: block;
        height: 48px;
    }

    .akpet-navbar .navbar-collapse {
        max-height: calc(100vh - 88px);
        padding: 16px 0 20px;
        overflow-y: auto;
        background: var(--akpet-white);
    }

    .akpet-navigation {
        align-items: stretch;
        gap: 0;
    }

    .akpet-navigation > .nav-item {
        border-bottom: 1px solid var(--akpet-border);
    }

    .akpet-navigation .nav-link {
        flex: 1;
        padding: 13px 5px !important;
        border-radius: 0;
        color: var(--akpet-title);
    }

    .akpet-navigation .nav-link:hover,
    .akpet-navigation .nav-link:focus {
        background: transparent;
        color: var(--akpet-primary);
    }

    .akpet-nav-link-row {
        justify-content: space-between;
    }

    .akpet-dropdown-toggle,
    .akpet-header.is-scrolled .akpet-dropdown-toggle {
        width: 42px;
        height: 42px;
        margin: 0;
        color: var(--akpet-primary);
    }

    .akpet-dropdown-menu,
    .akpet-products-menu,
    .akpet-services-menu {
        position: static !important;
        top: auto !important;
        right: auto !important;
        left: auto !important;
        width: 100%;
        max-height: 390px;
        margin: 0 0 12px !important;
        border-radius: 16px;
        box-shadow: none;
        transform: none !important;
    }

    .akpet-dropdown-menu::before {
        display: none;
    }

    .akpet-header-actions {
        padding-top: 17px;
        align-items: stretch;
        flex-direction: column;
    }

    .akpet-header-phone {
        color: var(--akpet-title);
    }

    .akpet-header-phone-icon {
        background: rgba(60, 42, 150, .09);
        color: var(--akpet-primary);
    }

    .akpet-header-phone-content small {
        color: var(--akpet-text);
    }

    .akpet-hero-row {
        padding-top: 120px;
    }
}

@media (max-width: 991px) {
    .akpet-section {
        padding: 78px 0;
    }

    .akpet-trust-item {
        border-bottom: 1px solid var(--akpet-border);
    }

    .akpet-trust-inner .col-sm-6:nth-child(2n) .akpet-trust-item {
        border-right: 0;
    }

    .akpet-trust-inner .col-sm-6:nth-last-child(-n+2) .akpet-trust-item {
        border-bottom: 0;
    }

    .akpet-compressor-showcase {
        min-height: 470px;
    }

    .akpet-board-middle {
        align-items: stretch;
        flex-direction: column;
    }

    .akpet-board-radar {
        margin: auto;
    }

    .akpet-process-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .akpet-final-actions {
        margin-top: 10px;
    }

    .akpet-footer-bottom {
        padding: 22px 0;
    }
}

@media (max-width: 767px) {
    body.akpet-body {
        font-size: 14px;
    }

    .akpet-logo-mobile {
        height: 42px;
        max-width: 165px;
    }

    .akpet-hero,
    .akpet-hero-swiper,
    .akpet-hero-slide {
        min-height: 710px;
    }

    .akpet-hero-row {
        min-height: 710px;
        padding-top: 105px;
        padding-bottom: 90px;
    }

    .akpet-hero h1 {
        font-size: 36px;
        line-height: 1.07;
    }

    .akpet-hero-content > p {
        font-size: 14px;
    }

    .akpet-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .akpet-hero-actions .akpet-button {
        width: 100%;
    }

    .akpet-hero-features {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .akpet-hero-navigation {
        right: 15px;
        bottom: 22px;
    }

    .akpet-hero-navigation button {
        width: 40px;
        height: 40px;
    }

    .akpet-hero-pagination {
        bottom: 35px !important;
        left: 15px !important;
    }

    .akpet-hero-scroll {
        display: none;
    }

    .akpet-trust-strip {
        margin-top: -22px;
        padding: 0 10px;
    }

    .akpet-trust-inner .col-sm-6 .akpet-trust-item {
        border-right: 0;
        border-bottom: 1px solid var(--akpet-border);
    }

    .akpet-trust-inner .col-sm-6:last-child .akpet-trust-item {
        border-bottom: 0;
    }

    .akpet-product-focus {
        padding-top: 72px;
    }

    .akpet-section-title h2 {
        font-size: 30px;
    }

    .akpet-compressor-showcase {
        min-height: 520px;
        padding: 25px;
    }

    .akpet-compressor-content {
        margin-top: 55px;
    }

    .akpet-compressor-content h3 {
        font-size: 34px;
    }

    .akpet-compressor-visual {
        right: -120px;
        bottom: -120px;
    }

    .akpet-product-focus-card {
        min-height: 145px;
    }

    .akpet-category-card {
        height: 350px;
    }

    .akpet-technical-board {
        padding: 20px;
    }

    .akpet-board-radar {
        width: 210px;
        height: 210px;
        flex-basis: 210px;
    }

    .akpet-radar-center {
        inset: 80px;
    }

    .akpet-about-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .akpet-about-actions .akpet-button,
    .akpet-about-phone {
        width: 100%;
        justify-content: center;
    }

    .akpet-process-cta {
        padding: 22px;
    }

    .akpet-process-cta .akpet-button {
        width: 100%;
    }

    .akpet-final-box {
        padding: 28px 23px;
    }

    .akpet-footer-cta {
        margin-bottom: 42px;
    }

    .akpet-footer-cta .akpet-button {
        width: 100%;
    }

    .akpet-footer-contact {
        margin-top: 5px;
    }

    .akpet-whatsapp {
        right: 14px;
        bottom: 71px;
        width: 49px;
        min-width: 49px;
        max-width: 49px;
        height: 49px;
    }

    .akpet-whatsapp:hover {
        width: 49px;
        min-width: 49px;
        max-width: 49px;
    }

    .akpet-scroll-top {
        right: 14px;
        bottom: 14px;
        width: 44px;
        height: 44px;
    }

    .akpet-cookie {
        right: 14px;
        bottom: 14px;
        left: 14px;
        width: auto;
    }

    .akpet-cookie-icon {
        display: none;
    }

    .akpet-cookie-actions {
        align-items: stretch;
        flex-direction: column;
    }
}

.text-white{
    color: #ffffff !important;
}

/* =========================================================
   TÜM İÇ SAYFALAR İÇİN ORTAK PAGE HEADER
   ========================================================= */

.akpet-page-hero {
    --akpet-page-image: none;

    position: relative;
    min-height: 470px;
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            rgba(17, 16, 32, .95),
            rgba(36, 22, 96, .82)
        ),
        var(--akpet-page-image) center / cover no-repeat,
        var(--akpet-dark);
}

.akpet-page-hero-overlay,
.akpet-page-hero-lines {
    position: absolute;
    inset: 0;
}

.akpet-page-hero-overlay {
    z-index: 1;
    background:
        radial-gradient(
            circle at 82% 30%,
            rgba(239, 61, 39, .28),
            transparent 30%
        ),
        linear-gradient(
            90deg,
            rgba(17, 16, 32, .94) 0%,
            rgba(36, 22, 96, .78) 58%,
            rgba(17, 16, 32, .44) 100%
        );
}

.akpet-page-hero-lines {
    z-index: 2;
    opacity: .18;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, .1) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, .1) 1px,
            transparent 1px
        );
    background-size: 64px 64px;
    mask-image:
        linear-gradient(
            to bottom,
            #000,
            transparent 95%
        );
}

.akpet-page-orbit {
    position: absolute;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    pointer-events: none;
}

.akpet-page-orbit-one {
    top: -210px;
    right: -130px;
    width: 440px;
    height: 440px;
    box-shadow:
        0 0 0 45px rgba(255, 255, 255, .025),
        0 0 0 90px rgba(255, 255, 255, .012);
}

.akpet-page-orbit-two {
    bottom: -230px;
    left: 22%;
    width: 370px;
    height: 370px;
    background: rgba(98, 120, 202, .05);
}

.akpet-page-hero-row {
    position: relative;
    z-index: 4;
    min-height: 470px;
    padding-top: 145px;
    padding-bottom: 65px;
}

.akpet-page-breadcrumb {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    color: rgba(255, 255, 255, .57);
    font-size: 11px;
    font-weight: 600;
}

.akpet-page-breadcrumb a {
    color: rgba(255, 255, 255, .72);
}

.akpet-page-breadcrumb a:hover {
    color: var(--akpet-white);
}

.akpet-page-breadcrumb i {
    color: var(--akpet-red-light);
    font-size: 8px;
}

.akpet-page-label {
    min-height: 32px;
    padding: 0 13px;
    margin-bottom: 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, .1);
    color: var(--akpet-white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.akpet-page-hero h1 {
    margin: 0 0 15px;
    color: var(--akpet-white);
    font-size: clamp(38px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -.045em;
}

.akpet-page-hero-content > p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: 15px;
    line-height: 1.75;
}

.akpet-page-hero-side {
    max-width: 315px;
    padding: 19px;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 21px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, .09);
    color: var(--akpet-white);
    backdrop-filter: blur(15px);
}

.akpet-page-side-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            var(--akpet-red),
            var(--akpet-red-light)
        );
    font-size: 20px;
}

.akpet-page-hero-side small,
.akpet-page-hero-side strong {
    display: block;
}

.akpet-page-hero-side small {
    color: rgba(255, 255, 255, .48);
    font-size: 9px;
}

.akpet-page-hero-side strong {
    margin-top: 4px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
}

/* =========================================================
   KURUMSAL SAYFASI
   ========================================================= */

.akpet-corporate-about {
    background:
        radial-gradient(
            circle at 90% 15%,
            rgba(98, 120, 202, .08),
            transparent 27%
        ),
        var(--akpet-white);
}

.akpet-corporate-visual {
    position: relative;
    min-height: 570px;
    border-radius: 31px;
    overflow: hidden;
    background: var(--akpet-dark);
    box-shadow: var(--akpet-shadow);
}

.akpet-corporate-image,
.akpet-corporate-image-overlay {
    position: absolute;
    inset: 0;
}

.akpet-corporate-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.akpet-corporate-image-overlay {
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(239, 61, 39, .27),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            rgba(17, 16, 32, .05) 35%,
            rgba(17, 16, 32, .88) 100%
        );
}

.akpet-corporate-image-content {
    position: absolute;
    right: 32px;
    bottom: 35px;
    left: 32px;
    z-index: 3;
}

.akpet-corporate-image-label {
    min-height: 29px;
    padding: 0 11px;
    margin-bottom: 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: var(--akpet-red);
    color: var(--akpet-white);
    font-size: 9px;
    font-weight: 700;
}

.akpet-corporate-image-content > strong {
    display: block;
    color: var(--akpet-white);
    font-size: 27px;
    font-weight: 600;
    line-height: 1.22;
    letter-spacing: -.06em;
}

.akpet-corporate-floating-card {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 4;
    max-width: 235px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 11px;
    background: rgba(17, 16, 32, .76);
    color: var(--akpet-white);
    backdrop-filter: blur(14px);
}

.akpet-floating-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 61, 39, .16);
    color: var(--akpet-red-light);
    font-size: 18px;
}

.akpet-corporate-floating-card small,
.akpet-corporate-floating-card strong {
    display: block;
}

.akpet-corporate-floating-card small {
    color: rgba(255, 255, 255, .48);
    font-size: 8px;
}

.akpet-corporate-floating-card strong {
    margin-top: 3px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
}

.akpet-corporate-content {
    margin-top: 24px;
    color: var(--akpet-text);
    font-size: 14px;
    line-height: 1.85;
}

.akpet-corporate-content p {
    margin: 0 0 16px;
}

.akpet-corporate-content p:last-child {
    margin-bottom: 0;
}

.akpet-corporate-content h2,
.akpet-corporate-content h3,
.akpet-corporate-content h4 {
    margin: 26px 0 12px;
    color: var(--akpet-title);
    font-weight: 700;
    line-height: 1.3;
}

.akpet-corporate-content h2 {
    font-size: 25px;
}

.akpet-corporate-content h3 {
    font-size: 20px;
}

.akpet-corporate-content h4 {
    font-size: 17px;
}

.akpet-corporate-content strong {
    color: var(--akpet-title);
    font-weight: 700;
}

.akpet-corporate-content ul,
.akpet-corporate-content ol {
    padding-left: 19px;
    margin: 0 0 17px;
}

.akpet-corporate-content li {
    margin-bottom: 6px;
}

.akpet-corporate-highlights {
    margin-top: 27px;
}

.akpet-corporate-highlight {
    min-height: 64px;
    padding: 12px 14px;
    margin-bottom: 9px;
    border: 1px solid var(--akpet-border);
    border-radius: 17px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--akpet-white);
}

.akpet-corporate-highlight:last-child {
    margin-bottom: 0;
}

.akpet-corporate-highlight > span {
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 61, 39, .1);
    color: var(--akpet-red);
}

.akpet-corporate-highlight strong {
    display: block;
    color: var(--akpet-title);
    font-size: 12px;
    font-weight: 700;
}

.akpet-corporate-highlight p {
    margin: 3px 0 0;
    color: var(--akpet-text);
    font-size: 10px;
}

.akpet-corporate-actions {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Çalışma prensipleri */

.akpet-corporate-principles {
    background: var(--akpet-light);
}

.akpet-principle-card {
    position: relative;
    min-height: 290px;
    height: 100%;
    padding: 26px;
    border: 1px solid var(--akpet-border);
    border-radius: 24px;
    overflow: hidden;
    background: var(--akpet-white);
    transition: .25s ease;
}

.akpet-principle-card::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -85px;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(60, 42, 150, .07);
    border-radius: 50%;
    box-shadow:
        0 0 0 30px rgba(60, 42, 150, .025),
        0 0 0 60px rgba(60, 42, 150, .012);
}

.akpet-principle-card:hover {
    border-color: rgba(60, 42, 150, .22);
    box-shadow: var(--akpet-shadow-soft);
    transform: translateY(-5px);
}

.akpet-principle-top {
    position: relative;
    z-index: 2;
    margin-bottom: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.akpet-principle-icon {
    width: 58px;
    height: 58px;
    border-radius: 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            rgba(60, 42, 150, .11),
            rgba(239, 61, 39, .1)
        );
    color: var(--akpet-primary);
    font-size: 22px;
}

.akpet-principle-number {
    color: rgba(23, 22, 37, .13);
    font-size: 25px;
    font-weight: 700;
}

.akpet-principle-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 10px;
    color: var(--akpet-title);
    font-size: 19px;
    font-weight: 700;
}

.akpet-principle-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: var(--akpet-text);
    font-size: 12px;
    line-height: 1.7;
}

/* Vizyon ve misyon */

.akpet-vision-section {
    overflow: hidden;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(239, 61, 39, .24),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--akpet-primary),
            var(--akpet-dark)
        );
}

.akpet-vision-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
}

.akpet-vision-orbit-one {
    top: -200px;
    right: -150px;
    width: 440px;
    height: 440px;
}

.akpet-vision-orbit-two {
    bottom: -250px;
    left: -190px;
    width: 510px;
    height: 510px;
}

.akpet-vision-intro {
    margin: 24px 0 25px;
    color: rgba(255, 255, 255, .64);
    font-size: 14px;
    line-height: 1.8;
}

.akpet-vision-mini-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.akpet-vision-mini-list div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, .76);
    font-size: 11px;
    font-weight: 600;
}

.akpet-vision-mini-list i {
    color: var(--akpet-red-light);
}

.akpet-corporate-accordion {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.akpet-corporate-accordion .accordion-item {
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255, 255, 255, .08);
    color: var(--akpet-white);
    backdrop-filter: blur(13px);
}

.akpet-corporate-accordion .accordion-button {
    min-height: 94px;
    padding: 18px 20px;
    border: 0;
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 14px;
    background: transparent;
    color: var(--akpet-white);
    box-shadow: none;
}

.akpet-corporate-accordion .accordion-button:not(.collapsed) {
    background: rgba(255, 255, 255, .05);
    color: var(--akpet-white);
    box-shadow: none;
}

.akpet-corporate-accordion .accordion-button::after {
    display: none;
}

.akpet-accordion-icon {
    width: 49px;
    height: 49px;
    flex: 0 0 49px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 61, 39, .16);
    color: var(--akpet-red-light);
    font-size: 20px;
}

.akpet-accordion-title {
    flex: 1;
}

.akpet-accordion-title small,
.akpet-accordion-title strong {
    display: block;
    text-align: left;
}

.akpet-accordion-title small {
    color: rgba(255, 255, 255, .43);
    font-size: 9px;
}

.akpet-accordion-title strong {
    margin-top: 4px;
    font-size: 16px;
    font-weight: 700;
}

.akpet-accordion-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .08);
    color: var(--akpet-white);
}

.akpet-accordion-arrow i {
    transition: transform .25s ease;
}

.akpet-corporate-accordion
.accordion-button:not(.collapsed)
.akpet-accordion-arrow i {
    transform: rotate(180deg);
}

.akpet-corporate-accordion .accordion-body {
    padding: 20px;
    color: rgba(255, 255, 255, .64);
    font-size: 12px;
    line-height: 1.8;
}

/* Ürün alanları */

.akpet-corporate-products {
    background: var(--akpet-white);
}

.akpet-corporate-product-card {
    min-height: 115px;
    padding: 18px;
    border: 1px solid var(--akpet-border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 13px;
    background: var(--akpet-light);
}

.akpet-corporate-product-card:hover {
    border-color: rgba(60, 42, 150, .23);
    background: var(--akpet-white);
    box-shadow: var(--akpet-shadow-soft);
    transform: translateY(-4px);
}

.akpet-corporate-product-card > span {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(60, 42, 150, .09);
    color: var(--akpet-primary);
    font-size: 20px;
}

.akpet-corporate-product-card > div {
    flex: 1;
}

.akpet-corporate-product-card small,
.akpet-corporate-product-card strong {
    display: block;
}

.akpet-corporate-product-card small {
    color: var(--akpet-red);
    font-size: 9px;
    font-weight: 700;
}

.akpet-corporate-product-card strong {
    margin-top: 5px;
    color: var(--akpet-title);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}

.akpet-corporate-product-card > i {
    color: var(--akpet-red);
    font-size: 13px;
}

/* Son CTA */

.akpet-corporate-final {
    padding: 90px;
    background: var(--akpet-white);
}

.akpet-corporate-final-box {
    position: relative;
    padding: 42px;
    border-radius: 30px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(239, 61, 39, .27),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--akpet-primary),
            var(--akpet-dark)
        );
    color: var(--akpet-white);
    box-shadow: var(--akpet-shadow);
}

.akpet-corporate-final-orbit {
    position: absolute;
    right: -130px;
    bottom: -170px;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    box-shadow:
        0 0 0 40px rgba(255, 255, 255, .025),
        0 0 0 80px rgba(255, 255, 255, .012);
}

.akpet-corporate-final-box h2 {
    max-width: 720px;
    margin: 8px 0 13px;
    color: var(--akpet-white);
    font-size: clamp(29px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.07em;
}

.akpet-corporate-final-box p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, .64);
    font-size: 12px;
    line-height: 1.75;
}

@media (max-width: 991px) {
    .akpet-corporate-visual {
        min-height: 500px;
    }

    .akpet-corporate-accordion {
        margin-top: 10px;
    }

    .akpet-corporate-final-box {
        padding: 34px;
    }
}

@media (max-width: 767px) {
    .akpet-page-hero,
    .akpet-page-hero-row {
        min-height: 410px;
    }

    .akpet-page-hero-row {
        padding-top: 115px;
        padding-bottom: 50px;
    }

    .akpet-page-hero h1 {
        font-size: 37px;
    }

    .akpet-page-hero-content > p {
        font-size: 13px;
    }

    .akpet-corporate-visual {
        min-height: 450px;
    }

    .akpet-corporate-image-content {
        right: 22px;
        bottom: 25px;
        left: 22px;
    }

    .akpet-corporate-image-content > strong {
        font-size: 22px;
    }

    .akpet-corporate-floating-card {
        top: 20px;
        right: 20px;
        left: 20px;
        max-width: none;
    }

    .akpet-corporate-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .akpet-corporate-actions .akpet-button {
        width: 100%;
    }

    .akpet-corporate-accordion .accordion-button {
        min-height: 82px;
        padding: 15px;
    }

    .akpet-accordion-icon {
        width: 43px;
        height: 43px;
        flex-basis: 43px;
    }

    .akpet-corporate-accordion .accordion-body {
        padding:15px;
    }

    .akpet-corporate-final {
        padding-bottom: 70px;
    }

    .akpet-corporate-final-box {
        padding: 27px 22px;
    }

    .akpet-corporate-final-box .akpet-button {
        width: 100%;
    }
}

/* =========================================================
   BLOG DETAY SAYFASI
   ========================================================= */

.akpet-blog-detail-section {
    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(98, 120, 202, .08),
            transparent 27%
        ),
        var(--akpet-light);
}

.akpet-blog-detail {
    padding: 38px;
    border: 1px solid var(--akpet-border);
    border-radius: 28px;
    background: var(--akpet-white);
    box-shadow: var(--akpet-shadow-soft);
}

.akpet-blog-detail-top {
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--akpet-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.akpet-blog-detail-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.akpet-blog-detail-meta-item {
    min-height: 39px;
    padding: 0 13px 0 7px;
    border: 1px solid var(--akpet-border);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--akpet-light);
    color: var(--akpet-text);
    font-size: 10px;
    font-weight: 600;
}

.akpet-blog-detail-meta-item > span {
    width: 27px;
    height: 27px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(60, 42, 150, .09);
    color: var(--akpet-primary);
}

.akpet-blog-detail-meta-item:hover {
    border-color: rgba(60, 42, 150, .22);
    background: var(--akpet-white);
    color: var(--akpet-primary);
}

.akpet-blog-back-link {
    min-width: max-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--akpet-primary);
    font-size: 11px;
    font-weight: 700;
}

.akpet-blog-back-link:hover {
    color: var(--akpet-red);
    gap: 11px;
}

.akpet-blog-detail-title {
    max-width: 780px;
    margin: 0;
    color: var(--akpet-title);
    font-size: clamp(30px, 4vw, 45px);
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: -.07em;
}

.akpet-blog-detail-divider {
    margin: 28px 0 32px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.akpet-blog-detail-divider span {
    height: 1px;
    flex: 1;
    background: var(--akpet-border);
}

.akpet-blog-detail-divider i {
    width: 37px;
    height: 37px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 61, 39, .09);
    color: var(--akpet-red);
    font-size: 15px;
}

/* Veritabanından gelen blog içeriği */

.akpet-blog-detail-content {
    color: var(--akpet-text);
    font-size: 15px;
    line-height: 1.9;
    overflow-wrap: anywhere;
}

.akpet-blog-detail-content > *:first-child {
    margin-top: 0;
}

.akpet-blog-detail-content > *:last-child {
    margin-bottom: 0;
}

.akpet-blog-detail-content p {
    margin: 0 0 20px;
}

.akpet-blog-detail-content strong,
.akpet-blog-detail-content b {
    color: var(--akpet-title);
    font-weight: 700;
}

.akpet-blog-detail-content h1,
.akpet-blog-detail-content h2,
.akpet-blog-detail-content h3,
.akpet-blog-detail-content h4,
.akpet-blog-detail-content h5,
.akpet-blog-detail-content h6 {
    margin: 35px 0 16px;
    color: var(--akpet-title);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -.02em;
}

.akpet-blog-detail-content h1 {
    font-size: 30px;
}

.akpet-blog-detail-content h2 {
    font-size: 27px;
}

.akpet-blog-detail-content h3 {
    font-size: 23px;
}

.akpet-blog-detail-content h4 {
    font-size: 19px;
}

.akpet-blog-detail-content h5,
.akpet-blog-detail-content h6 {
    font-size: 16px;
}

.akpet-blog-detail-content ul,
.akpet-blog-detail-content ol {
    padding: 0;
    margin: 0 0 22px;
    list-style: none;
    counter-reset: akpet-blog-list;
}

.akpet-blog-detail-content ul li,
.akpet-blog-detail-content ol li {
    position: relative;
    min-height: 38px;
    padding: 6px 0 6px 36px;
    margin-bottom: 5px;
}

.akpet-blog-detail-content ul li::before {
    content: "\F26E";
    position: absolute;
    top: 6px;
    left: 0;
    width: 25px;
    height: 25px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 61, 39, .09);
    color: var(--akpet-red);
    font-family: bootstrap-icons !important;
    font-size: 12px;
}

.akpet-blog-detail-content ol li {
    counter-increment: akpet-blog-list;
}

.akpet-blog-detail-content ol li::before {
    content: counter(akpet-blog-list);
    position: absolute;
    top: 6px;
    left: 0;
    width: 25px;
    height: 25px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(60, 42, 150, .09);
    color: var(--akpet-primary);
    font-size: 10px;
    font-weight: 700;
}

.akpet-blog-detail-content img {
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 25px auto;
    border-radius: 20px;
    display: block;
}

.akpet-blog-detail-content figure {
    margin: 28px 0;
}

.akpet-blog-detail-content figure img {
    margin: 0;
}

.akpet-blog-detail-content figcaption {
    margin-top: 9px;
    color: var(--akpet-text);
    font-size: 10px;
    text-align: center;
}

.akpet-blog-detail-content blockquote {
    position: relative;
    padding: 25px 27px 25px 75px;
    margin: 30px 0;
    border: 0;
    border-radius: 22px;
    background:
        radial-gradient(
            circle at 95% 0%,
            rgba(239, 61, 39, .12),
            transparent 36%
        ),
        var(--akpet-light);
    color: var(--akpet-title);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.75;
}

.akpet-blog-detail-content blockquote::before {
    content: "\F6B0";
    position: absolute;
    top: 25px;
    left: 24px;
    width: 34px;
    height: 34px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--akpet-red);
    color: var(--akpet-white);
    font-family: bootstrap-icons !important;
    font-size: 15px;
}

.akpet-blog-detail-content a {
    color: var(--akpet-primary);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(60, 42, 150, .25);
    text-underline-offset: 4px;
}

.akpet-blog-detail-content a:hover {
    color: var(--akpet-red);
    text-decoration-color: var(--akpet-red);
}

.akpet-blog-detail-content table {
    width: 100%;
    margin: 28px 0;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--akpet-border);
    border-radius: 17px;
    overflow: hidden;
    font-size: 12px;
}

.akpet-blog-detail-content th,
.akpet-blog-detail-content td {
    padding: 13px 15px;
    border-right: 1px solid var(--akpet-border);
    border-bottom: 1px solid var(--akpet-border);
    text-align: left;
}

.akpet-blog-detail-content th {
    background: var(--akpet-light);
    color: var(--akpet-title);
    font-weight: 700;
}

.akpet-blog-detail-content tr:last-child td {
    border-bottom: 0;
}

.akpet-blog-detail-content th:last-child,
.akpet-blog-detail-content td:last-child {
    border-right: 0;
}

.akpet-blog-detail-content iframe,
.akpet-blog-detail-content video {
    width: 100%;
    max-width: 100%;
    margin: 28px 0;
    border: 0;
    border-radius: 20px;
    aspect-ratio: 16 / 9;
}

.akpet-blog-detail-content hr {
    margin: 35px 0;
    border: 0;
    border-top: 1px solid var(--akpet-border);
    opacity: 1;
}

.akpet-blog-detail-bottom {
    padding-top: 30px;
    margin-top: 38px;
    border-top: 1px solid var(--akpet-border);
}

.akpet-blog-detail-note {
    padding: 17px;
    border-radius: 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--akpet-light);
}

.akpet-blog-detail-note > span {
    width: 37px;
    height: 37px;
    flex: 0 0 37px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(60, 42, 150, .09);
    color: var(--akpet-primary);
}

.akpet-blog-detail-note p {
    margin: 9px 0 0;
    color: var(--akpet-text);
    font-size: 11px;
    line-height: 1.65;
}

.akpet-blog-detail-actions {
    margin-top: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* Sidebar */

.akpet-blog-sidebar {
    position: sticky;
    top: 115px;
}

.akpet-blog-sidebar-heading {
    padding: 19px;
    margin-bottom: 15px;
    border: 1px solid var(--akpet-border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--akpet-white);
}

.akpet-blog-sidebar-heading-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            rgba(60, 42, 150, .11),
            rgba(239, 61, 39, .1)
        );
    color: var(--akpet-primary);
    font-size: 18px;
}

.akpet-blog-sidebar-heading small {
    display: block;
    color: var(--akpet-text);
    font-size: 9px;
}

.akpet-blog-sidebar-heading h3 {
    margin: 3px 0 0;
    color: var(--akpet-title);
    font-size: 16px;
    font-weight: 700;
}

.akpet-blog-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.akpet-blog-sidebar-card {
    padding: 11px;
    border: 1px solid var(--akpet-border);
    border-radius: 19px;
    display: flex;
    align-items: center;
    gap: 13px;
    background: var(--akpet-white);
    transition: .25s ease;
}

.akpet-blog-sidebar-card:hover {
    border-color: rgba(60, 42, 150, .22);
    box-shadow: var(--akpet-shadow-soft);
    transform: translateY(-3px);
}

.akpet-blog-sidebar-image {
    position: relative;
    width: 105px;
    height: 94px;
    flex: 0 0 105px;
    border-radius: 14px;
    overflow: hidden;
    background: var(--akpet-dark-soft);
}

.akpet-blog-sidebar-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.akpet-blog-sidebar-card:hover .akpet-blog-sidebar-image img {
    transform: scale(1.06);
}

.akpet-blog-sidebar-fallback {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .18);
    font-size: 30px;
}

.akpet-blog-sidebar-content {
    min-width: 0;
    flex: 1;
}

.akpet-blog-sidebar-date {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--akpet-text);
    font-size: 8px;
    font-weight: 600;
}

.akpet-blog-sidebar-date i {
    color: var(--akpet-red);
}

.akpet-blog-sidebar-content h4 {
    margin: 6px 0 7px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
}

.akpet-blog-sidebar-content h4 a {
    color: var(--akpet-title);
}

.akpet-blog-sidebar-content h4 a:hover {
    color: var(--akpet-primary);
}

.akpet-blog-sidebar-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--akpet-red);
    font-size: 9px;
    font-weight: 700;
}

.akpet-blog-sidebar-link:hover {
    color: var(--akpet-primary);
    gap: 9px;
}

/* Sidebar teklif kutusu */

.akpet-blog-sidebar-offer {
    position: relative;
    padding: 27px;
    margin-top: 18px;
    border-radius: 24px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 88% 15%,
            rgba(239, 61, 39, .3),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            var(--akpet-primary),
            var(--akpet-dark)
        );
    color: var(--akpet-white);
    box-shadow: var(--akpet-shadow-soft);
}

.akpet-blog-sidebar-offer::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -110px;
    width: 230px;
    height: 230px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    box-shadow:
        0 0 0 28px rgba(255, 255, 255, .025),
        0 0 0 56px rgba(255, 255, 255, .012);
}

.akpet-blog-sidebar-offer > * {
    position: relative;
    z-index: 2;
}

.akpet-blog-sidebar-offer-icon {
    width: 49px;
    height: 49px;
    margin-bottom: 22px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .1);
    color: var(--akpet-red-light);
    font-size: 21px;
}

.akpet-blog-sidebar-offer-label {
    display: block;
    color: var(--akpet-red-light);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.akpet-blog-sidebar-offer h3 {
    margin: 7px 0 11px;
    color: var(--akpet-white);
    font-size: 21px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -.025em;
}

.akpet-blog-sidebar-offer p {
    margin: 0 0 20px;
    color: rgba(255, 255, 255, .62);
    font-size: 11px;
    line-height: 1.7;
}

.akpet-blog-sidebar-offer .akpet-button {
    width: 100%;
}

/* Responsive */

@media (max-width: 1199px) {
    .akpet-blog-sidebar {
        position: static;
        top: auto;
    }
}

@media (max-width: 991px) {
    .akpet-blog-detail {
        padding: 30px;
    }

    .akpet-blog-sidebar {
        margin-top: 5px;
    }

    .akpet-blog-sidebar-list {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .akpet-blog-sidebar-card {
        width: calc(50% - 6px);
    }

    .akpet-blog-sidebar-offer {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .akpet-blog-detail {
        padding: 23px 19px;
        border-radius: 23px;
    }

    .akpet-blog-detail-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .akpet-blog-detail-title {
        font-size: 29px;
    }

    .akpet-blog-detail-content {
        font-size: 14px;
        line-height: 1.85;
    }

    .akpet-blog-detail-content blockquote {
        padding: 68px 20px 22px;
        font-size: 14px;
    }

    .akpet-blog-detail-content blockquote::before {
        top: 20px;
        left: 20px;
    }

    .akpet-blog-detail-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .akpet-blog-detail-actions .akpet-button {
        width: 100%;
    }

    .akpet-blog-sidebar-list {
        flex-direction: column;
    }

    .akpet-blog-sidebar-card {
        width: 100%;
    }

    .akpet-blog-sidebar-image {
        width: 92px;
        height: 86px;
        flex-basis: 92px;
    }

    .akpet-blog-sidebar-offer {
        padding: 23px;
    }

    .akpet-blog-detail-content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* =========================================================
   BLOGLAR LİSTE SAYFASI
   ========================================================= */

.akpet-blogs-page {
    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(98, 120, 202, .08),
            transparent 27%
        ),
        var(--akpet-light);
}

.akpet-blogs-card {
    height: 100%;
    border: 1px solid var(--akpet-border);
    border-radius: 26px;
    overflow: hidden;
    background: var(--akpet-white);
    box-shadow: 0 12px 35px rgba(29, 22, 82, .04);
    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.akpet-blogs-card:hover {
    border-color: rgba(60, 42, 150, .22);
    box-shadow: var(--akpet-shadow-soft);
    transform: translateY(-7px);
}

.akpet-blogs-card-image {
    position: relative;
    height: 285px;
    display: block;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(239, 61, 39, .22),
            transparent 33%
        ),
        var(--akpet-dark-soft);
}

.akpet-blogs-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(17, 16, 32, .04) 35%,
            rgba(17, 16, 32, .55) 100%
        );
}

.akpet-blogs-card-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .55s ease;
}

.akpet-blogs-card:hover .akpet-blogs-card-image img {
    transform: scale(1.07);
}

.akpet-blogs-card-fallback {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .14);
    font-size: 78px;
}

.akpet-blogs-card-date {
    position: absolute;
    bottom: 17px;
    left: 17px;
    z-index: 4;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(17, 16, 32, .72);
    color: var(--akpet-white);
    font-size: 9px;
    font-weight: 600;
    backdrop-filter: blur(12px);
}

.akpet-blogs-card-date i {
    color: var(--akpet-red-light);
}

.akpet-blogs-card-arrow {
    position: absolute;
    top: 17px;
    right: 17px;
    z-index: 4;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 16, 32, .36);
    color: var(--akpet-white);
    font-size: 15px;
    backdrop-filter: blur(10px);
    transition:
        background-color .25s ease,
        transform .25s ease;
}

.akpet-blogs-card:hover .akpet-blogs-card-arrow {
    background: var(--akpet-red);
    transform: rotate(45deg);
}

.akpet-blogs-card-content {
    padding: 24px;
}

.akpet-blogs-card-label {
    min-height: 28px;
    padding: 0 10px;
    margin-bottom: 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: rgba(239, 61, 39, .09);
    color: var(--akpet-red);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.akpet-blogs-card-content h2 {
    margin: 0;
    color: var(--akpet-title);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -.018em;
}

.akpet-blogs-card-content h2 a {
    color: var(--akpet-title);
}

.akpet-blogs-card-content h2 a:hover {
    color: var(--akpet-primary);
}

.akpet-blogs-card-footer {
    padding-top: 19px;
    margin-top: 22px;
    border-top: 1px solid var(--akpet-border);
}

.akpet-blogs-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--akpet-primary);
    font-size: 11px;
    font-weight: 700;
}

.akpet-blogs-card-link i {
    color: var(--akpet-red);
    transition: transform .25s ease;
}

.akpet-blogs-card-link:hover {
    color: var(--akpet-red);
}

.akpet-blogs-card-link:hover i {
    transform: translateX(4px);
}

/* =========================================================
   BLOGLAR SAYFASI ALT TEKLİF ALANI
   ========================================================= */

.akpet-blogs-support {
    padding: 0 0 95px;
    background: var(--akpet-light);
}

.akpet-blogs-support-box {
    position: relative;
    padding: 42px;
    border-radius: 30px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 84% 18%,
            rgba(239, 61, 39, .28),
            transparent 31%
        ),
        linear-gradient(
            135deg,
            var(--akpet-primary),
            var(--akpet-dark)
        );
    color: var(--akpet-white);
    box-shadow: var(--akpet-shadow);
}

.akpet-blogs-support-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    pointer-events: none;
}

.akpet-blogs-support-orbit-one {
    right: -130px;
    bottom: -170px;
    width: 410px;
    height: 410px;
}

.akpet-blogs-support-orbit-two {
    right: -45px;
    bottom: -85px;
    width: 240px;
    height: 240px;
}

.akpet-blogs-support-box h2 {
    max-width: 710px;
    margin: 8px 0 13px;
    color: var(--akpet-white);
    font-size: clamp(29px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.akpet-blogs-support-box p {
    max-width: 670px;
    margin: 0;
    color: rgba(255, 255, 255, .64);
    font-size: 12px;
    line-height: 1.75;
}

@media (max-width: 991px) {
    .akpet-blogs-card-image {
        height: 255px;
    }

    .akpet-blogs-support-box {
        padding: 34px;
    }
}

@media (max-width: 767px) {
    .akpet-blogs-card {
        border-radius: 22px;
    }

    .akpet-blogs-card-image {
        height: 245px;
    }

    .akpet-blogs-card-content {
        padding: 21px;
    }

    .akpet-blogs-card-content h2 {
        font-size: 17px;
    }

    .akpet-blogs-support {
        padding-bottom: 70px;
    }

    .akpet-blogs-support-box {
        padding: 27px 22px;
    }

    .akpet-blogs-support-box .akpet-button {
        width: 100%;
    }
}

/* =========================================================
   ÇEREZ POLİTİKASI VE YASAL METİN SAYFALARI
   ========================================================= */

.akpet-policy-page-hero {
    min-height: 430px;
}

.akpet-policy-page-hero .akpet-page-hero-row {
    min-height: 430px;
}

.akpet-policy-section {
    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(98, 120, 202, .08),
            transparent 27%
        ),
        var(--akpet-light);
}

.akpet-policy-wrapper {
    padding: 40px;
    border: 1px solid var(--akpet-border);
    border-radius: 28px;
    background: var(--akpet-white);
    box-shadow: var(--akpet-shadow-soft);
}

.akpet-policy-top {
    padding-bottom: 26px;
    margin-bottom: 26px;
    border-bottom: 1px solid var(--akpet-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.akpet-policy-heading {
    display: flex;
    align-items: center;
    gap: 16px;
}

.akpet-policy-heading-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            rgba(60, 42, 150, .11),
            rgba(239, 61, 39, .1)
        );
    color: var(--akpet-primary);
    font-size: 23px;
}

.akpet-policy-heading small,
.akpet-policy-heading h2 {
    display: block;
}

.akpet-policy-heading small {
    margin-bottom: 4px;
    color: var(--akpet-red);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.akpet-policy-heading h2 {
    margin: 0;
    color: var(--akpet-title);
    font-size: 23px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -.02em;
}

.akpet-policy-contact-link {
    min-width: max-content;
    min-height: 42px;
    padding: 0 15px;
    border: 1px solid var(--akpet-border);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--akpet-light);
    color: var(--akpet-primary);
    font-size: 10px;
    font-weight: 700;
}

.akpet-policy-contact-link:hover {
    border-color: var(--akpet-primary);
    background: var(--akpet-primary);
    color: var(--akpet-white);
}

.akpet-policy-info {
    padding: 18px;
    margin-bottom: 32px;
    border-radius: 19px;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    background:
        radial-gradient(
            circle at 95% 0%,
            rgba(239, 61, 39, .09),
            transparent 35%
        ),
        var(--akpet-light);
}

.akpet-policy-info-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(60, 42, 150, .09);
    color: var(--akpet-primary);
    font-size: 17px;
}

.akpet-policy-info p {
    margin: 5px 0 0;
    color: var(--akpet-text);
    font-size: 12px;
    line-height: 1.7;
}

/* Panelden gelen yasal metin */

.akpet-policy-content {
    color: var(--akpet-text);
    font-size: 14px;
    line-height: 1.9;
    overflow-wrap: anywhere;
}

.akpet-policy-content > *:first-child {
    margin-top: 0;
}

.akpet-policy-content > *:last-child {
    margin-bottom: 0;
}

.akpet-policy-content p {
    margin: 0 0 18px;
}

.akpet-policy-content strong,
.akpet-policy-content b {
    color: var(--akpet-title);
    font-weight: 700;
}

.akpet-policy-content h1,
.akpet-policy-content h2,
.akpet-policy-content h3,
.akpet-policy-content h4,
.akpet-policy-content h5,
.akpet-policy-content h6 {
    position: relative;
    padding-left: 17px;
    margin: 34px 0 15px;
    color: var(--akpet-title);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -.02em;
}

.akpet-policy-content h1::before,
.akpet-policy-content h2::before,
.akpet-policy-content h3::before,
.akpet-policy-content h4::before,
.akpet-policy-content h5::before,
.akpet-policy-content h6::before {
    content: "";
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 0;
    width: 4px;
    border-radius: 999px;
    background:
        linear-gradient(
            180deg,
            var(--akpet-red),
            var(--akpet-primary)
        );
}

.akpet-policy-content h1 {
    font-size: 29px;
}

.akpet-policy-content h2 {
    font-size: 25px;
}

.akpet-policy-content h3 {
    font-size: 21px;
}

.akpet-policy-content h4 {
    font-size: 18px;
}

.akpet-policy-content h5,
.akpet-policy-content h6 {
    font-size: 16px;
}

.akpet-policy-content ul,
.akpet-policy-content ol {
    padding: 0;
    margin: 0 0 22px;
    list-style: none;
    counter-reset: akpet-policy-counter;
}

.akpet-policy-content ul li,
.akpet-policy-content ol li {
    position: relative;
    min-height: 35px;
    padding: 5px 0 5px 36px;
    margin-bottom: 6px;
}

.akpet-policy-content ul li::before {
    content: "\F26E";
    position: absolute;
    top: 5px;
    left: 0;
    width: 25px;
    height: 25px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 61, 39, .09);
    color: var(--akpet-red);
    font-family: bootstrap-icons !important;
    font-size: 12px;
}

.akpet-policy-content ol li {
    counter-increment: akpet-policy-counter;
}

.akpet-policy-content ol li::before {
    content: counter(akpet-policy-counter);
    position: absolute;
    top: 5px;
    left: 0;
    width: 25px;
    height: 25px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(60, 42, 150, .09);
    color: var(--akpet-primary);
    font-size: 10px;
    font-weight: 700;
}

.akpet-policy-content a {
    color: var(--akpet-primary);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(60, 42, 150, .25);
    text-underline-offset: 4px;
}

.akpet-policy-content a:hover {
    color: var(--akpet-red);
    text-decoration-color: var(--akpet-red);
}

.akpet-policy-content blockquote {
    position: relative;
    padding: 22px 24px 22px 70px;
    margin: 28px 0;
    border: 0;
    border-radius: 20px;
    background: var(--akpet-light);
    color: var(--akpet-title);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.8;
}

.akpet-policy-content blockquote::before {
    content: "\F431";
    position: absolute;
    top: 22px;
    left: 22px;
    width: 34px;
    height: 34px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--akpet-primary);
    color: var(--akpet-white);
    font-family: bootstrap-icons !important;
    font-size: 15px;
}

.akpet-policy-content table {
    width: 100%;
    margin: 28px 0;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--akpet-border);
    border-radius: 18px;
    overflow: hidden;
    font-size: 12px;
}

.akpet-policy-content th,
.akpet-policy-content td {
    padding: 14px 16px;
    border-right: 1px solid var(--akpet-border);
    border-bottom: 1px solid var(--akpet-border);
    vertical-align: top;
    text-align: left;
}

.akpet-policy-content th {
    background: var(--akpet-light);
    color: var(--akpet-title);
    font-weight: 700;
}

.akpet-policy-content tr:last-child td {
    border-bottom: 0;
}

.akpet-policy-content th:last-child,
.akpet-policy-content td:last-child {
    border-right: 0;
}

.akpet-policy-content hr {
    margin: 34px 0;
    border: 0;
    border-top: 1px solid var(--akpet-border);
    opacity: 1;
}

.akpet-policy-bottom {
    padding-top: 28px;
    margin-top: 36px;
    border-top: 1px solid var(--akpet-border);
}

.akpet-policy-bottom-text {
    padding: 16px;
    border-radius: 17px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--akpet-light);
}

.akpet-policy-bottom-text > span {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 61, 39, .09);
    color: var(--akpet-red);
}

.akpet-policy-bottom-text p {
    margin: 4px 0 0;
    color: var(--akpet-text);
    font-size: 11px;
    line-height: 1.7;
}

.akpet-policy-bottom-actions {
    margin-top: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 991px) {
    .akpet-policy-wrapper {
        padding: 32px;
    }
}

@media (max-width: 767px) {
    .akpet-policy-page-hero,
    .akpet-policy-page-hero .akpet-page-hero-row {
        min-height: 390px;
    }

    .akpet-policy-wrapper {
        padding: 24px 19px;
        border-radius: 23px;
    }

    .akpet-policy-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .akpet-policy-heading {
        align-items: flex-start;
    }

    .akpet-policy-heading-icon {
        width: 49px;
        height: 49px;
        flex-basis: 49px;
    }

    .akpet-policy-heading h2 {
        font-size: 19px;
    }

    .akpet-policy-contact-link {
        width: 100%;
        justify-content: center;
    }

    .akpet-policy-info {
        padding: 15px;
    }

    .akpet-policy-content {
        font-size: 13px;
        line-height: 1.85;
    }

    .akpet-policy-content h1 {
        font-size: 25px;
    }

    .akpet-policy-content h2 {
        font-size: 22px;
    }

    .akpet-policy-content h3 {
        font-size: 19px;
    }

    .akpet-policy-content blockquote {
        padding: 65px 18px 19px;
    }

    .akpet-policy-content blockquote::before {
        top: 18px;
        left: 18px;
    }

    .akpet-policy-content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .akpet-policy-bottom-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .akpet-policy-bottom-actions .akpet-button {
        width: 100%;
    }
}

/* =========================================================
   E-KATALOGLAR SAYFASI
   ========================================================= */

.akpet-catalog-section {
    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(98, 120, 202, .08),
            transparent 27%
        ),
        var(--akpet-light);
}

.akpet-catalog-card {
    height: 100%;
    border: 1px solid var(--akpet-border);
    border-radius: 26px;
    overflow: hidden;
    background: var(--akpet-white);
    box-shadow: 0 12px 35px rgba(29, 22, 82, .04);
    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.akpet-catalog-card:hover {
    border-color: rgba(60, 42, 150, .22);
    box-shadow: var(--akpet-shadow-soft);
    transform: translateY(-7px);
}

.akpet-catalog-preview {
    position: relative;
    height: 440px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 85% 12%,
            rgba(239, 61, 39, .17),
            transparent 28%
        ),
        #e9e9ef;
}

.akpet-catalog-preview::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    height: 110px;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(17, 16, 32, .42)
        );
}

.akpet-catalog-preview-top {
    position: absolute;
    top: 16px;
    right: 16px;
    left: 16px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.akpet-catalog-file-type {
    min-height: 31px;
    padding: 0 11px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--akpet-red);
    color: var(--akpet-white);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
}

.akpet-catalog-preview-icon {
    width: 39px;
    height: 39px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 16, 32, .72);
    color: var(--akpet-white);
    font-size: 17px;
    backdrop-filter: blur(10px);
}

.akpet-catalog-pdf {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    background: var(--akpet-white);
}

.akpet-catalog-preview-overlay {
    position: absolute;
    inset: 0;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 16, 32, .08);
    opacity: 0;
    pointer-events: none;
    transition:
        opacity .25s ease,
        background-color .25s ease;
}

.akpet-catalog-card:hover .akpet-catalog-preview-overlay {
    opacity: 1;
    pointer-events: auto;
    background: rgba(17, 16, 32, .42);
}

.akpet-catalog-preview-button {
    min-height: 45px;
    padding: 0 17px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: rgba(255, 255, 255, .94);
    color: var(--akpet-title);
    font-size: 10px;
    font-weight: 700;
    box-shadow: 0 15px 40px rgba(17, 16, 32, .18);
    transform: translateY(10px);
    transition:
        transform .25s ease,
        background-color .25s ease,
        color .25s ease;
}

.akpet-catalog-card:hover .akpet-catalog-preview-button {
    transform: translateY(0);
}

.akpet-catalog-preview-button:hover {
    background: var(--akpet-red);
    color: var(--akpet-white);
}

.akpet-catalog-content {
    padding: 22px;
}

.akpet-catalog-title-area {
    display: flex;
    align-items: center;
    gap: 13px;
}

.akpet-catalog-icon {
    width: 49px;
    height: 49px;
    flex: 0 0 49px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            rgba(60, 42, 150, .11),
            rgba(239, 61, 39, .1)
        );
    color: var(--akpet-primary);
    font-size: 20px;
}

.akpet-catalog-title-area > div {
    min-width: 0;
    flex: 1;
}

.akpet-catalog-title-area small {
    display: block;
    margin-bottom: 4px;
    color: var(--akpet-red);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.akpet-catalog-title-area h2 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

.akpet-catalog-title-area h2 a {
    color: var(--akpet-title);
}

.akpet-catalog-title-area h2 a:hover {
    color: var(--akpet-primary);
}

.akpet-catalog-actions {
    padding-top: 18px;
    margin-top: 20px;
    border-top: 1px solid var(--akpet-border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.akpet-catalog-open {
    min-height: 42px;
    padding: 0 15px;
    border: 1px solid rgba(60, 42, 150, .15);
    border-radius: 999px;
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: rgba(60, 42, 150, .06);
    color: var(--akpet-primary);
    font-size: 10px;
    font-weight: 700;
}

.akpet-catalog-open:hover {
    border-color: var(--akpet-primary);
    background: var(--akpet-primary);
    color: var(--akpet-white);
}

.akpet-catalog-download {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border: 1px solid var(--akpet-border);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--akpet-white);
    color: var(--akpet-red);
    font-size: 14px;
}

.akpet-catalog-download:hover {
    border-color: var(--akpet-red);
    background: var(--akpet-red);
    color: var(--akpet-white);
}

/* =========================================================
   E-KATALOG ALT İLETİŞİM ALANI
   ========================================================= */

.akpet-catalog-support {
    padding: 0 0 95px;
    background: var(--akpet-light);
}

.akpet-catalog-support-box {
    position: relative;
    padding: 42px;
    border-radius: 30px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 84% 18%,
            rgba(239, 61, 39, .28),
            transparent 31%
        ),
        linear-gradient(
            135deg,
            var(--akpet-primary),
            var(--akpet-dark)
        );
    color: var(--akpet-white);
    box-shadow: var(--akpet-shadow);
}

.akpet-catalog-support-orbit {
    position: absolute;
    right: -135px;
    bottom: -175px;
    width: 415px;
    height: 415px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    pointer-events: none;
    box-shadow:
        0 0 0 40px rgba(255, 255, 255, .025),
        0 0 0 80px rgba(255, 255, 255, .012);
}

.akpet-catalog-support-box h2 {
    max-width: 710px;
    margin: 8px 0 13px;
    color: var(--akpet-white);
    font-size: clamp(29px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.akpet-catalog-support-box p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, .64);
    font-size: 12px;
    line-height: 1.75;
}

@media (max-width: 1199px) {
    .akpet-catalog-preview {
        height: 410px;
    }
}

@media (max-width: 991px) {
    .akpet-catalog-preview {
        height: 430px;
    }

    .akpet-catalog-support-box {
        padding: 34px;
    }
}

@media (max-width: 767px) {
    .akpet-catalog-card {
        border-radius: 22px;
    }

    .akpet-catalog-preview {
        height: 400px;
    }

    .akpet-catalog-preview-overlay {
        display: none;
    }

    .akpet-catalog-content {
        padding: 19px;
    }

    .akpet-catalog-title-area h2 {
        font-size: 15px;
    }

    .akpet-catalog-support {
        padding-bottom: 70px;
    }

    .akpet-catalog-support-box {
        padding: 27px 22px;
    }

    .akpet-catalog-support-box .akpet-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .akpet-catalog-preview {
        height: 360px;
    }

    .akpet-catalog-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .akpet-catalog-open,
    .akpet-catalog-download {
        width: 100%;
    }

    .akpet-catalog-download {
        height: 42px;
        border-radius: 999px;
        flex-basis: auto;
    }
}


/* =========================================================
   HABER DETAY SAYFASI
   ========================================================= */

.akpet-news-detail-section {
    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(98, 120, 202, .08),
            transparent 27%
        ),
        var(--akpet-light);
}

.akpet-news-detail {
    padding: 38px;
    border: 1px solid var(--akpet-border);
    border-radius: 28px;
    background: var(--akpet-white);
    box-shadow: var(--akpet-shadow-soft);
}

.akpet-news-detail-top {
    padding-bottom: 22px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--akpet-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.akpet-news-detail-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.akpet-news-detail-meta-item {
    min-height: 39px;
    padding: 0 14px 0 7px;
    border: 1px solid var(--akpet-border);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--akpet-light);
    color: var(--akpet-text);
    font-size: 11px;
    font-weight: 600;
}

.akpet-news-detail-meta-item > span {
    width: 27px;
    height: 27px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(60, 42, 150, .09);
    color: var(--akpet-primary);
}

.akpet-news-detail-meta-item:hover {
    border-color: rgba(60, 42, 150, .22);
    background: var(--akpet-white);
    color: var(--akpet-primary);
}

.akpet-news-back-link {
    min-width: max-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--akpet-primary);
    font-size: 11px;
    font-weight: 700;
}

.akpet-news-back-link:hover {
    gap: 11px;
    color: var(--akpet-red);
}

.akpet-news-detail-title {
    max-width: 780px;
    margin: 0;
    color: var(--akpet-title);
    font-size: clamp(30px, 4vw, 45px);
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: -.07em;
}

.akpet-news-detail-divider {
    margin: 28px 0 32px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.akpet-news-detail-divider span {
    height: 1px;
    flex: 1;
    background: var(--akpet-border);
}

.akpet-news-detail-divider i {
    width: 37px;
    height: 37px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 61, 39, .09);
    color: var(--akpet-red);
    font-size: 15px;
}

/* Veritabanından gelen haber içeriği */

.akpet-news-detail-content {
    color: var(--akpet-text);
    font-size: 15px;
    line-height: 1.9;
    overflow-wrap: anywhere;
}

.akpet-news-detail-content > *:first-child {
    margin-top: 0;
}

.akpet-news-detail-content > *:last-child {
    margin-bottom: 0;
}

.akpet-news-detail-content p {
    margin: 0 0 20px;
}

.akpet-news-detail-content strong,
.akpet-news-detail-content b {
    color: var(--akpet-title);
    font-weight: 700;
}

.akpet-news-detail-content h1,
.akpet-news-detail-content h2,
.akpet-news-detail-content h3,
.akpet-news-detail-content h4,
.akpet-news-detail-content h5,
.akpet-news-detail-content h6 {
    margin: 35px 0 16px;
    color: var(--akpet-title);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -.02em;
}

.akpet-news-detail-content h1 {
    font-size: 30px;
}

.akpet-news-detail-content h2 {
    font-size: 27px;
}

.akpet-news-detail-content h3 {
    font-size: 23px;
}

.akpet-news-detail-content h4 {
    font-size: 19px;
}

.akpet-news-detail-content h5,
.akpet-news-detail-content h6 {
    font-size: 16px;
}

.akpet-news-detail-content ul,
.akpet-news-detail-content ol {
    padding: 0;
    margin: 0 0 22px;
    list-style: none;
    counter-reset: akpet-news-list;
}

.akpet-news-detail-content ul li,
.akpet-news-detail-content ol li {
    position: relative;
    min-height: 38px;
    padding: 6px 0 6px 36px;
    margin-bottom: 5px;
}

.akpet-news-detail-content ul li::before {
    content: "\F26E";
    position: absolute;
    top: 6px;
    left: 0;
    width: 25px;
    height: 25px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 61, 39, .09);
    color: var(--akpet-red);
    font-family: bootstrap-icons !important;
    font-size: 12px;
}

.akpet-news-detail-content ol li {
    counter-increment: akpet-news-list;
}

.akpet-news-detail-content ol li::before {
    content: counter(akpet-news-list);
    position: absolute;
    top: 6px;
    left: 0;
    width: 25px;
    height: 25px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(60, 42, 150, .09);
    color: var(--akpet-primary);
    font-size: 10px;
    font-weight: 700;
}

.akpet-news-detail-content img {
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 25px auto;
    border-radius: 20px;
    display: block;
}

.akpet-news-detail-content figure {
    margin: 28px 0;
}

.akpet-news-detail-content figure img {
    margin: 0;
}

.akpet-news-detail-content figcaption {
    margin-top: 9px;
    color: var(--akpet-text);
    font-size: 11px;
    text-align: center;
}

.akpet-news-detail-content blockquote {
    position: relative;
    padding: 25px 27px 25px 75px;
    margin: 30px 0;
    border: 0;
    border-radius: 22px;
    background:
        radial-gradient(
            circle at 95% 0%,
            rgba(239, 61, 39, .12),
            transparent 36%
        ),
        var(--akpet-light);
    color: var(--akpet-title);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.75;
}

.akpet-news-detail-content blockquote::before {
    content: "\F6B0";
    position: absolute;
    top: 25px;
    left: 24px;
    width: 34px;
    height: 34px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--akpet-red);
    color: var(--akpet-white);
    font-family: bootstrap-icons !important;
    font-size: 15px;
}

.akpet-news-detail-content a {
    color: var(--akpet-primary);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(60, 42, 150, .25);
    text-underline-offset: 4px;
}

.akpet-news-detail-content a:hover {
    color: var(--akpet-red);
    text-decoration-color: var(--akpet-red);
}

.akpet-news-detail-content table {
    width: 100%;
    margin: 28px 0;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--akpet-border);
    border-radius: 17px;
    overflow: hidden;
    font-size: 12px;
}

.akpet-news-detail-content th,
.akpet-news-detail-content td {
    padding: 13px 15px;
    border-right: 1px solid var(--akpet-border);
    border-bottom: 1px solid var(--akpet-border);
    text-align: left;
    vertical-align: top;
}

.akpet-news-detail-content th {
    background: var(--akpet-light);
    color: var(--akpet-title);
    font-weight: 700;
}

.akpet-news-detail-content tr:last-child td {
    border-bottom: 0;
}

.akpet-news-detail-content th:last-child,
.akpet-news-detail-content td:last-child {
    border-right: 0;
}

.akpet-news-detail-content iframe,
.akpet-news-detail-content video {
    width: 100%;
    max-width: 100%;
    margin: 28px 0;
    border: 0;
    border-radius: 20px;
    aspect-ratio: 16 / 9;
}

.akpet-news-detail-content hr {
    margin: 35px 0;
    border: 0;
    border-top: 1px solid var(--akpet-border);
    opacity: 1;
}

/* Haber alt alanı */

.akpet-news-detail-footer {
    padding-top: 30px;
    margin-top: 38px;
    border-top: 1px solid var(--akpet-border);
}

.akpet-news-detail-footer-text {
    padding: 17px;
    border-radius: 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--akpet-light);
}

.akpet-news-detail-footer-text > span {
    width: 37px;
    height: 37px;
    flex: 0 0 37px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(60, 42, 150, .09);
    color: var(--akpet-primary);
}

.akpet-news-detail-footer-text p {
    margin: 4px 0 0;
    color: var(--akpet-text);
    font-size: 11px;
    line-height: 1.65;
}

.akpet-news-detail-actions {
    margin-top: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* Haber sidebar */

.akpet-news-sidebar {
    position: sticky;
    top: 115px;
}

.akpet-news-sidebar-heading {
    padding: 19px;
    margin-bottom: 15px;
    border: 1px solid var(--akpet-border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--akpet-white);
}

.akpet-news-sidebar-heading-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            rgba(60, 42, 150, .11),
            rgba(239, 61, 39, .1)
        );
    color: var(--akpet-primary);
    font-size: 18px;
}

.akpet-news-sidebar-heading small {
    display: block;
    color: var(--akpet-text);
    font-size: 10px;
}

.akpet-news-sidebar-heading h3 {
    margin: 3px 0 0;
    color: var(--akpet-title);
    font-size: 16px;
    font-weight: 700;
}

.akpet-news-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.akpet-news-sidebar-card {
    padding: 11px;
    border: 1px solid var(--akpet-border);
    border-radius: 19px;
    display: flex;
    align-items: center;
    gap: 13px;
    background: var(--akpet-white);
    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.akpet-news-sidebar-card:hover {
    border-color: rgba(60, 42, 150, .22);
    box-shadow: var(--akpet-shadow-soft);
    transform: translateY(-3px);
}

.akpet-news-sidebar-image {
    position: relative;
    width: 105px;
    height: 94px;
    flex: 0 0 105px;
    border-radius: 14px;
    overflow: hidden;
    background: var(--akpet-dark-soft);
}

.akpet-news-sidebar-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.akpet-news-sidebar-card:hover .akpet-news-sidebar-image img {
    transform: scale(1.06);
}

.akpet-news-sidebar-fallback {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .18);
    font-size: 30px;
}

.akpet-news-sidebar-content {
    min-width: 0;
    flex: 1;
}

.akpet-news-sidebar-date {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--akpet-text);
    font-size: 9px;
    font-weight: 600;
}

.akpet-news-sidebar-date i {
    color: var(--akpet-red);
}

.akpet-news-sidebar-content h4 {
    margin: 6px 0 7px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
}

.akpet-news-sidebar-content h4 a {
    color: var(--akpet-title);
}

.akpet-news-sidebar-content h4 a:hover {
    color: var(--akpet-primary);
}

.akpet-news-sidebar-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--akpet-red);
    font-size: 9px;
    font-weight: 700;
}

.akpet-news-sidebar-link:hover {
    gap: 9px;
    color: var(--akpet-primary);
}

/* Haber sidebar teklif alanı */

.akpet-news-sidebar-contact {
    position: relative;
    padding: 27px;
    margin-top: 18px;
    border-radius: 24px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 88% 15%,
            rgba(239, 61, 39, .3),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            var(--akpet-primary),
            var(--akpet-dark)
        );
    color: var(--akpet-white);
    box-shadow: var(--akpet-shadow-soft);
}

.akpet-news-sidebar-contact::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -110px;
    width: 230px;
    height: 230px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    box-shadow:
        0 0 0 28px rgba(255, 255, 255, .025),
        0 0 0 56px rgba(255, 255, 255, .012);
}

.akpet-news-sidebar-contact > * {
    position: relative;
    z-index: 2;
}

.akpet-news-sidebar-contact-icon {
    width: 49px;
    height: 49px;
    margin-bottom: 22px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .1);
    color: var(--akpet-red-light);
    font-size: 21px;
}

.akpet-news-sidebar-contact-label {
    display: block;
    color: var(--akpet-red-light);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.akpet-news-sidebar-contact h3 {
    margin: 7px 0 11px;
    color: var(--akpet-white);
    font-size: 21px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -.025em;
}

.akpet-news-sidebar-contact p {
    margin: 0 0 20px;
    color: rgba(255, 255, 255, .62);
    font-size: 11px;
    line-height: 1.7;
}

.akpet-news-sidebar-contact .akpet-button {
    width: 100%;
}

@media (max-width: 1199px) {
    .akpet-news-sidebar {
        position: static;
        top: auto;
    }
}

@media (max-width: 991px) {
    .akpet-news-detail {
        padding: 30px;
    }

    .akpet-news-sidebar-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .akpet-news-sidebar-card {
        width: calc(50% - 6px);
    }
}

@media (max-width: 767px) {
    .akpet-news-detail {
        padding: 23px 19px;
        border-radius: 23px;
    }

    .akpet-news-detail-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .akpet-news-detail-title {
        font-size: 29px;
    }

    .akpet-news-detail-content {
        font-size: 14px;
        line-height: 1.85;
    }

    .akpet-news-detail-content blockquote {
        padding: 68px 20px 22px;
        font-size: 14px;
    }

    .akpet-news-detail-content blockquote::before {
        top: 20px;
        left: 20px;
    }

    .akpet-news-detail-content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .akpet-news-detail-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .akpet-news-detail-actions .akpet-button {
        width: 100%;
    }

    .akpet-news-sidebar-list {
        flex-direction: column;
    }

    .akpet-news-sidebar-card {
        width: 100%;
    }

    .akpet-news-sidebar-image {
        width: 92px;
        height: 86px;
        flex-basis: 92px;
    }

    .akpet-news-sidebar-contact {
        padding: 23px;
    }
}

/* =========================================================
   HABERLER LİSTE SAYFASI
   ========================================================= */

.akpet-news-list-section {
    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(98, 120, 202, .08),
            transparent 27%
        ),
        var(--akpet-light);
}

.akpet-news-list-card {
    height: 100%;
    border: 1px solid var(--akpet-border);
    border-radius: 26px;
    overflow: hidden;
    background: var(--akpet-white);
    box-shadow: 0 12px 35px rgba(29, 22, 82, .04);
    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.akpet-news-list-card:hover {
    border-color: rgba(60, 42, 150, .22);
    box-shadow: var(--akpet-shadow-soft);
    transform: translateY(-7px);
}

.akpet-news-list-image {
    position: relative;
    height: 285px;
    display: block;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(239, 61, 39, .22),
            transparent 33%
        ),
        var(--akpet-dark-soft);
}

.akpet-news-list-image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(17, 16, 32, .03) 35%,
            rgba(17, 16, 32, .6) 100%
        );
}

.akpet-news-list-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .55s ease;
}

.akpet-news-list-card:hover .akpet-news-list-image img {
    transform: scale(1.07);
}

.akpet-news-list-fallback {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .14);
    font-size: 75px;
}

.akpet-news-list-date {
    position: absolute;
    bottom: 17px;
    left: 17px;
    z-index: 4;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(17, 16, 32, .72);
    color: var(--akpet-white);
    font-size: 10px;
    font-weight: 600;
    backdrop-filter: blur(12px);
}

.akpet-news-list-date i {
    color: var(--akpet-red-light);
}

.akpet-news-list-arrow {
    position: absolute;
    top: 17px;
    right: 17px;
    z-index: 4;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .17);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 16, 32, .38);
    color: var(--akpet-white);
    font-size: 15px;
    backdrop-filter: blur(10px);
    transition:
        background-color .25s ease,
        transform .25s ease;
}

.akpet-news-list-card:hover .akpet-news-list-arrow {
    background: var(--akpet-red);
    transform: rotate(45deg);
}

.akpet-news-list-content {
    padding: 24px;
}

.akpet-news-list-label {
    min-height: 28px;
    padding: 0 10px;
    margin-bottom: 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: rgba(239, 61, 39, .09);
    color: var(--akpet-red);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.akpet-news-list-content h2 {
    margin: 0;
    color: var(--akpet-title);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -.018em;
}

.akpet-news-list-content h2 a {
    color: var(--akpet-title);
}

.akpet-news-list-content h2 a:hover {
    color: var(--akpet-primary);
}

.akpet-news-list-footer {
    padding-top: 19px;
    margin-top: 22px;
    border-top: 1px solid var(--akpet-border);
}

.akpet-news-list-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--akpet-primary);
    font-size: 11px;
    font-weight: 700;
}

.akpet-news-list-link i {
    color: var(--akpet-red);
    transition: transform .25s ease;
}

.akpet-news-list-link:hover {
    color: var(--akpet-red);
}

.akpet-news-list-link:hover i {
    transform: translateX(4px);
}

/* =========================================================
   HABERLER ALT TEKLİF ALANI
   ========================================================= */

.akpet-news-list-support {
    padding: 0 0 95px;
    background: var(--akpet-light);
}

.akpet-news-list-support-box {
    position: relative;
    padding: 42px;
    border-radius: 30px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 84% 18%,
            rgba(239, 61, 39, .28),
            transparent 31%
        ),
        linear-gradient(
            135deg,
            var(--akpet-primary),
            var(--akpet-dark)
        );
    color: var(--akpet-white);
    box-shadow: var(--akpet-shadow);
}

.akpet-news-list-support-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    pointer-events: none;
}

.akpet-news-list-support-orbit-one {
    right: -130px;
    bottom: -170px;
    width: 410px;
    height: 410px;
}

.akpet-news-list-support-orbit-two {
    right: -45px;
    bottom: -85px;
    width: 240px;
    height: 240px;
}

.akpet-news-list-support-box h2 {
    max-width: 720px;
    margin: 8px 0 13px;
    color: var(--akpet-white);
    font-size: clamp(29px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.akpet-news-list-support-box p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, .64);
    font-size: 12px;
    line-height: 1.75;
}

@media (max-width: 991px) {
    .akpet-news-list-image {
        height: 255px;
    }

    .akpet-news-list-support-box {
        padding: 34px;
    }
}

@media (max-width: 767px) {
    .akpet-news-list-card {
        border-radius: 22px;
    }

    .akpet-news-list-image {
        height: 245px;
    }

    .akpet-news-list-content {
        padding: 21px;
    }

    .akpet-news-list-content h2 {
        font-size: 17px;
    }

    .akpet-news-list-support {
        padding-bottom: 70px;
    }

    .akpet-news-list-support-box {
        padding: 27px 22px;
    }

    .akpet-news-list-support-box .akpet-button {
        width: 100%;
    }
}

/* =========================================================
   HİZMET DETAY SAYFASI
   ========================================================= */

.akpet-service-detail-section {
    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(98, 120, 202, .08),
            transparent 27%
        ),
        var(--akpet-white);
}

.akpet-service-detail-visual {
    position: relative;
    min-height: 590px;
    border-radius: 28px;
    overflow: hidden;
    background: var(--akpet-dark);
    box-shadow: var(--akpet-shadow);
}

.akpet-service-detail-image,
.akpet-service-detail-image-overlay {
    position: absolute;
    inset: 0;
}

.akpet-service-detail-image {
    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(239, 61, 39, .18),
            transparent 32%
        ),
        var(--akpet-dark-soft);
}

.akpet-service-detail-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.akpet-service-image-fallback {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .12);
    font-size: 110px;
}

.akpet-service-detail-image-overlay {
    z-index: 3;
    pointer-events: none;
    background:
        radial-gradient(
            circle at 82% 15%,
            rgba(239, 61, 39, .23),
            transparent 31%
        ),
        linear-gradient(
            180deg,
            rgba(17, 16, 32, .04) 30%,
            rgba(17, 16, 32, .9) 100%
        );
}

.akpet-service-detail-image-content {
    position: absolute;
    right: 30px;
    bottom: 33px;
    left: 30px;
    z-index: 4;
}

.akpet-service-detail-image-content > span {
    min-height: 30px;
    padding: 0 11px;
    margin-bottom: 11px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: var(--akpet-red);
    color: var(--akpet-white);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.akpet-service-detail-image-content > strong {
    max-width: 400px;
    display: block;
    color: var(--akpet-white);
    font-size: 27px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -.025em;
}

.akpet-service-detail-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    left: 25px;
    z-index: 5;
    max-width: 270px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 11px;
    background: rgba(17, 16, 32, .74);
    color: var(--akpet-white);
    backdrop-filter: blur(13px);
}

.akpet-service-detail-badge > span {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 61, 39, .15);
    color: var(--akpet-red-light);
    font-size: 17px;
}

.akpet-service-detail-badge small,
.akpet-service-detail-badge strong {
    display: block;
}

.akpet-service-detail-badge small {
    color: rgba(255, 255, 255, .48);
    font-size: 9px;
}

.akpet-service-detail-badge strong {
    margin-top: 3px;
    font-size: 11px;
    font-weight: 700;
}

.akpet-service-contact-card {
    padding: 22px;
    margin-top: 20px;
    border: 1px solid var(--akpet-border);
    border-radius: 23px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: var(--akpet-light);
}

.akpet-service-contact-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border-radius: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            var(--akpet-primary),
            var(--akpet-dark)
        );
    color: var(--akpet-white);
    font-size: 21px;
}

.akpet-service-contact-content {
    flex: 1;
}

.akpet-service-contact-content small,
.akpet-service-contact-content strong {
    display: block;
}

.akpet-service-contact-content small {
    color: var(--akpet-red);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.akpet-service-contact-content strong {
    margin-top: 5px;
    color: var(--akpet-title);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}

.akpet-service-contact-content p {
    margin: 8px 0 15px;
    color: var(--akpet-text);
    font-size: 11px;
    line-height: 1.7;
}

.akpet-service-contact-content .akpet-button {
    min-height: 43px;
}

.akpet-service-detail-content-wrapper {
    padding: 37px;
    border: 1px solid var(--akpet-border);
    border-radius: 28px;
    background: var(--akpet-white);
    box-shadow: var(--akpet-shadow-soft);
}

.akpet-service-detail-heading h2 {
    margin: 15px 0 0;
    color: var(--akpet-title);
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.07em;
}

.akpet-service-detail-divider {
    margin: 27px 0 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.akpet-service-detail-divider > span {
    height: 1px;
    flex: 1;
    background: var(--akpet-border);
}

.akpet-service-detail-divider > i {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 61, 39, .09);
    color: var(--akpet-red);
    font-size: 15px;
}

/* Panelden gelen hizmet açıklaması */

.akpet-service-detail-content {
    color: var(--akpet-text);
    font-size: 15px;
    line-height: 1.9;
    overflow-wrap: anywhere;
}

.akpet-service-detail-content > *:first-child {
    margin-top: 0;
}

.akpet-service-detail-content > *:last-child {
    margin-bottom: 0;
}

.akpet-service-detail-content p {
    margin: 0 0 20px;
}

.akpet-service-detail-content strong,
.akpet-service-detail-content b {
    color: var(--akpet-title);
    font-weight: 700;
}

.akpet-service-detail-content h1,
.akpet-service-detail-content h2,
.akpet-service-detail-content h3,
.akpet-service-detail-content h4,
.akpet-service-detail-content h5,
.akpet-service-detail-content h6 {
    margin: 34px 0 15px;
    color: var(--akpet-title);
    font-weight: 700;
    line-height: 1.32;
    letter-spacing: -.02em;
}

.akpet-service-detail-content h1 {
    font-size: 29px;
}

.akpet-service-detail-content h2 {
    font-size: 26px;
}

.akpet-service-detail-content h3 {
    font-size: 23px;
}

.akpet-service-detail-content h4 {
    font-size: 20px;
}

.akpet-service-detail-content h5,
.akpet-service-detail-content h6 {
    font-size: 17px;
}

.akpet-service-detail-content ul,
.akpet-service-detail-content ol {
    padding: 0;
    margin: 0 0 22px;
    list-style: none;
    counter-reset: akpet-service-list;
}

.akpet-service-detail-content ul li,
.akpet-service-detail-content ol li {
    position: relative;
    min-height: 38px;
    padding: 6px 0 6px 38px;
    margin-bottom: 6px;
}

.akpet-service-detail-content ul li::before {
    content: "\F26E";
    position: absolute;
    top: 6px;
    left: 0;
    width: 27px;
    height: 27px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 61, 39, .09);
    color: var(--akpet-red);
    font-family: bootstrap-icons !important;
    font-size: 12px;
}

.akpet-service-detail-content ol li {
    counter-increment: akpet-service-list;
}

.akpet-service-detail-content ol li::before {
    content: counter(akpet-service-list);
    position: absolute;
    top: 6px;
    left: 0;
    width: 27px;
    height: 27px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(60, 42, 150, .09);
    color: var(--akpet-primary);
    font-size: 10px;
    font-weight: 700;
}

.akpet-service-detail-content img {
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 26px auto;
    border-radius: 20px;
    display: block;
}

.akpet-service-detail-content blockquote {
    position: relative;
    padding: 24px 25px 24px 72px;
    margin: 29px 0;
    border: 0;
    border-radius: 20px;
    background:
        radial-gradient(
            circle at 95% 0%,
            rgba(239, 61, 39, .1),
            transparent 34%
        ),
        var(--akpet-light);
    color: var(--akpet-title);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.8;
}

.akpet-service-detail-content blockquote::before {
    content: "\F6B0";
    position: absolute;
    top: 23px;
    left: 22px;
    width: 35px;
    height: 35px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--akpet-primary);
    color: var(--akpet-white);
    font-family: bootstrap-icons !important;
    font-size: 15px;
}

.akpet-service-detail-content a {
    color: var(--akpet-primary);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(60, 42, 150, .24);
    text-underline-offset: 4px;
}

.akpet-service-detail-content a:hover {
    color: var(--akpet-red);
    text-decoration-color: var(--akpet-red);
}

.akpet-service-detail-content table {
    width: 100%;
    margin: 27px 0;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--akpet-border);
    border-radius: 17px;
    overflow: hidden;
    font-size: 12px;
}

.akpet-service-detail-content th,
.akpet-service-detail-content td {
    padding: 13px 14px;
    border-right: 1px solid var(--akpet-border);
    border-bottom: 1px solid var(--akpet-border);
    vertical-align: top;
    text-align: left;
}

.akpet-service-detail-content th {
    background: var(--akpet-light);
    color: var(--akpet-title);
    font-weight: 700;
}

.akpet-service-detail-content tr:last-child td {
    border-bottom: 0;
}

.akpet-service-detail-content th:last-child,
.akpet-service-detail-content td:last-child {
    border-right: 0;
}

/* Hizmet avantajları */

.akpet-service-detail-highlights {
    padding-top: 28px;
    margin-top: 33px;
    border-top: 1px solid var(--akpet-border);
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.akpet-service-highlight-item {
    padding: 14px;
    border: 1px solid var(--akpet-border);
    border-radius: 17px;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    background: var(--akpet-light);
}

.akpet-service-highlight-item > span {
    width: 39px;
    height: 39px;
    flex: 0 0 39px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(60, 42, 150, .09);
    color: var(--akpet-primary);
    font-size: 16px;
}

.akpet-service-highlight-item strong {
    display: block;
    color: var(--akpet-title);
    font-size: 12px;
    font-weight: 700;
}

.akpet-service-highlight-item p {
    margin: 4px 0 0;
    color: var(--akpet-text);
    font-size: 10px;
    line-height: 1.65;
}

.akpet-service-detail-actions {
    margin-top: 25px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* =========================================================
   HİZMET SÜRECİ
   ========================================================= */

.akpet-service-process-section {
    background: var(--akpet-light);
}

.akpet-service-process-card {
    position: relative;
    min-height: 275px;
    height: 100%;
    padding: 24px;
    border: 1px solid var(--akpet-border);
    border-radius: 23px;
    overflow: hidden;
    background: var(--akpet-white);
    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.akpet-service-process-card::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -85px;
    width: 185px;
    height: 185px;
    border: 1px solid rgba(60, 42, 150, .07);
    border-radius: 50%;
    box-shadow:
        0 0 0 29px rgba(60, 42, 150, .025),
        0 0 0 58px rgba(60, 42, 150, .012);
}

.akpet-service-process-card:hover {
    border-color: rgba(60, 42, 150, .23);
    box-shadow: var(--akpet-shadow-soft);
    transform: translateY(-5px);
}

.akpet-service-process-top {
    position: relative;
    z-index: 2;
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.akpet-service-process-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            rgba(60, 42, 150, .11),
            rgba(239, 61, 39, .1)
        );
    color: var(--akpet-primary);
    font-size: 21px;
}

.akpet-service-process-top small {
    color: rgba(23, 22, 37, .14);
    font-size: 23px;
    font-weight: 700;
}

.akpet-service-process-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 10px;
    color: var(--akpet-title);
    font-size: 18px;
    font-weight: 700;
}

.akpet-service-process-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: var(--akpet-text);
    font-size: 11px;
    line-height: 1.75;
}

/* =========================================================
   HİZMET DETAY ALT İLETİŞİM
   ========================================================= */

.akpet-service-final-section {
    padding: 0 0 95px;
    background: var(--akpet-light);
}

.akpet-service-final-box {
    position: relative;
    padding: 42px;
    border-radius: 30px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 84% 18%,
            rgba(239, 61, 39, .28),
            transparent 31%
        ),
        linear-gradient(
            135deg,
            var(--akpet-primary),
            var(--akpet-dark)
        );
    color: var(--akpet-white);
    box-shadow: var(--akpet-shadow);
}

.akpet-service-final-orbit {
    position: absolute;
    right: -130px;
    bottom: -170px;
    width: 410px;
    height: 410px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    pointer-events: none;
    box-shadow:
        0 0 0 40px rgba(255, 255, 255, .025),
        0 0 0 80px rgba(255, 255, 255, .012);
}

.akpet-service-final-box h2 {
    max-width: 720px;
    margin: 8px 0 13px;
    color: var(--akpet-white);
    font-size: clamp(29px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.akpet-service-final-box p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, .64);
    font-size: 12px;
    line-height: 1.75;
}

@media (max-width: 1199px) {
    .akpet-service-detail-visual {
        min-height: 540px;
    }
}

@media (max-width: 991px) {
    .akpet-service-detail-visual {
        min-height: 520px;
    }

    .akpet-service-detail-content-wrapper {
        padding: 31px;
    }

    .akpet-service-final-box {
        padding: 34px;
    }
}

@media (max-width: 767px) {
    .akpet-service-detail-visual {
        min-height: 455px;
        border-radius: 23px;
    }

    .akpet-service-detail-image-content {
        right: 21px;
        bottom: 24px;
        left: 21px;
    }

    .akpet-service-detail-image-content > strong {
        font-size: 22px;
    }

    .akpet-service-detail-badge {
        top: 18px;
        right: 18px;
        left: 18px;
        max-width: none;
    }

    .akpet-service-contact-card {
        padding: 18px;
        flex-direction: column;
    }

    .akpet-service-contact-content .akpet-button {
        width: 100%;
    }

    .akpet-service-detail-content-wrapper {
        padding: 24px 19px;
        border-radius: 23px;
    }

    .akpet-service-detail-heading h2 {
        font-size: 29px;
    }

    .akpet-service-detail-content {
        font-size: 14px;
        line-height: 1.85;
    }

    .akpet-service-detail-content blockquote {
        padding: 66px 19px 21px;
        font-size: 14px;
    }

    .akpet-service-detail-content blockquote::before {
        top: 19px;
        left: 19px;
    }

    .akpet-service-detail-content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .akpet-service-detail-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .akpet-service-detail-actions .akpet-button {
        width: 100%;
    }

    .akpet-service-process-card {
        min-height: 245px;
    }

    .akpet-service-final-section {
        padding-bottom: 70px;
    }

    .akpet-service-final-box {
        padding: 27px 22px;
    }

    .akpet-service-final-box .akpet-button {
        width: 100%;
    }
}

/* =========================================================
   HİZMETLER LİSTE SAYFASI
   ========================================================= */

.akpet-services-list-section {
    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(98, 120, 202, .08),
            transparent 27%
        ),
        var(--akpet-light);
}

.akpet-services-card {
    height: 100%;
    border: 1px solid var(--akpet-border);
    border-radius: 27px;
    overflow: hidden;
    background: var(--akpet-white);
    box-shadow: 0 14px 40px rgba(29, 22, 82, .05);
    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.akpet-services-card:hover {
    border-color: rgba(60, 42, 150, .24);
    box-shadow: var(--akpet-shadow-soft);
    transform: translateY(-7px);
}

.akpet-services-card-image {
    position: relative;
    height: 325px;
    display: block;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(239, 61, 39, .22),
            transparent 32%
        ),
        var(--akpet-dark-soft);
}

.akpet-services-card-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .55s ease;
}

.akpet-services-card:hover .akpet-services-card-image img {
    transform: scale(1.07);
}

.akpet-services-card-fallback {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .13);
    font-size: 78px;
}

.akpet-services-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(239, 61, 39, .2),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            rgba(17, 16, 32, .03) 27%,
            rgba(17, 16, 32, .88) 100%
        );
}

.akpet-services-card-number {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 4;
    min-width: 42px;
    height: 42px;
    padding: 0 11px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 16, 32, .62);
    color: var(--akpet-white);
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(12px);
}

.akpet-services-card-arrow {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 4;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 16, 32, .45);
    color: var(--akpet-white);
    font-size: 15px;
    backdrop-filter: blur(10px);
    transition:
        transform .25s ease,
        background-color .25s ease;
}

.akpet-services-card:hover .akpet-services-card-arrow {
    background: var(--akpet-red);
    transform: rotate(45deg);
}

.akpet-services-card-image-content {
    position: absolute;
    right: 22px;
    bottom: 24px;
    left: 22px;
    z-index: 4;
}

.akpet-services-card-image-content > span {
    min-height: 29px;
    padding: 0 11px;
    margin-bottom: 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: var(--akpet-red);
    color: var(--akpet-white);
    font-size: 10px;
    font-weight: 700;
}

.akpet-services-card-image-content > strong {
    max-width: 360px;
    display: block;
    color: var(--akpet-white);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.28;
    letter-spacing: -.025em;
}

.akpet-services-card-content {
    padding: 23px;
}

.akpet-services-card-title {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.akpet-services-card-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            rgba(60, 42, 150, .11),
            rgba(239, 61, 39, .1)
        );
    color: var(--akpet-primary);
    font-size: 19px;
}

.akpet-services-card-title > div {
    min-width: 0;
    flex: 1;
}

.akpet-services-card-title small {
    display: block;
    margin-bottom: 4px;
    color: var(--akpet-red);
    font-size: 10px;
    font-weight: 700;
}

.akpet-services-card-title h2 {
    margin: 0;
    color: var(--akpet-title);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
}

.akpet-services-card-title h2 a {
    color: var(--akpet-title);
}

.akpet-services-card-title h2 a:hover {
    color: var(--akpet-primary);
}

.akpet-services-card-footer {
    padding-top: 19px;
    margin-top: 20px;
    border-top: 1px solid var(--akpet-border);
}

.akpet-services-card-footer > span {
    display: block;
    margin-bottom: 14px;
    color: var(--akpet-text);
    font-size: 11px;
    line-height: 1.65;
}

.akpet-services-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--akpet-primary);
    font-size: 11px;
    font-weight: 700;
}

.akpet-services-card-link i {
    color: var(--akpet-red);
    transition: transform .25s ease;
}

.akpet-services-card-link:hover {
    color: var(--akpet-red);
}

.akpet-services-card-link:hover i {
    transform: translateX(4px);
}

/* =========================================================
   HİZMETLER ÇALIŞMA YAKLAŞIMI
   ========================================================= */

.akpet-services-approach-section {
    background: var(--akpet-white);
}

.akpet-services-step-card {
    position: relative;
    min-height: 280px;
    height: 100%;
    padding: 25px;
    border: 1px solid var(--akpet-border);
    border-radius: 23px;
    overflow: hidden;
    background: var(--akpet-light);
    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.akpet-services-step-card::after {
    content: "";
    position: absolute;
    right: -75px;
    bottom: -90px;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(60, 42, 150, .07);
    border-radius: 50%;
    box-shadow:
        0 0 0 30px rgba(60, 42, 150, .025),
        0 0 0 60px rgba(60, 42, 150, .012);
}

.akpet-services-step-card:hover {
    border-color: rgba(60, 42, 150, .23);
    background: var(--akpet-white);
    box-shadow: var(--akpet-shadow-soft);
    transform: translateY(-5px);
}

.akpet-services-step-top {
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.akpet-services-step-icon {
    width: 57px;
    height: 57px;
    border-radius: 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            rgba(60, 42, 150, .11),
            rgba(239, 61, 39, .1)
        );
    color: var(--akpet-primary);
    font-size: 21px;
}

.akpet-services-step-top small {
    color: rgba(23, 22, 37, .14);
    font-size: 24px;
    font-weight: 700;
}

.akpet-services-step-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 10px;
    color: var(--akpet-title);
    font-size: 18px;
    font-weight: 700;
}

.akpet-services-step-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: var(--akpet-text);
    font-size: 12px;
    line-height: 1.75;
}

/* =========================================================
   HİZMETLER ALT İLETİŞİM ALANI
   ========================================================= */

.akpet-services-contact-section {
    padding: 0 0 95px;
    background: var(--akpet-white);
}

.akpet-services-contact-box {
    position: relative;
    padding: 42px;
    border-radius: 30px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 84% 18%,
            rgba(239, 61, 39, .28),
            transparent 31%
        ),
        linear-gradient(
            135deg,
            var(--akpet-primary),
            var(--akpet-dark)
        );
    color: var(--akpet-white);
    box-shadow: var(--akpet-shadow);
}

.akpet-services-contact-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    pointer-events: none;
}

.akpet-services-contact-orbit-one {
    right: -135px;
    bottom: -175px;
    width: 415px;
    height: 415px;
}

.akpet-services-contact-orbit-two {
    right: -45px;
    bottom: -85px;
    width: 240px;
    height: 240px;
}

.akpet-services-contact-box h2 {
    max-width: 720px;
    margin: 8px 0 13px;
    color: var(--akpet-white);
    font-size: clamp(29px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.akpet-services-contact-box p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, .66);
    font-size: 12px;
    line-height: 1.75;
}

.akpet-services-contact-actions {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
}

.akpet-services-contact-link {
    min-height: 50px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: rgba(255, 255, 255, .08);
    color: var(--akpet-white);
    font-size: 11px;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.akpet-services-contact-link:hover {
    border-color: rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .14);
    color: var(--akpet-white);
}

@media (max-width: 1199px) {
    .akpet-services-card-image {
        height: 300px;
    }
}

@media (max-width: 991px) {
    .akpet-services-card-image {
        height: 290px;
    }

    .akpet-services-contact-box {
        padding: 34px;
    }

    .akpet-services-contact-actions {
        max-width: 330px;
    }
}

@media (max-width: 767px) {
    .akpet-services-card {
        border-radius: 22px;
    }

    .akpet-services-card-image {
        height: 275px;
    }

    .akpet-services-card-image-content {
        right: 19px;
        bottom: 21px;
        left: 19px;
    }

    .akpet-services-card-image-content > strong {
        font-size: 20px;
    }

    .akpet-services-card-content {
        padding: 20px;
    }

    .akpet-services-step-card {
        min-height: 250px;
    }

    .akpet-services-contact-section {
        padding-bottom: 70px;
    }

    .akpet-services-contact-box {
        padding: 27px 22px;
    }

    .akpet-services-contact-actions {
        max-width: none;
    }

    .akpet-services-contact-actions .akpet-button,
    .akpet-services-contact-link {
        width: 100%;
    }
}


/* =========================================================
   İLETİŞİM SAYFASI
   ========================================================= */

.akpet-contact-map-section {
    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(98, 120, 202, .08),
            transparent 27%
        ),
        var(--akpet-light);
}

.akpet-contact-map-wrapper {
    position: relative;
    height: 100%;
    min-height: 590px;
    border: 1px solid var(--akpet-border);
    border-radius: 28px;
    overflow: hidden;
    background: var(--akpet-white);
    box-shadow: var(--akpet-shadow-soft);
}

.akpet-contact-map {
    width: 100%;
    height: 100%;
    min-height: 590px;
    border: 0;
    display: block;
}

.akpet-contact-map-label {
    position: absolute;
    bottom: 22px;
    left: 22px;
    z-index: 3;
    max-width: 340px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(17, 16, 32, .82);
    color: var(--akpet-white);
    box-shadow: 0 15px 35px rgba(17, 16, 32, .18);
    backdrop-filter: blur(14px);
}

.akpet-contact-map-label > span {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--akpet-red);
    color: var(--akpet-white);
    font-size: 18px;
}

.akpet-contact-map-label small,
.akpet-contact-map-label strong {
    display: block;
}

.akpet-contact-map-label small {
    color: rgba(255, 255, 255, .48);
    font-size: 10px;
}

.akpet-contact-map-label strong {
    margin-top: 3px;
    color: var(--akpet-white);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.45;
}

/* İletişim bilgileri */

.akpet-contact-information {
    height: 100%;
    min-height: 590px;
    padding: 29px;
    border-radius: 28px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 90% 8%,
            rgba(239, 61, 39, .24),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            var(--akpet-primary),
            var(--akpet-dark)
        );
    color: var(--akpet-white);
    box-shadow: var(--akpet-shadow);
}

.akpet-contact-information-header {
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    gap: 13px;
}

.akpet-contact-information-icon {
    width: 53px;
    height: 53px;
    flex: 0 0 53px;
    border-radius: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .1);
    color: var(--akpet-red-light);
    font-size: 21px;
}

.akpet-contact-information-header small {
    display: block;
    color: rgba(255, 255, 255, .5);
    font-size: 10px;
}

.akpet-contact-information-header h2 {
    margin: 3px 0 0;
    color: var(--akpet-white);
    font-size: 21px;
    font-weight: 700;
}

.akpet-contact-information-list {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.akpet-contact-information-item {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255, 255, 255, .06);
}

.akpet-contact-information-item > span {
    width: 41px;
    height: 41px;
    flex: 0 0 41px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 61, 39, .15);
    color: var(--akpet-red-light);
    font-size: 17px;
}

.akpet-contact-information-item > div {
    min-width: 0;
    flex: 1;
}

.akpet-contact-information-item small {
    display: block;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, .45);
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
}

.akpet-contact-information-item p {
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 11px;
    line-height: 1.65;
}

.akpet-contact-information-item a {
    display: block;
    margin-bottom: 4px;
    color: var(--akpet-white);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.akpet-contact-information-item a:last-child {
    margin-bottom: 0;
}

.akpet-contact-information-item a:hover {
    color: var(--akpet-red-light);
}

.akpet-contact-information-note {
    padding: 15px;
    margin-top: 19px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 17px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(17, 16, 32, .2);
}

.akpet-contact-information-note i {
    margin-top: 2px;
    color: var(--akpet-red-light);
}

.akpet-contact-information-note p {
    margin: 0;
    color: rgba(255, 255, 255, .58);
    font-size: 10px;
    line-height: 1.65;
}

/* =========================================================
   İLETİŞİM FORMU
   ========================================================= */

.akpet-contact-form-section {
    background: var(--akpet-white);
}

.akpet-contact-form-intro {
    position: sticky;
    top: 120px;
}

.akpet-contact-form-intro > p {
    margin: 24px 0 26px;
    color: var(--akpet-text);
    font-size: 13px;
    line-height: 1.8;
}

.akpet-contact-form-benefits {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.akpet-contact-form-benefits > div {
    min-height: 52px;
    padding: 10px 13px;
    border: 1px solid var(--akpet-border);
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 11px;
    background: var(--akpet-light);
}

.akpet-contact-form-benefits span {
    width: 33px;
    height: 33px;
    flex: 0 0 33px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 61, 39, .09);
    color: var(--akpet-red);
}

.akpet-contact-form-benefits strong {
    color: var(--akpet-title);
    font-size: 11px;
    font-weight: 700;
}

.akpet-contact-form-support {
    padding: 18px;
    margin-top: 18px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 13px;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(239, 61, 39, .2),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--akpet-primary),
            var(--akpet-dark)
        );
    color: var(--akpet-white);
}

.akpet-contact-form-support > span {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .1);
    color: var(--akpet-red-light);
    font-size: 19px;
}

.akpet-contact-form-support small,
.akpet-contact-form-support strong {
    display: block;
}

.akpet-contact-form-support small {
    color: rgba(255, 255, 255, .46);
    font-size: 9px;
}

.akpet-contact-form-support strong {
    margin-top: 4px;
    color: var(--akpet-white);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.5;
}

/* Form kartı */

.akpet-contact-form-card {
    padding: 35px;
    border: 1px solid var(--akpet-border);
    border-radius: 28px;
    background:
        radial-gradient(
            circle at 96% 4%,
            rgba(98, 120, 202, .07),
            transparent 27%
        ),
        var(--akpet-white);
    box-shadow: var(--akpet-shadow-soft);
}

.akpet-contact-form-card-header {
    padding-bottom: 24px;
    margin-bottom: 27px;
    border-bottom: 1px solid var(--akpet-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.akpet-contact-form-card-header small {
    display: block;
    color: var(--akpet-red);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.akpet-contact-form-card-header h2 {
    margin: 5px 0 0;
    color: var(--akpet-title);
    font-size: 23px;
    font-weight: 700;
    line-height: 1.3;
}

.akpet-contact-form-card-header > span {
    width: 49px;
    height: 49px;
    flex: 0 0 49px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            rgba(60, 42, 150, .11),
            rgba(239, 61, 39, .1)
        );
    color: var(--akpet-primary);
    font-size: 20px;
}

.akpet-contact-form-group label {
    margin-bottom: 8px;
    display: block;
    color: var(--akpet-title);
    font-size: 10px;
    font-weight: 700;
}

.akpet-contact-form-group label b {
    color: var(--akpet-red);
    font-weight: 700;
}

.akpet-contact-input-wrapper,
.akpet-contact-textarea-wrapper {
    position: relative;
}

.akpet-contact-input-wrapper > span,
.akpet-contact-textarea-wrapper > span {
    position: absolute;
    left: 15px;
    z-index: 2;
    color: var(--akpet-primary);
    font-size: 15px;
    pointer-events: none;
}

.akpet-contact-input-wrapper > span {
    top: 50%;
    transform: translateY(-50%);
}

.akpet-contact-textarea-wrapper > span {
    top: 16px;
}

.akpet-contact-input,
.akpet-contact-textarea {
    width: 100%;
    border: 1px solid var(--akpet-border);
    border-radius: 15px;
    background: var(--akpet-light);
    color: var(--akpet-title);
    font-family: inherit;
    font-size: 12px;
    outline: none;
    transition:
        border-color .2s ease,
        background-color .2s ease,
        box-shadow .2s ease;
}

.akpet-contact-input {
    height: 52px;
    padding: 0 15px 0 45px;
}

.akpet-contact-textarea {
    min-height: 155px;
    padding: 15px 15px 15px 45px;
    resize: vertical;
}

.akpet-contact-input::placeholder,
.akpet-contact-textarea::placeholder {
    color: rgba(71, 71, 86, .55);
}

.akpet-contact-input:focus,
.akpet-contact-textarea:focus {
    border-color: rgba(60, 42, 150, .45);
    background: var(--akpet-white);
    box-shadow: 0 0 0 4px rgba(60, 42, 150, .06);
}

/* Uyarılar */

.akpet-contact-alert {
    padding: 15px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 11px;
}

.akpet-contact-alert + .akpet-contact-alert {
    margin-top: 10px;
}

.akpet-contact-alert > span {
    width: 37px;
    height: 37px;
    flex: 0 0 37px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.akpet-contact-alert strong,
.akpet-contact-alert p {
    display: block;
}

.akpet-contact-alert strong {
    font-size: 11px;
    font-weight: 700;
}

.akpet-contact-alert p {
    margin: 3px 0 0;
    font-size: 10px;
    line-height: 1.55;
}

.akpet-contact-alert-danger {
    border: 1px solid rgba(210, 45, 45, .18);
    background: rgba(210, 45, 45, .07);
    color: #9b2525;
}

.akpet-contact-alert-danger > span {
    background: rgba(210, 45, 45, .1);
    color: #c62c2c;
}

.akpet-contact-alert-success {
    border: 1px solid rgba(27, 145, 89, .18);
    background: rgba(27, 145, 89, .07);
    color: #146c45;
}

.akpet-contact-alert-success > span {
    background: rgba(27, 145, 89, .1);
    color: #148652;
}

/* Form alt alanı */

.akpet-contact-form-footer {
    padding-top: 22px;
    border-top: 1px solid var(--akpet-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.akpet-contact-form-footer > p {
    max-width: 410px;
    margin: 0;
    color: var(--akpet-text);
    font-size: 10px;
    line-height: 1.65;
}

.akpet-contact-submit {
    min-width: 170px;
    flex: 0 0 auto;
}

.akpet-contact-submit-loading {
    opacity: .7;
}

.akpet-contact-submit-loading i {
    animation: akpetContactSubmitSpin .8s linear infinite;
}

@keyframes akpetContactSubmitSpin {
    to {
        transform: rotate(360deg);
    }
}

/* =========================================================
   İLETİŞİM ALT ALANI
   ========================================================= */

.akpet-contact-final-section {
    padding: 0 0 95px;
    background: var(--akpet-white);
}

.akpet-contact-final-box {
    position: relative;
    padding: 42px;
    border-radius: 30px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 84% 18%,
            rgba(239, 61, 39, .28),
            transparent 31%
        ),
        linear-gradient(
            135deg,
            var(--akpet-primary),
            var(--akpet-dark)
        );
    color: var(--akpet-white);
    box-shadow: var(--akpet-shadow);
}

.akpet-contact-final-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    pointer-events: none;
}

.akpet-contact-final-orbit-one {
    right: -135px;
    bottom: -175px;
    width: 415px;
    height: 415px;
}

.akpet-contact-final-orbit-two {
    right: -45px;
    bottom: -85px;
    width: 240px;
    height: 240px;
}

.akpet-contact-final-box h2 {
    max-width: 720px;
    margin: 8px 0 13px;
    color: var(--akpet-white);
    font-size: clamp(29px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.akpet-contact-final-box p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, .65);
    font-size: 12px;
    line-height: 1.75;
}

@media (max-width: 1199px) {
    .akpet-contact-map-wrapper,
    .akpet-contact-map,
    .akpet-contact-information {
        min-height: 550px;
    }
}

@media (max-width: 991px) {
    .akpet-contact-map-wrapper,
    .akpet-contact-map {
        min-height: 470px;
    }

    .akpet-contact-information {
        min-height: auto;
    }

    .akpet-contact-form-intro {
        position: static;
        top: auto;
    }

    .akpet-contact-form-card {
        padding: 30px;
    }

    .akpet-contact-final-box {
        padding: 34px;
    }
}

@media (max-width: 767px) {
    .akpet-contact-map-wrapper {
        min-height: 420px;
        border-radius: 22px;
    }

    .akpet-contact-map {
        min-height: 420px;
    }

    .akpet-contact-map-label {
        right: 15px;
        bottom: 15px;
        left: 15px;
        max-width: none;
    }

    .akpet-contact-information {
        padding: 23px;
        border-radius: 22px;
    }

    .akpet-contact-form-card {
        padding: 24px 19px;
        border-radius: 22px;
    }

    .akpet-contact-form-card-header {
        align-items: flex-start;
    }

    .akpet-contact-form-card-header h2 {
        font-size: 20px;
    }

    .akpet-contact-form-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .akpet-contact-submit {
        width: 100%;
    }

    .akpet-contact-final-section {
        padding-bottom: 70px;
    }

    .akpet-contact-final-box {
        padding: 27px 22px;
    }

    .akpet-contact-final-box .akpet-button {
        width: 100%;
    }
}


/* =========================================================
   REFERANSLAR SAYFASI
   ========================================================= */

.akpet-references-section {
    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(98, 120, 202, .08),
            transparent 27%
        ),
        var(--akpet-light);
}

.akpet-reference-card {
    height: 100%;
    border: 1px solid var(--akpet-border);
    border-radius: 24px;
    overflow: hidden;
    background: var(--akpet-white);
    box-shadow: 0 12px 35px rgba(29, 22, 82, .04);
    transition:
        transform .28s ease,
        border-color .28s ease,
        box-shadow .28s ease;
}

.akpet-reference-card:hover {
    border-color: rgba(60, 42, 150, .23);
    box-shadow: var(--akpet-shadow-soft);
    transform: translateY(-6px);
}

.akpet-reference-logo {
    position: relative;
    height: 220px;
    padding: 32px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(
            circle at 86% 10%,
            rgba(239, 61, 39, .09),
            transparent 30%
        ),
        var(--akpet-white);
}

.akpet-reference-logo::after {
    content: "";
    position: absolute;
    right: -75px;
    bottom: -95px;
    width: 210px;
    height: 210px;
    border: 1px solid rgba(60, 42, 150, .06);
    border-radius: 50%;
    pointer-events: none;
    box-shadow:
        0 0 0 30px rgba(60, 42, 150, .02),
        0 0 0 60px rgba(60, 42, 150, .01);
}

.akpet-reference-logo img {
    position: relative;
    z-index: 2;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 120px;
    display: block;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .72;
    transition:
        filter .3s ease,
        opacity .3s ease,
        transform .3s ease;
}

.akpet-reference-card:hover .akpet-reference-logo img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.04);
}

.akpet-reference-logo-fallback {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(60, 42, 150, .1);
    font-size: 55px;
}

.akpet-reference-content {
    padding: 21px;
    border-top: 1px solid var(--akpet-border);
}

.akpet-reference-label {
    min-height: 27px;
    padding: 0 10px;
    margin-bottom: 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: rgba(239, 61, 39, .09);
    color: var(--akpet-red);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.akpet-reference-content h2 {
    min-height: 48px;
    margin: 0;
    color: var(--akpet-title);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
}

.akpet-reference-footer {
    padding-top: 15px;
    margin-top: 17px;
    border-top: 1px solid var(--akpet-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.akpet-reference-footer span {
    color: var(--akpet-text);
    font-size: 9px;
    font-weight: 600;
}

.akpet-reference-footer i {
    color: var(--akpet-primary);
    font-size: 15px;
}

/* =========================================================
   REFERANSLAR DEĞERLER ALANI
   ========================================================= */

.akpet-reference-values-section {
    background: var(--akpet-white);
}

.akpet-reference-value-card {
    position: relative;
    min-height: 285px;
    height: 100%;
    padding: 26px;
    border: 1px solid var(--akpet-border);
    border-radius: 24px;
    overflow: hidden;
    background: var(--akpet-light);
    transition:
        transform .25s ease,
        border-color .25s ease,
        background-color .25s ease,
        box-shadow .25s ease;
}

.akpet-reference-value-card::after {
    content: "";
    position: absolute;
    right: -75px;
    bottom: -90px;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(60, 42, 150, .07);
    border-radius: 50%;
    box-shadow:
        0 0 0 30px rgba(60, 42, 150, .025),
        0 0 0 60px rgba(60, 42, 150, .012);
}

.akpet-reference-value-card:hover {
    border-color: rgba(60, 42, 150, .23);
    background: var(--akpet-white);
    box-shadow: var(--akpet-shadow-soft);
    transform: translateY(-5px);
}

.akpet-reference-value-top {
    position: relative;
    z-index: 2;
    margin-bottom: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.akpet-reference-value-icon {
    width: 58px;
    height: 58px;
    border-radius: 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            rgba(60, 42, 150, .11),
            rgba(239, 61, 39, .1)
        );
    color: var(--akpet-primary);
    font-size: 22px;
}

.akpet-reference-value-top small {
    color: rgba(23, 22, 37, .14);
    font-size: 24px;
    font-weight: 700;
}

.akpet-reference-value-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 10px;
    color: var(--akpet-title);
    font-size: 19px;
    font-weight: 700;
}

.akpet-reference-value-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: var(--akpet-text);
    font-size: 12px;
    line-height: 1.75;
}

/* =========================================================
   REFERANSLAR ALT İLETİŞİM ALANI
   ========================================================= */

.akpet-reference-contact-section {
    padding: 0 0 95px;
    background: var(--akpet-white);
}

.akpet-reference-contact-box {
    position: relative;
    padding: 42px;
    border-radius: 30px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 84% 18%,
            rgba(239, 61, 39, .28),
            transparent 31%
        ),
        linear-gradient(
            135deg,
            var(--akpet-primary),
            var(--akpet-dark)
        );
    color: var(--akpet-white);
    box-shadow: var(--akpet-shadow);
}

.akpet-reference-contact-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    pointer-events: none;
}

.akpet-reference-contact-orbit-one {
    right: -135px;
    bottom: -175px;
    width: 415px;
    height: 415px;
}

.akpet-reference-contact-orbit-two {
    right: -45px;
    bottom: -85px;
    width: 240px;
    height: 240px;
}

.akpet-reference-contact-box h2 {
    max-width: 720px;
    margin: 8px 0 13px;
    color: var(--akpet-white);
    font-size: clamp(29px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.akpet-reference-contact-box p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, .66);
    font-size: 12px;
    line-height: 1.75;
}

.akpet-reference-contact-actions {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
}

.akpet-reference-contact-link {
    min-height: 50px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: rgba(255, 255, 255, .08);
    color: var(--akpet-white);
    font-size: 11px;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.akpet-reference-contact-link:hover {
    border-color: rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .14);
    color: var(--akpet-white);
}

@media (max-width: 991px) {
    .akpet-reference-logo {
        height: 205px;
    }

    .akpet-reference-contact-box {
        padding: 34px;
    }

    .akpet-reference-contact-actions {
        max-width: 330px;
    }
}

@media (max-width: 767px) {
    .akpet-reference-card {
        border-radius: 22px;
    }

    .akpet-reference-logo {
        height: 200px;
        padding: 27px;
    }

    .akpet-reference-content {
        padding: 19px;
    }

    .akpet-reference-value-card {
        min-height: 250px;
    }

    .akpet-reference-contact-section {
        padding-bottom: 70px;
    }

    .akpet-reference-contact-box {
        padding: 27px 22px;
    }

    .akpet-reference-contact-actions {
        max-width: none;
    }

    .akpet-reference-contact-actions .akpet-button,
    .akpet-reference-contact-link {
        width: 100%;
    }
}


/* =========================================================
   TEKLİF AL SAYFASI
   ========================================================= */

.akpet-offer-section {
    background:
        radial-gradient(
            circle at 7% 10%,
            rgba(98, 120, 202, .08),
            transparent 27%
        ),
        var(--akpet-light);
}

.akpet-offer-intro {
    position: sticky;
    top: 120px;
}

.akpet-offer-intro-text {
    margin: 24px 0 27px;
    color: var(--akpet-text);
    font-size: 13px;
    line-height: 1.8;
}

.akpet-offer-steps {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.akpet-offer-step {
    padding: 15px;
    border: 1px solid var(--akpet-border);
    border-radius: 18px;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    background: var(--akpet-white);
}

.akpet-offer-step-number {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            rgba(60, 42, 150, .11),
            rgba(239, 61, 39, .1)
        );
    color: var(--akpet-primary);
    font-size: 11px;
    font-weight: 700;
}

.akpet-offer-step strong {
    display: block;
    color: var(--akpet-title);
    font-size: 12px;
    font-weight: 700;
}

.akpet-offer-step p {
    margin: 4px 0 0;
    color: var(--akpet-text);
    font-size: 10px;
    line-height: 1.65;
}

.akpet-offer-products {
    padding: 17px;
    margin-top: 17px;
    border: 1px solid rgba(60, 42, 150, .12);
    border-radius: 19px;
    display: flex;
    align-items: center;
    gap: 13px;
    background: rgba(60, 42, 150, .05);
}

.akpet-offer-products-icon {
    width: 47px;
    height: 47px;
    flex: 0 0 47px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--akpet-primary);
    color: var(--akpet-white);
    font-size: 19px;
}

.akpet-offer-products small,
.akpet-offer-products strong {
    display: block;
}

.akpet-offer-products small {
    color: var(--akpet-red);
    font-size: 9px;
    font-weight: 700;
}

.akpet-offer-products strong {
    margin-top: 4px;
    color: var(--akpet-title);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.5;
}

.akpet-offer-contact-note {
    padding: 19px;
    margin-top: 17px;
    border-radius: 21px;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    background:
        radial-gradient(
            circle at 88% 10%,
            rgba(239, 61, 39, .23),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--akpet-primary),
            var(--akpet-dark)
        );
    color: var(--akpet-white);
}

.akpet-offer-contact-note > span {
    width: 47px;
    height: 47px;
    flex: 0 0 47px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .1);
    color: var(--akpet-red-light);
    font-size: 19px;
}

.akpet-offer-contact-note small,
.akpet-offer-contact-note strong {
    display: block;
}

.akpet-offer-contact-note small {
    color: rgba(255, 255, 255, .47);
    font-size: 9px;
}

.akpet-offer-contact-note strong {
    margin-top: 4px;
    color: var(--akpet-white);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.5;
}

.akpet-offer-contact-note a {
    margin-top: 9px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--akpet-red-light);
    font-size: 9px;
    font-weight: 700;
}

.akpet-offer-contact-note a:hover {
    gap: 10px;
    color: var(--akpet-white);
}

/* =========================================================
   TEKLİF FORMU
   ========================================================= */

.akpet-offer-form-card {
    padding: 35px;
    border: 1px solid var(--akpet-border);
    border-radius: 28px;
    background:
        radial-gradient(
            circle at 96% 4%,
            rgba(98, 120, 202, .07),
            transparent 27%
        ),
        var(--akpet-white);
    box-shadow: var(--akpet-shadow-soft);
}

.akpet-offer-form-header {
    padding-bottom: 24px;
    margin-bottom: 27px;
    border-bottom: 1px solid var(--akpet-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.akpet-offer-form-header small {
    display: block;
    color: var(--akpet-red);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.akpet-offer-form-header h2 {
    margin: 5px 0 4px;
    color: var(--akpet-title);
    font-size: 23px;
    font-weight: 700;
    line-height: 1.3;
}

.akpet-offer-form-header p {
    margin: 0;
    color: var(--akpet-text);
    font-size: 10px;
}

.akpet-offer-form-header-icon {
    width: 51px;
    height: 51px;
    flex: 0 0 51px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            rgba(60, 42, 150, .11),
            rgba(239, 61, 39, .1)
        );
    color: var(--akpet-primary);
    font-size: 21px;
}

.akpet-offer-form-group label {
    margin-bottom: 8px;
    display: block;
    color: var(--akpet-title);
    font-size: 10px;
    font-weight: 700;
}

.akpet-offer-form-group label b {
    color: var(--akpet-red);
    font-weight: 700;
}

.akpet-offer-input-wrapper,
.akpet-offer-textarea-wrapper {
    position: relative;
}

.akpet-offer-input-wrapper > span,
.akpet-offer-textarea-wrapper > span {
    position: absolute;
    left: 15px;
    z-index: 2;
    color: var(--akpet-primary);
    font-size: 15px;
    pointer-events: none;
}

.akpet-offer-input-wrapper > span {
    top: 50%;
    transform: translateY(-50%);
}

.akpet-offer-textarea-wrapper > span {
    top: 16px;
}

.akpet-offer-input,
.akpet-offer-textarea {
    width: 100%;
    border: 1px solid var(--akpet-border);
    border-radius: 15px;
    background: var(--akpet-light);
    color: var(--akpet-title);
    font-family: inherit;
    font-size: 12px;
    outline: none;
    transition:
        border-color .2s ease,
        background-color .2s ease,
        box-shadow .2s ease;
}

.akpet-offer-input {
    height: 52px;
    padding: 0 15px 0 45px;
}

.akpet-offer-textarea {
    min-height: 165px;
    padding: 15px 15px 15px 45px;
    resize: vertical;
}

.akpet-offer-input::placeholder,
.akpet-offer-textarea::placeholder {
    color: rgba(71, 71, 86, .55);
}

.akpet-offer-input:focus,
.akpet-offer-textarea:focus {
    border-color: rgba(60, 42, 150, .45);
    background: var(--akpet-white);
    box-shadow: 0 0 0 4px rgba(60, 42, 150, .06);
}

/* Uyarı mesajları */

.akpet-offer-alert {
    padding: 15px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 11px;
}

.akpet-offer-alert + .akpet-offer-alert {
    margin-top: 10px;
}

.akpet-offer-alert > span {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.akpet-offer-alert strong {
    display: block;
    font-size: 11px;
    font-weight: 700;
}

.akpet-offer-alert p {
    margin: 3px 0 0;
    font-size: 10px;
    line-height: 1.6;
}

.akpet-offer-alert-danger {
    border: 1px solid rgba(210, 45, 45, .18);
    background: rgba(210, 45, 45, .07);
    color: #9b2525;
}

.akpet-offer-alert-danger > span {
    background: rgba(210, 45, 45, .1);
    color: #c62c2c;
}

.akpet-offer-alert-success {
    border: 1px solid rgba(27, 145, 89, .18);
    background: rgba(27, 145, 89, .07);
    color: #146c45;
}

.akpet-offer-alert-success > span {
    background: rgba(27, 145, 89, .1);
    color: #148652;
}

/* Form alt alanı */

.akpet-offer-form-footer {
    padding-top: 23px;
    border-top: 1px solid var(--akpet-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.akpet-offer-privacy {
    max-width: 430px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.akpet-offer-privacy > span {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(60, 42, 150, .08);
    color: var(--akpet-primary);
    font-size: 14px;
}

.akpet-offer-privacy p {
    margin: 2px 0 0;
    color: var(--akpet-text);
    font-size: 9px;
    line-height: 1.65;
}

.akpet-offer-privacy a {
    color: var(--akpet-primary);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.akpet-offer-privacy a:hover {
    color: var(--akpet-red);
}

.akpet-offer-submit {
    min-width: 205px;
    flex: 0 0 auto;
}

.akpet-offer-submit-loading {
    opacity: .7;
}

.akpet-offer-submit-loading i {
    animation: akpetOfferSubmitSpin .8s linear infinite;
}

@keyframes akpetOfferSubmitSpin {
    to {
        transform: rotate(360deg);
    }
}

/* =========================================================
   TEKLİF AVANTAJLARI
   ========================================================= */

.akpet-offer-advantages-section {
    background: var(--akpet-white);
}

.akpet-offer-advantage-card {
    position: relative;
    min-height: 285px;
    height: 100%;
    padding: 26px;
    border: 1px solid var(--akpet-border);
    border-radius: 24px;
    overflow: hidden;
    background: var(--akpet-light);
    transition:
        transform .25s ease,
        border-color .25s ease,
        background-color .25s ease,
        box-shadow .25s ease;
}

.akpet-offer-advantage-card::after {
    content: "";
    position: absolute;
    right: -75px;
    bottom: -90px;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(60, 42, 150, .07);
    border-radius: 50%;
    box-shadow:
        0 0 0 30px rgba(60, 42, 150, .025),
        0 0 0 60px rgba(60, 42, 150, .012);
}

.akpet-offer-advantage-card:hover {
    border-color: rgba(60, 42, 150, .23);
    background: var(--akpet-white);
    box-shadow: var(--akpet-shadow-soft);
    transform: translateY(-5px);
}

.akpet-offer-advantage-top {
    position: relative;
    z-index: 2;
    margin-bottom: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.akpet-offer-advantage-top > span {
    width: 58px;
    height: 58px;
    border-radius: 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            rgba(60, 42, 150, .11),
            rgba(239, 61, 39, .1)
        );
    color: var(--akpet-primary);
    font-size: 22px;
}

.akpet-offer-advantage-top small {
    color: rgba(23, 22, 37, .14);
    font-size: 24px;
    font-weight: 700;
}

.akpet-offer-advantage-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 10px;
    color: var(--akpet-title);
    font-size: 19px;
    font-weight: 700;
}

.akpet-offer-advantage-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: var(--akpet-text);
    font-size: 12px;
    line-height: 1.75;
}

/* =========================================================
   TEKLİF ALT İLETİŞİM ALANI
   ========================================================= */

.akpet-offer-final-section {
    padding: 0 0 95px;
    background: var(--akpet-white);
}

.akpet-offer-final-box {
    position: relative;
    padding: 42px;
    border-radius: 30px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 84% 18%,
            rgba(239, 61, 39, .28),
            transparent 31%
        ),
        linear-gradient(
            135deg,
            var(--akpet-primary),
            var(--akpet-dark)
        );
    color: var(--akpet-white);
    box-shadow: var(--akpet-shadow);
}

.akpet-offer-final-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    pointer-events: none;
}

.akpet-offer-final-orbit-one {
    right: -135px;
    bottom: -175px;
    width: 415px;
    height: 415px;
}

.akpet-offer-final-orbit-two {
    right: -45px;
    bottom: -85px;
    width: 240px;
    height: 240px;
}

.akpet-offer-final-box h2 {
    max-width: 720px;
    margin: 8px 0 13px;
    color: var(--akpet-white);
    font-size: clamp(29px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.akpet-offer-final-box p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, .65);
    font-size: 12px;
    line-height: 1.75;
}

@media (max-width: 991px) {
    .akpet-offer-intro {
        position: static;
        top: auto;
    }

    .akpet-offer-form-card {
        padding: 30px;
    }

    .akpet-offer-final-box {
        padding: 34px;
    }
}

@media (max-width: 767px) {
    .akpet-offer-form-card {
        padding: 24px 19px;
        border-radius: 22px;
    }

    .akpet-offer-form-header {
        align-items: flex-start;
    }

    .akpet-offer-form-header h2 {
        font-size: 20px;
    }

    .akpet-offer-form-header-icon {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .akpet-offer-form-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .akpet-offer-submit {
        width: 100%;
        min-width: 0;
    }

    .akpet-offer-advantage-card {
        min-height: 250px;
    }

    .akpet-offer-final-section {
        padding-bottom: 70px;
    }

    .akpet-offer-final-box {
        padding: 27px 22px;
    }

    .akpet-offer-final-box .akpet-button {
        width: 100%;
    }
}


/* =========================================================
   TEMSİLCİLİKLER SAYFASI
   ========================================================= */

.akpet-agencies-section {
    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(98, 120, 202, .08),
            transparent 27%
        ),
        var(--akpet-light);
}

.akpet-agency-card {
    height: 100%;
    border: 1px solid var(--akpet-border);
    border-radius: 25px;
    overflow: hidden;
    background: var(--akpet-white);
    box-shadow: 0 12px 35px rgba(29, 22, 82, .04);
    transition:
        transform .28s ease,
        border-color .28s ease,
        box-shadow .28s ease;
}

.akpet-agency-card:hover {
    border-color: rgba(60, 42, 150, .23);
    box-shadow: var(--akpet-shadow-soft);
    transform: translateY(-6px);
}

.akpet-agency-logo {
    position: relative;
    height: 225px;
    padding: 35px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(239, 61, 39, .1),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #ffffff,
            #f5f5f9
        );
}

.akpet-agency-logo::before {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -95px;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(60, 42, 150, .07);
    border-radius: 50%;
    pointer-events: none;
    box-shadow:
        0 0 0 32px rgba(60, 42, 150, .02),
        0 0 0 64px rgba(60, 42, 150, .01);
}

.akpet-agency-logo img {
    position: relative;
    z-index: 2;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 125px;
    display: block;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .72;
    transition:
        filter .3s ease,
        opacity .3s ease,
        transform .3s ease;
}

.akpet-agency-card:hover .akpet-agency-logo img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.04);
}

.akpet-agency-logo-fallback {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(60, 42, 150, .1);
    font-size: 58px;
}

.akpet-agency-view-icon {
    position: absolute;
    top: 17px;
    right: 17px;
    z-index: 4;
    width: 43px;
    height: 43px;
    border: 1px solid rgba(60, 42, 150, .12);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .86);
    color: var(--akpet-primary);
    font-size: 14px;
    box-shadow: 0 10px 24px rgba(29, 22, 82, .08);
    backdrop-filter: blur(10px);
    transition:
        transform .25s ease,
        background-color .25s ease,
        color .25s ease;
}

.akpet-agency-card:hover .akpet-agency-view-icon {
    background: var(--akpet-red);
    color: var(--akpet-white);
    transform: rotate(45deg);
}

.akpet-agency-content {
    padding: 22px;
    border-top: 1px solid var(--akpet-border);
}

.akpet-agency-label {
    min-height: 27px;
    padding: 0 10px;
    margin-bottom: 11px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: rgba(239, 61, 39, .09);
    color: var(--akpet-red);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.akpet-agency-content h2 {
    margin: 0;
    color: var(--akpet-title);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.42;
}

.akpet-agency-content h2 a {
    color: var(--akpet-title);
}

.akpet-agency-content h2 a:hover {
    color: var(--akpet-primary);
}

.akpet-agency-content > p {
    min-height: 54px;
    margin: 9px 0 0;
    color: var(--akpet-text);
    font-size: 10px;
    line-height: 1.7;
}

.akpet-agency-footer {
    padding-top: 16px;
    margin-top: 18px;
    border-top: 1px solid var(--akpet-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.akpet-agency-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--akpet-primary);
    font-size: 10px;
    font-weight: 700;
}

.akpet-agency-link i {
    color: var(--akpet-red);
    transition: transform .25s ease;
}

.akpet-agency-link:hover {
    color: var(--akpet-red);
}

.akpet-agency-link:hover i {
    transform: translateX(4px);
}

.akpet-agency-verified {
    color: var(--akpet-primary);
    font-size: 16px;
}

/* =========================================================
   TEMSİLCİLİKLER YAKLAŞIM ALANI
   ========================================================= */

.akpet-agency-approach-section {
    background: var(--akpet-white);
}

.akpet-agency-feature-card {
    position: relative;
    min-height: 285px;
    height: 100%;
    padding: 26px;
    border: 1px solid var(--akpet-border);
    border-radius: 24px;
    overflow: hidden;
    background: var(--akpet-light);
    transition:
        transform .25s ease,
        border-color .25s ease,
        background-color .25s ease,
        box-shadow .25s ease;
}

.akpet-agency-feature-card::after {
    content: "";
    position: absolute;
    right: -75px;
    bottom: -90px;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(60, 42, 150, .07);
    border-radius: 50%;
    box-shadow:
        0 0 0 30px rgba(60, 42, 150, .025),
        0 0 0 60px rgba(60, 42, 150, .012);
}

.akpet-agency-feature-card:hover {
    border-color: rgba(60, 42, 150, .23);
    background: var(--akpet-white);
    box-shadow: var(--akpet-shadow-soft);
    transform: translateY(-5px);
}

.akpet-agency-feature-top {
    position: relative;
    z-index: 2;
    margin-bottom: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.akpet-agency-feature-top > span {
    width: 58px;
    height: 58px;
    border-radius: 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            rgba(60, 42, 150, .11),
            rgba(239, 61, 39, .1)
        );
    color: var(--akpet-primary);
    font-size: 22px;
}

.akpet-agency-feature-top small {
    color: rgba(23, 22, 37, .14);
    font-size: 24px;
    font-weight: 700;
}

.akpet-agency-feature-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 10px;
    color: var(--akpet-title);
    font-size: 19px;
    font-weight: 700;
}

.akpet-agency-feature-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: var(--akpet-text);
    font-size: 12px;
    line-height: 1.75;
}

/* =========================================================
   TEMSİLCİLİKLER ALT İLETİŞİM ALANI
   ========================================================= */

.akpet-agency-contact-section {
    padding: 0 0 95px;
    background: var(--akpet-white);
}

.akpet-agency-contact-box {
    position: relative;
    padding: 42px;
    border-radius: 30px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 84% 18%,
            rgba(239, 61, 39, .28),
            transparent 31%
        ),
        linear-gradient(
            135deg,
            var(--akpet-primary),
            var(--akpet-dark)
        );
    color: var(--akpet-white);
    box-shadow: var(--akpet-shadow);
}

.akpet-agency-contact-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    pointer-events: none;
}

.akpet-agency-contact-orbit-one {
    right: -135px;
    bottom: -175px;
    width: 415px;
    height: 415px;
}

.akpet-agency-contact-orbit-two {
    right: -45px;
    bottom: -85px;
    width: 240px;
    height: 240px;
}

.akpet-agency-contact-box h2 {
    max-width: 720px;
    margin: 8px 0 13px;
    color: var(--akpet-white);
    font-size: clamp(29px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.akpet-agency-contact-box p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, .66);
    font-size: 12px;
    line-height: 1.75;
}

.akpet-agency-contact-actions {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
}

.akpet-agency-contact-link {
    min-height: 50px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: rgba(255, 255, 255, .08);
    color: var(--akpet-white);
    font-size: 11px;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.akpet-agency-contact-link:hover {
    border-color: rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .14);
    color: var(--akpet-white);
}

@media (max-width: 991px) {
    .akpet-agency-logo {
        height: 210px;
    }

    .akpet-agency-contact-box {
        padding: 34px;
    }

    .akpet-agency-contact-actions {
        max-width: 330px;
    }
}

@media (max-width: 767px) {
    .akpet-agency-card {
        border-radius: 22px;
    }

    .akpet-agency-logo {
        height: 205px;
        padding: 28px;
    }

    .akpet-agency-content {
        padding: 19px;
    }

    .akpet-agency-content > p {
        min-height: auto;
    }

    .akpet-agency-feature-card {
        min-height: 250px;
    }

    .akpet-agency-contact-section {
        padding-bottom: 70px;
    }

    .akpet-agency-contact-box {
        padding: 27px 22px;
    }

    .akpet-agency-contact-actions {
        max-width: none;
    }

    .akpet-agency-contact-actions .akpet-button,
    .akpet-agency-contact-link {
        width: 100%;
    }
}


/* =========================================================
   TEMSİLCİLİK DETAY SAYFASI
   ========================================================= */

.akpet-agency-detail-section {
    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(98, 120, 202, .08),
            transparent 27%
        ),
        var(--akpet-light);
}

.akpet-agency-detail-sidebar {
    position: sticky;
    top: 120px;
}

.akpet-agency-detail-brand-card {
    padding: 24px;
    border: 1px solid var(--akpet-border);
    border-radius: 27px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 90% 5%,
            rgba(239, 61, 39, .09),
            transparent 29%
        ),
        var(--akpet-white);
    box-shadow: var(--akpet-shadow-soft);
}

.akpet-agency-detail-brand-label {
    min-height: 29px;
    padding: 0 11px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: rgba(239, 61, 39, .09);
    color: var(--akpet-red);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.akpet-agency-detail-logo {
    position: relative;
    min-height: 240px;
    padding: 35px;
    margin: 20px 0;
    border: 1px solid var(--akpet-border);
    border-radius: 21px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(60, 42, 150, .06),
            transparent 35%
        ),
        #ffffff;
}

.akpet-agency-detail-logo::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -100px;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(60, 42, 150, .06);
    border-radius: 50%;
    pointer-events: none;
    box-shadow:
        0 0 0 32px rgba(60, 42, 150, .02),
        0 0 0 64px rgba(60, 42, 150, .01);
}

.akpet-agency-detail-logo img {
    position: relative;
    z-index: 2;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 145px;
    display: block;
    object-fit: contain;
}

.akpet-agency-detail-logo-fallback {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(60, 42, 150, .09);
    font-size: 65px;
}

.akpet-agency-detail-brand-info {
    padding: 15px;
    border: 1px solid var(--akpet-border);
    border-radius: 17px;
    display: flex;
    align-items: center;
    gap: 11px;
    background: var(--akpet-light);
}

.akpet-agency-detail-verified {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(60, 42, 150, .09);
    color: var(--akpet-primary);
    font-size: 18px;
}

.akpet-agency-detail-brand-info small,
.akpet-agency-detail-brand-info strong {
    display: block;
}

.akpet-agency-detail-brand-info small {
    color: var(--akpet-red);
    font-size: 9px;
    font-weight: 700;
}

.akpet-agency-detail-brand-info strong {
    margin-top: 3px;
    color: var(--akpet-title);
    font-size: 11px;
    font-weight: 700;
}

.akpet-agency-detail-website {
    min-height: 49px;
    padding: 0 17px;
    margin-top: 15px;
    border: 1px solid rgba(60, 42, 150, .14);
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: rgba(60, 42, 150, .06);
    color: var(--akpet-primary);
    font-size: 10px;
    font-weight: 700;
}

.akpet-agency-detail-website:hover {
    border-color: var(--akpet-primary);
    background: var(--akpet-primary);
    color: var(--akpet-white);
}

.akpet-agency-detail-support {
    padding: 24px;
    margin-top: 19px;
    border-radius: 25px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 88% 12%,
            rgba(239, 61, 39, .27),
            transparent 31%
        ),
        linear-gradient(
            135deg,
            var(--akpet-primary),
            var(--akpet-dark)
        );
    color: var(--akpet-white);
    box-shadow: var(--akpet-shadow-soft);
}

.akpet-agency-detail-support-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 21px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .1);
    color: var(--akpet-red-light);
    font-size: 21px;
}

.akpet-agency-detail-support small {
    display: block;
    color: var(--akpet-red-light);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
}

.akpet-agency-detail-support h3 {
    margin: 7px 0 10px;
    color: var(--akpet-white);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
}

.akpet-agency-detail-support p {
    margin: 0 0 19px;
    color: rgba(255, 255, 255, .62);
    font-size: 11px;
    line-height: 1.7;
}

.akpet-agency-detail-support .akpet-button {
    width: 100%;
}

/* Marka içerik alanı */

.akpet-agency-detail-content-wrapper {
    padding: 38px;
    border: 1px solid var(--akpet-border);
    border-radius: 28px;
    background: var(--akpet-white);
    box-shadow: var(--akpet-shadow-soft);
}

.akpet-agency-detail-heading h2 {
    margin: 15px 0 0;
    color: var(--akpet-title);
    font-size: clamp(31px, 4vw, 45px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.07em;
}

.akpet-agency-detail-divider {
    margin: 28px 0 31px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.akpet-agency-detail-divider > span {
    height: 1px;
    flex: 1;
    background: var(--akpet-border);
}

.akpet-agency-detail-divider > i {
    width: 39px;
    height: 39px;
    flex: 0 0 39px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 61, 39, .09);
    color: var(--akpet-red);
    font-size: 15px;
}

/* Yönetim panelinden gelen açıklama */

.akpet-agency-detail-content {
    color: var(--akpet-text);
    font-size: 15px;
    line-height: 1.9;
    overflow-wrap: anywhere;
}

.akpet-agency-detail-content > *:first-child {
    margin-top: 0;
}

.akpet-agency-detail-content > *:last-child {
    margin-bottom: 0;
}

.akpet-agency-detail-content p {
    margin: 0 0 20px;
}

.akpet-agency-detail-content strong,
.akpet-agency-detail-content b {
    color: var(--akpet-title);
    font-weight: 700;
}

.akpet-agency-detail-content h1,
.akpet-agency-detail-content h2,
.akpet-agency-detail-content h3,
.akpet-agency-detail-content h4,
.akpet-agency-detail-content h5,
.akpet-agency-detail-content h6 {
    margin: 34px 0 15px;
    color: var(--akpet-title);
    font-weight: 700;
    line-height: 1.32;
    letter-spacing: -.02em;
}

.akpet-agency-detail-content h1 {
    font-size: 29px;
}

.akpet-agency-detail-content h2 {
    font-size: 26px;
}

.akpet-agency-detail-content h3 {
    font-size: 23px;
}

.akpet-agency-detail-content h4 {
    font-size: 20px;
}

.akpet-agency-detail-content h5,
.akpet-agency-detail-content h6 {
    font-size: 17px;
}

.akpet-agency-detail-content ul,
.akpet-agency-detail-content ol {
    padding: 0;
    margin: 0 0 22px;
    list-style: none;
    counter-reset: akpet-agency-detail-list;
}

.akpet-agency-detail-content ul li,
.akpet-agency-detail-content ol li {
    position: relative;
    min-height: 38px;
    padding: 6px 0 6px 38px;
    margin-bottom: 6px;
}

.akpet-agency-detail-content ul li::before {
    content: "\F26E";
    position: absolute;
    top: 6px;
    left: 0;
    width: 27px;
    height: 27px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 61, 39, .09);
    color: var(--akpet-red);
    font-family: bootstrap-icons !important;
    font-size: 12px;
}

.akpet-agency-detail-content ol li {
    counter-increment: akpet-agency-detail-list;
}

.akpet-agency-detail-content ol li::before {
    content: counter(akpet-agency-detail-list);
    position: absolute;
    top: 6px;
    left: 0;
    width: 27px;
    height: 27px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(60, 42, 150, .09);
    color: var(--akpet-primary);
    font-size: 10px;
    font-weight: 700;
}

.akpet-agency-detail-content img {
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 26px auto;
    border-radius: 20px;
    display: block;
}

.akpet-agency-detail-content blockquote {
    position: relative;
    padding: 24px 25px 24px 72px;
    margin: 29px 0;
    border: 0;
    border-radius: 20px;
    background:
        radial-gradient(
            circle at 95% 0%,
            rgba(239, 61, 39, .1),
            transparent 34%
        ),
        var(--akpet-light);
    color: var(--akpet-title);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.8;
}

.akpet-agency-detail-content blockquote::before {
    content: "\F6B0";
    position: absolute;
    top: 23px;
    left: 22px;
    width: 35px;
    height: 35px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--akpet-primary);
    color: var(--akpet-white);
    font-family: bootstrap-icons !important;
    font-size: 15px;
}

.akpet-agency-detail-content a {
    color: var(--akpet-primary);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(60, 42, 150, .25);
    text-underline-offset: 4px;
}

.akpet-agency-detail-content a:hover {
    color: var(--akpet-red);
    text-decoration-color: var(--akpet-red);
}

.akpet-agency-detail-content table {
    width: 100%;
    margin: 27px 0;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--akpet-border);
    border-radius: 17px;
    overflow: hidden;
    font-size: 12px;
}

.akpet-agency-detail-content th,
.akpet-agency-detail-content td {
    padding: 13px 14px;
    border-right: 1px solid var(--akpet-border);
    border-bottom: 1px solid var(--akpet-border);
    vertical-align: top;
    text-align: left;
}

.akpet-agency-detail-content th {
    background: var(--akpet-light);
    color: var(--akpet-title);
    font-weight: 700;
}

.akpet-agency-detail-content tr:last-child td {
    border-bottom: 0;
}

.akpet-agency-detail-content th:last-child,
.akpet-agency-detail-content td:last-child {
    border-right: 0;
}

.akpet-agency-detail-content iframe,
.akpet-agency-detail-content video {
    width: 100%;
    max-width: 100%;
    margin: 27px 0;
    border: 0;
    border-radius: 20px;
    aspect-ratio: 16 / 9;
}

/* Marka hizmetleri */

.akpet-agency-detail-services {
    padding-top: 29px;
    margin-top: 34px;
    border-top: 1px solid var(--akpet-border);
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.akpet-agency-detail-service-item {
    padding: 15px;
    border: 1px solid var(--akpet-border);
    border-radius: 17px;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    background: var(--akpet-light);
}

.akpet-agency-detail-service-item > span {
    width: 41px;
    height: 41px;
    flex: 0 0 41px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(60, 42, 150, .09);
    color: var(--akpet-primary);
    font-size: 16px;
}

.akpet-agency-detail-service-item strong {
    display: block;
    color: var(--akpet-title);
    font-size: 12px;
    font-weight: 700;
}

.akpet-agency-detail-service-item p {
    margin: 4px 0 0;
    color: var(--akpet-text);
    font-size: 10px;
    line-height: 1.65;
}

.akpet-agency-detail-actions {
    margin-top: 25px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* =========================================================
   MARKA ÜRÜN SEÇİM SÜRECİ
   ========================================================= */

.akpet-agency-detail-process-section {
    background: var(--akpet-white);
}

.akpet-agency-detail-process-card {
    position: relative;
    min-height: 275px;
    height: 100%;
    padding: 24px;
    border: 1px solid var(--akpet-border);
    border-radius: 23px;
    overflow: hidden;
    background: var(--akpet-light);
    transition:
        transform .25s ease,
        border-color .25s ease,
        background-color .25s ease,
        box-shadow .25s ease;
}

.akpet-agency-detail-process-card::after {
    content: "";
    position: absolute;
    right: -72px;
    bottom: -88px;
    width: 185px;
    height: 185px;
    border: 1px solid rgba(60, 42, 150, .07);
    border-radius: 50%;
    box-shadow:
        0 0 0 29px rgba(60, 42, 150, .025),
        0 0 0 58px rgba(60, 42, 150, .012);
}

.akpet-agency-detail-process-card:hover {
    border-color: rgba(60, 42, 150, .23);
    background: var(--akpet-white);
    box-shadow: var(--akpet-shadow-soft);
    transform: translateY(-5px);
}

.akpet-agency-detail-process-top {
    position: relative;
    z-index: 2;
    margin-bottom: 49px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.akpet-agency-detail-process-top > span {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            rgba(60, 42, 150, .11),
            rgba(239, 61, 39, .1)
        );
    color: var(--akpet-primary);
    font-size: 21px;
}

.akpet-agency-detail-process-top small {
    color: rgba(23, 22, 37, .14);
    font-size: 23px;
    font-weight: 700;
}

.akpet-agency-detail-process-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 10px;
    color: var(--akpet-title);
    font-size: 18px;
    font-weight: 700;
}

.akpet-agency-detail-process-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: var(--akpet-text);
    font-size: 11px;
    line-height: 1.75;
}

/* =========================================================
   MARKA DETAY ALT İLETİŞİM
   ========================================================= */

.akpet-agency-detail-final-section {
    padding: 0 0 95px;
    background: var(--akpet-white);
}

.akpet-agency-detail-final-box {
    position: relative;
    padding: 42px;
    border-radius: 30px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 84% 18%,
            rgba(239, 61, 39, .28),
            transparent 31%
        ),
        linear-gradient(
            135deg,
            var(--akpet-primary),
            var(--akpet-dark)
        );
    color: var(--akpet-white);
    box-shadow: var(--akpet-shadow);
}

.akpet-agency-detail-final-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    pointer-events: none;
}

.akpet-agency-detail-final-orbit-one {
    right: -135px;
    bottom: -175px;
    width: 415px;
    height: 415px;
}

.akpet-agency-detail-final-orbit-two {
    right: -45px;
    bottom: -85px;
    width: 240px;
    height: 240px;
}

.akpet-agency-detail-final-box h2 {
    max-width: 720px;
    margin: 8px 0 13px;
    color: var(--akpet-white);
    font-size: clamp(29px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.akpet-agency-detail-final-box p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, .66);
    font-size: 12px;
    line-height: 1.75;
}

.akpet-agency-detail-final-actions {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
}

.akpet-agency-detail-final-link {
    min-height: 50px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: rgba(255, 255, 255, .08);
    color: var(--akpet-white);
    font-size: 11px;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.akpet-agency-detail-final-link:hover {
    border-color: rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .14);
    color: var(--akpet-white);
}

@media (max-width: 1199px) {
    .akpet-agency-detail-sidebar {
        position: static;
        top: auto;
    }
}

@media (max-width: 991px) {
    .akpet-agency-detail-content-wrapper {
        padding: 31px;
    }

    .akpet-agency-detail-final-box {
        padding: 34px;
    }

    .akpet-agency-detail-final-actions {
        max-width: 330px;
    }
}

@media (max-width: 767px) {
    .akpet-agency-detail-brand-card {
        padding: 19px;
        border-radius: 22px;
    }

    .akpet-agency-detail-logo {
        min-height: 205px;
        padding: 28px;
    }

    .akpet-agency-detail-content-wrapper {
        padding: 24px 19px;
        border-radius: 22px;
    }

    .akpet-agency-detail-heading h2 {
        font-size: 29px;
    }

    .akpet-agency-detail-content {
        font-size: 14px;
        line-height: 1.85;
    }

    .akpet-agency-detail-content blockquote {
        padding: 66px 19px 21px;
        font-size: 14px;
    }

    .akpet-agency-detail-content blockquote::before {
        top: 19px;
        left: 19px;
    }

    .akpet-agency-detail-content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .akpet-agency-detail-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .akpet-agency-detail-actions .akpet-button {
        width: 100%;
    }

    .akpet-agency-detail-process-card {
        min-height: 245px;
    }

    .akpet-agency-detail-final-section {
        padding-bottom: 70px;
    }

    .akpet-agency-detail-final-box {
        padding: 27px 22px;
    }

    .akpet-agency-detail-final-actions {
        max-width: none;
    }

    .akpet-agency-detail-final-actions .akpet-button,
    .akpet-agency-detail-final-link {
        width: 100%;
    }
}

/* =========================================================
   ÜRÜNLER SAYFASI
   ========================================================= */

.akpet-product-categories-section {
    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(98, 120, 202, .08),
            transparent 27%
        ),
        var(--akpet-light);
}

/* =========================================================
   ANA KATEGORİ KARTLARI
   ========================================================= */

.akpet-product-category-card {
    height: 100%;
}

.akpet-product-category-image {
    position: relative;
    min-height: 390px;
    height: 100%;
    border-radius: 27px;
    display: block;
    overflow: hidden;
    background: var(--akpet-dark-soft);
    box-shadow: 0 16px 45px rgba(29, 22, 82, .1);
    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.akpet-product-category-image:hover {
    box-shadow: 0 24px 60px rgba(29, 22, 82, .17);
    transform: translateY(-7px);
}

.akpet-product-category-image > img {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .55s ease;
}

.akpet-product-category-image:hover > img {
    transform: scale(1.07);
}

.akpet-product-category-fallback {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .13);
    font-size: 80px;
}

.akpet-product-category-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background:
        radial-gradient(
            circle at 84% 13%,
            rgba(239, 61, 39, .22),
            transparent 31%
        ),
        linear-gradient(
            180deg,
            rgba(17, 16, 32, .05) 25%,
            rgba(17, 16, 32, .93) 100%
        );
}

.akpet-product-category-number {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 4;
    min-width: 46px;
    height: 46px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 16, 32, .65);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    backdrop-filter: blur(12px);
}

.akpet-product-category-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 4;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 16, 32, .48);
    color: #fff;
    font-size: 16px;
    backdrop-filter: blur(12px);
    transition:
        transform .25s ease,
        background-color .25s ease;
}

.akpet-product-category-image:hover .akpet-product-category-arrow {
    background: var(--akpet-red);
    transform: rotate(45deg);
}

.akpet-product-category-caption {
    position: absolute;
    right: 25px;
    bottom: 27px;
    left: 25px;
    z-index: 4;
}

.akpet-product-category-caption > small {
    min-height: 30px;
    padding: 0 11px;
    margin-bottom: 11px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: var(--akpet-red);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

.akpet-product-category-caption > strong {
    display: block;
    color: #fff;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -.02em;
}

.akpet-product-category-caption > span {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    font-weight: 600;
}

.akpet-product-category-caption > span i {
    color: var(--akpet-red-light);
    transition: transform .25s ease;
}

.akpet-product-category-image:hover
.akpet-product-category-caption > span i {
    transform: translateX(4px);
}

/* =========================================================
   ÜRÜN KATALOĞU
   ========================================================= */

.akpet-product-catalog-section {
    padding: 95px 0;
    background:
        radial-gradient(
            circle at 94% 8%,
            rgba(98, 120, 202, .07),
            transparent 25%
        ),
        var(--akpet-light);
}

.akpet-product-catalog-heading {
    padding-bottom: 35px;
    margin-bottom: 38px;
    border-bottom: 1px solid var(--akpet-border);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.akpet-product-catalog-heading > div {
    max-width: 760px;
}

.akpet-product-catalog-heading h2 {
    margin: 15px 0 0;
    color: var(--akpet-title);
    font-size: clamp(30px, 4vw, 45px);
    font-weight: 700;
    line-height: 1.13;
    letter-spacing: -.07em;
}

.akpet-product-catalog-heading > p {
    max-width: 390px;
    margin: 0;
    color: var(--akpet-text);
    font-size: 14px;
    line-height: 1.75;
}

/* =========================================================
   SOL FİLTRE ALANI
   ========================================================= */

.akpet-product-sidebar {
    position: sticky;
    top: 115px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.akpet-product-filter-card {
    padding: 21px;
    border: 1px solid var(--akpet-border);
    border-radius: 23px;
    background: var(--akpet-white);
    box-shadow: 0 10px 30px rgba(29, 22, 82, .04);
}

.akpet-product-filter-title {
    padding-bottom: 17px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--akpet-border);
    display: flex;
    align-items: center;
    gap: 11px;
}

.akpet-product-filter-title > span {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            rgba(60, 42, 150, .11),
            rgba(239, 61, 39, .1)
        );
    color: var(--akpet-primary);
    font-size: 17px;
}

.akpet-product-filter-title small,
.akpet-product-filter-title strong {
    display: block;
}

.akpet-product-filter-title small {
    color: var(--akpet-text);
    font-size: 11px;
}

.akpet-product-filter-title strong {
    margin-top: 2px;
    color: var(--akpet-title);
    font-size: 15px;
    font-weight: 700;
}

.akpet-product-search-wrapper {
    position: relative;
}

.akpet-product-search-wrapper > i {
    position: absolute;
    top: 50%;
    left: 15px;
    z-index: 2;
    color: var(--akpet-primary);
    font-size: 15px;
    transform: translateY(-50%);
    pointer-events: none;
}

.akpet-product-search-input {
    width: 100%;
    height: 50px;
    padding: 0 14px 0 43px;
    border: 1px solid var(--akpet-border);
    border-radius: 14px;
    background: var(--akpet-light);
    color: var(--akpet-title);
    font-family: inherit;
    font-size: 13px;
    outline: none;
    transition:
        border-color .2s ease,
        background-color .2s ease,
        box-shadow .2s ease;
}

.akpet-product-search-input::placeholder {
    color: rgba(71, 71, 86, .55);
}

.akpet-product-search-input:focus {
    border-color: rgba(60, 42, 150, .42);
    background: var(--akpet-white);
    box-shadow: 0 0 0 4px rgba(60, 42, 150, .06);
}

.akpet-product-search-button {
    width: 100%;
    height: 47px;
    padding: 0 18px;
    margin-top: 11px;
    border: 0;
    border-radius: 999px;
    background: var(--akpet-primary);
    color: #fff;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition:
        background-color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.akpet-product-search-button:hover {
    background: var(--akpet-red);
    box-shadow: 0 12px 25px rgba(239, 61, 39, .2);
    transform: translateY(-2px);
}

/* Marka listesi */

.akpet-product-brand-list,
.akpet-product-category-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.akpet-product-brand-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.akpet-product-brand-list li a {
    min-height: 45px;
    padding: 7px 8px 7px 13px;
    border: 1px solid transparent;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: var(--akpet-light);
    transition:
        border-color .2s ease,
        background-color .2s ease;
}

.akpet-product-brand-list li a:hover {
    border-color: rgba(60, 42, 150, .16);
    background: rgba(60, 42, 150, .06);
}

.akpet-product-brand-name {
    color: var(--akpet-title);
    font-size: 13px;
    font-weight: 600;
}

.akpet-product-brand-count {
    min-width: 31px;
    height: 31px;
    padding: 0 8px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--akpet-white);
    color: var(--akpet-primary);
    font-size: 11px;
    font-weight: 700;
}

/* Kategori listesi */

.akpet-product-category-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.akpet-product-category-list .kategori-baslik {
    display: flex;
    align-items: center;
    gap: 7px;
}

.akpet-product-category-list .kategori-baslik > a {
    min-height: 45px;
    padding: 0 13px;
    border: 1px solid transparent;
    border-radius: 13px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: var(--akpet-light);
    color: var(--akpet-title);
    font-size: 13px;
    font-weight: 600;
}

.akpet-product-category-list .kategori-baslik > a i {
    color: var(--akpet-red);
    font-size: 11px;
    transition: transform .2s ease;
}

.akpet-product-category-list .kategori-baslik > a:hover {
    border-color: rgba(60, 42, 150, .16);
    background: rgba(60, 42, 150, .06);
    color: var(--akpet-primary);
}

.akpet-product-category-list
.kategori-baslik > a:hover i {
    transform: translateX(3px);
}

.akpet-product-category-list .toggle-btn {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border: 1px solid var(--akpet-border);
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--akpet-white);
    color: var(--akpet-primary);
    font-size: 15px;
    cursor: pointer;
}

.akpet-product-category-list .toggle-btn:hover {
    border-color: var(--akpet-primary);
    background: var(--akpet-primary);
    color: #fff;
}

/* Sidebar destek kutusu */

.akpet-product-sidebar-support {
    padding: 23px;
    border-radius: 23px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 87% 10%,
            rgba(239, 61, 39, .26),
            transparent 31%
        ),
        linear-gradient(
            135deg,
            var(--akpet-primary),
            var(--akpet-dark)
        );
    color: #fff;
    box-shadow: var(--akpet-shadow-soft);
}

.akpet-product-sidebar-support > span {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .1);
    color: var(--akpet-red-light);
    font-size: 21px;
}

.akpet-product-sidebar-support > small {
    display: block;
    color: var(--akpet-red-light);
    font-size: 11px;
    font-weight: 700;
}

.akpet-product-sidebar-support > strong {
    margin-top: 6px;
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;    
    letter-spacing: -0.5px;
}

.akpet-product-sidebar-support > p {
    margin: 10px 0 18px;
    color: rgba(255, 255, 255, .63);
    font-size: 13px;
    line-height: 1.7;
}

.akpet-product-sidebar-support > a {
    min-height: 45px;
    padding: 0 15px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: var(--akpet-red);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.akpet-product-sidebar-support > a:hover {
    background: #fff;
    color: var(--akpet-primary);
}

/* =========================================================
   ÜRÜN SONUÇ ALANI
   ========================================================= */

.akpet-product-results {
    min-width: 0;
}

.akpet-product-brand-strip {
    padding: 21px;
    margin-bottom: 25px;
    border: 1px solid var(--akpet-border);
    border-radius: 23px;
    background: var(--akpet-white);
    box-shadow: 0 10px 30px rgba(29, 22, 82, .04);
}

.akpet-product-brand-strip-heading {
    padding-bottom: 17px;
    margin-bottom: 17px;
    border-bottom: 1px solid var(--akpet-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.akpet-product-brand-strip-heading small,
.akpet-product-brand-strip-heading strong {
    display: block;
}

.akpet-product-brand-strip-heading small {
    color: var(--akpet-red);
    font-size: 11px;
    font-weight: 700;
}

.akpet-product-brand-strip-heading strong {
    margin-top: 3px;
    color: var(--akpet-title);
    font-size: 15px;
    font-weight: 700;
}

.akpet-product-brand-strip-heading > i {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(60, 42, 150, .08);
    color: var(--akpet-primary);
}

.akpet-product-brand-logos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.akpet-product-brand-logo {
    position: relative;
    width: 128px;
    height: 70px;
    padding: 11px;
    border: 1px solid var(--akpet-border);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}

.akpet-product-brand-logo:hover {
    border-color: rgba(60, 42, 150, .3);
    box-shadow: 0 10px 24px rgba(29, 22, 82, .08);
    transform: translateY(-3px);
}

.akpet-product-brand-logo img {
    position: relative;
    z-index: 2;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 44px;
    display: block;
    object-fit: contain;
    transition:
        filter .2s ease,
        opacity .2s ease;
}

.akpet-product-brand-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.akpet-product-brand-logo-fallback {
    position: absolute;
    inset: 0;
    z-index: 1;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--akpet-text);
    font-size: 11px;
    font-weight: 700;
    text-align: center;
}

/* =========================================================
   DİNAMİK ÜRÜN LİSTESİ
   ========================================================= */

#urunListesi.akpet-product-list {
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    list-style: none;
}

#urunListesi .grid-sizer {
    width: 0;
    height: 0;
    margin: 0;
    display: none;
}

.akpet-product-item {
    width: calc(33.333% - 15px);
    margin: 0;
}

.akpet-product-card {
    border: 1px solid var(--akpet-border);
    border-radius: 23px;
    overflow: hidden;
    background: var(--akpet-white);
    box-shadow: 0 10px 30px rgba(29, 22, 82, .04);
    transition:
        transform .28s ease,
        border-color .28s ease,
        box-shadow .28s ease;
}

.akpet-product-card:hover {
    border-color: rgba(60, 42, 150, .23);
    box-shadow: var(--akpet-shadow-soft);
    transform: translateY(-6px);
}

.akpet-product-card-image {
    position: relative;
    height: 285px;
    display: block;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 82% 15%,
            rgba(239, 61, 39, .08),
            transparent 31%
        ),
        #fff;
}

.akpet-product-card-image > img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 18px;
    display: block;
    object-fit: contain;
    transition: transform .45s ease;
}

.akpet-product-card:hover
.akpet-product-card-image > img {
    transform: scale(1.05);
}

.akpet-product-card-fallback {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(60, 42, 150, .09);
    font-size: 62px;
}

.akpet-product-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            transparent 60%,
            rgba(17, 16, 32, .06)
        );
}

.akpet-product-card-arrow {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 4;
    width: 42px;
    height: 42px;
    border: 1px solid var(--akpet-border);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .9);
    color: var(--akpet-primary);
    font-size: 14px;
    box-shadow: 0 8px 20px rgba(29, 22, 82, .07);
    transition:
        transform .25s ease,
        background-color .25s ease,
        color .25s ease;
}

.akpet-product-card:hover .akpet-product-card-arrow {
    background: var(--akpet-red);
    color: #fff;
    transform: rotate(45deg);
}

.akpet-product-card-code {
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 4;
    min-height: 32px;
    padding: 0 11px;
    border: 1px solid rgba(60, 42, 150, .12);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .93);
    color: var(--akpet-title);
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(29, 22, 82, .06);
}

.akpet-product-card-code i {
    color: var(--akpet-red);
}

.akpet-product-card-content {
    padding: 21px;
    border-top: 1px solid var(--akpet-border);
}

.akpet-product-card-label {
    min-height: 27px;
    padding: 0 10px;
    margin-bottom: 11px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: rgba(239, 61, 39, .09);
    color: var(--akpet-red);
    font-size: 10px;
    font-weight: 700;
}

.akpet-product-card-content h3 {
    margin: 0;
    color: var(--akpet-title);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -0.5px;
}

.akpet-product-card-content h3 a {
    color: var(--akpet-title);
}

.akpet-product-card-content h3 a:hover {
    color: var(--akpet-primary);
}

.akpet-product-card-footer {
    padding-top: 17px;
    margin-top: 18px;
    border-top: 1px solid var(--akpet-border);
}

.akpet-product-card-footer a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--akpet-primary);
    font-size: 12px;
    font-weight: 700;
}

.akpet-product-card-footer a i {
    color: var(--akpet-red);
    transition: transform .2s ease;
}

.akpet-product-card-footer a:hover {
    color: var(--akpet-red);
}

.akpet-product-card-footer a:hover i {
    transform: translateX(4px);
}

/* =========================================================
   YÜKLEME VE DURUM MESAJLARI
   ========================================================= */

.akpet-product-loading {
    min-height: 85px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    color: var(--akpet-text);
    font-size: 13px;
    font-weight: 600;
}

.akpet-product-loading-spinner {
    width: 27px;
    height: 27px;
    border: 3px solid rgba(60, 42, 150, .12);
    border-top-color: var(--akpet-primary);
    border-radius: 50%;
    animation: akpetProductSpin .7s linear infinite;
}

@keyframes akpetProductSpin {
    to {
        transform: rotate(360deg);
    }
}

.akpet-product-message {
    min-height: 120px;
    padding: 23px;
    margin-top: 24px;
    border: 1px solid var(--akpet-border);
    border-radius: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: var(--akpet-white);
    text-align: left;
}

.akpet-product-message > span {
    width: 49px;
    height: 49px;
    flex: 0 0 49px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(60, 42, 150, .08);
    color: var(--akpet-primary);
    font-size: 20px;
}

.akpet-product-message strong {
    display: block;
    color: var(--akpet-title);
    font-size: 15px;
    font-weight: 700;
}

.akpet-product-message p {
    margin: 4px 0 0;
    color: var(--akpet-text);
    font-size: 13px;
    line-height: 1.65;
}

.akpet-product-message-warning {
    border-color: rgba(210, 145, 35, .2);
    background: rgba(210, 145, 35, .06);
}

.akpet-product-message-warning > span {
    background: rgba(210, 145, 35, .1);
    color: #b57616;
}

.akpet-product-message-danger {
    border-color: rgba(210, 45, 45, .18);
    background: rgba(210, 45, 45, .06);
}

.akpet-product-message-danger > span {
    background: rgba(210, 45, 45, .1);
    color: #c62c2c;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1199px) {
    .akpet-product-item {
        width: calc(50% - 11px);
    }

    .akpet-product-category-image {
        min-height: 360px;
    }

    .akpet-product-card-image {
        height: 275px;
    }
}

@media (max-width: 991px) {
    .akpet-product-catalog-section {
        padding: 80px 0;
    }

    .akpet-product-catalog-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .akpet-product-catalog-heading > p {
        max-width: 650px;
    }

    .akpet-product-sidebar {
        position: static;
        top: auto;
    }

    .akpet-product-sidebar-support {
        margin-bottom: 5px;
    }

    .akpet-product-brand-logos {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 5px;
        scrollbar-width: thin;
    }

    .akpet-product-brand-logo {
        flex: 0 0 128px;
    }
}

@media (max-width: 767px) {
    .akpet-product-categories-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .akpet-product-category-image {
        min-height: 340px;
        border-radius: 22px;
    }

    .akpet-product-category-caption {
        right: 20px;
        bottom: 22px;
        left: 20px;
    }

    .akpet-product-category-caption > strong {
        font-size: 22px;
    }

    .akpet-product-catalog-section {
        padding: 70px 0;
    }

    .akpet-product-catalog-heading {
        padding-bottom: 27px;
        margin-bottom: 29px;
    }

    .akpet-product-filter-card,
    .akpet-product-brand-strip {
        padding: 18px;
        border-radius: 20px;
    }

    #urunListesi.akpet-product-list {
        gap: 18px;
    }

    .akpet-product-item {
        width: 100%;
    }

    .akpet-product-card {
        border-radius: 21px;
    }

    .akpet-product-card-image {
        height: 310px;
    }

    .akpet-product-card-content {
        padding: 19px;
    }

    .akpet-product-card-content h3 {
        min-height: auto;
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .akpet-product-category-image {
        min-height: 315px;
    }

    .akpet-product-card-image {
        height: 270px;
    }

    .akpet-product-brand-logo {
        width: 112px;
        flex-basis: 112px;
    }

    .akpet-product-message {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* =========================================================
   ÜRÜN DETAY SAYFASI
   ========================================================= */

.akpet-product-detail-section {
    position: relative;
    padding: 95px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 7% 10%,
            rgba(98, 120, 202, .08),
            transparent 26%
        ),
        radial-gradient(
            circle at 94% 20%,
            rgba(239, 61, 39, .05),
            transparent 23%
        ),
        var(--akpet-light);
}

/* =========================================================
   ÜRÜN GALERİSİ
   ========================================================= */

.akpet-product-gallery-card {
    padding: 24px;
    border: 1px solid var(--akpet-border);
    border-radius: 28px;
    background: var(--akpet-white);
    box-shadow: var(--akpet-shadow-soft);
}

.akpet-product-gallery-header {
    padding-bottom: 19px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--akpet-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.akpet-product-gallery-header small,
.akpet-product-gallery-header strong {
    display: block;
}

.akpet-product-gallery-header small {
    color: var(--akpet-red);
    font-size: 12px;
    font-weight: 700;
}

.akpet-product-gallery-header strong {
    margin-top: 4px;
    color: var(--akpet-title);
    font-size: 14px;
    font-weight: 700;
}

.akpet-product-gallery-header > span {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(60, 42, 150, .08);
    color: var(--akpet-primary);
    font-size: 18px;
}

.akpet-product-gallery-main-wrapper {
    position: relative;
    border: 1px solid var(--akpet-border);
    border-radius: 22px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(239, 61, 39, .06),
            transparent 29%
        ),
        #ffffff;
}

.akpet-product-gallery-main {
    width: 100%;
    height: 570px;
}

.akpet-product-gallery-main .swiper-slide {
    height: 570px;
}

.akpet-product-gallery-link {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.akpet-product-gallery-link > img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 500px;
    display: block;
    object-fit: contain;
    transition: transform .35s ease;
}

.akpet-product-gallery-link:hover > img {
    transform: scale(1.025);
}

.akpet-product-gallery-zoom {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 45px;
    height: 45px;
    border: 1px solid var(--akpet-border);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .92);
    color: var(--akpet-primary);
    font-size: 17px;
    box-shadow: 0 10px 25px rgba(29, 22, 82, .08);
}

.akpet-product-gallery-link:hover
.akpet-product-gallery-zoom {
    background: var(--akpet-red);
    color: var(--akpet-white);
}

.akpet-product-gallery-navigation {
    position: absolute;
    top: 50%;
    z-index: 6;
    width: 47px;
    height: 47px;
    margin: 0;
    border: 1px solid var(--akpet-border);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .94);
    color: var(--akpet-title);
    font-size: 15px;
    box-shadow: 0 10px 28px rgba(29, 22, 82, .09);
    transform: translateY(-50%);
    transition:
        border-color .2s ease,
        background-color .2s ease,
        color .2s ease;
}

.akpet-product-gallery-navigation::after {
    display: none;
}

.akpet-product-gallery-navigation:hover {
    border-color: var(--akpet-primary);
    background: var(--akpet-primary);
    color: var(--akpet-white);
}

.akpet-product-gallery-prev {
    left: 17px;
}

.akpet-product-gallery-next {
    right: 17px;
}

.akpet-product-thumbnail-wrapper {
    padding-top: 17px;
}

.akpet-product-gallery-thumbs {
    width: 100%;
    overflow: hidden;
}

.akpet-product-gallery-thumbs .swiper-slide {
    cursor: pointer;
}

.akpet-product-thumbnail {
    height: 92px;
    padding: 8px;
    border: 1px solid var(--akpet-border);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--akpet-white);
    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.akpet-product-thumbnail:hover,
.akpet-product-gallery-thumbs .swiper-slide-thumb-active
.akpet-product-thumbnail {
    border-color: var(--akpet-primary);
    box-shadow: 0 8px 20px rgba(60, 42, 150, .1);
}

.akpet-product-thumbnail img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 74px;
    display: block;
    object-fit: contain;
}

.akpet-product-gallery-main:not(.swiper-initialized)
.swiper-slide:not(:first-child) {
    display: none;
}

/* =========================================================
   ÜRÜN BİLGİ KARTI
   ========================================================= */

.akpet-product-information-card {
    padding: 31px;
    padding-top: 20px;
    border: 1px solid var(--akpet-border);
    border-radius: 28px;
    background:
        radial-gradient(
            circle at 95% 5%,
            rgba(98, 120, 202, .07),
            transparent 27%
        ),
        var(--akpet-white);
    box-shadow: var(--akpet-shadow-soft);
}

.akpet-product-information-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 15px;
}

.akpet-product-information-title {
    min-width: 0;
    flex: 1;
}

.akpet-product-category-label {
    min-height: 31px;
    padding: 0 12px;
    margin-bottom: 15px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: rgba(239, 61, 39, .09);
    color: var(--akpet-red);
    font-size: 12px;
    font-weight: 700;
}

.akpet-product-information-card h2 {
    margin: 0;
    color: var(--akpet-title);
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -.05em;
}

.akpet-product-brand-logo {
    width: 125px;
    min-height: 76px;
    flex: 0 0 125px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.akpet-product-brand-logo img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 50px;
    display: block;
    object-fit: contain;
}

.akpet-product-short-description {
    margin-top: 20px;
    color: var(--akpet-text);
    font-size: 15px;
    line-height: 1.8;
}

.akpet-product-short-description > *:first-child {
    margin-top: 0;
}

.akpet-product-short-description > *:last-child {
    margin-bottom: 0;
}

.akpet-product-short-description p {
    margin: 0 0 12px;
}

.akpet-product-short-description strong,
.akpet-product-short-description b {
    color: var(--akpet-title);
    font-weight: 700;
}

.akpet-product-information-divider {
    height: 1px;
    margin: 27px 0;
    background: var(--akpet-border);
}

/* Ürün bilgi satırları */

.akpet-product-meta-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.akpet-product-meta-item {
    min-height: 65px;
    padding: 12px 14px;
    border: 1px solid var(--akpet-border);
    border-radius: 17px;
    display: flex;
    align-items: center;
    gap: 13px;
    background: var(--akpet-light);
}

.akpet-product-meta-icon {
    width: 41px;
    height: 41px;
    flex: 0 0 41px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(60, 42, 150, .09);
    color: var(--akpet-primary);
    font-size: 17px;
}

.akpet-product-meta-item small,
.akpet-product-meta-item strong {
    display: block;
}

.akpet-product-meta-item small {
    color: var(--akpet-text);
    font-size: 12px;
}

.akpet-product-meta-item strong {
    margin-top: 3px;
    color: var(--akpet-title);
    font-size: 14px;
    font-weight: 700;
    overflow-wrap: anywhere;
}

/* Ana butonlar */

.akpet-product-main-actions {
    margin-top: 24px;
    display: flex;
    align-items: stretch;
    gap: 10px;
}

.akpet-product-main-actions .akpet-button {
    flex: 1;
}

.akpet-product-share-button {
    min-height: 50px;
    padding: 0 18px;
    border: 1px solid var(--akpet-border);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--akpet-white);
    color: var(--akpet-title);
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition:
        border-color .2s ease,
        background-color .2s ease,
        color .2s ease;
}

.akpet-product-share-button:hover {
    border-color: var(--akpet-primary);
    background: var(--akpet-primary);
    color: var(--akpet-white);
}

/* Katalog */

.akpet-product-catalog-area {
    padding: 17px;
    margin-top: 20px;
    border: 1px solid rgba(60, 42, 150, .13);
    border-radius: 19px;
    background: rgba(60, 42, 150, .05);
}

.akpet-product-document-heading,
.akpet-product-certificates-header {
    display: flex;
    align-items: center;
    gap: 11px;
}

.akpet-product-document-heading > span,
.akpet-product-certificates-header > span {
    width: 41px;
    height: 41px;
    flex: 0 0 41px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 61, 39, .1);
    color: var(--akpet-red);
    font-size: 17px;
}

.akpet-product-document-heading small,
.akpet-product-document-heading strong,
.akpet-product-certificates-header small,
.akpet-product-certificates-header strong {
    display: block;
}

.akpet-product-document-heading small,
.akpet-product-certificates-header small {
    color: var(--akpet-text);
    font-size: 12px;
}

.akpet-product-document-heading strong,
.akpet-product-certificates-header strong {
    margin-top: 2px;
    color: var(--akpet-title);
    font-size: 14px;
    font-weight: 700;
}

.akpet-product-catalog-button {
    min-height: 45px;
    padding: 0 15px;
    margin-top: 14px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: var(--akpet-primary);
    color: var(--akpet-white);
    font-size: 12px;
    font-weight: 700;
}

.akpet-product-catalog-button:hover {
    background: var(--akpet-red);
    color: var(--akpet-white);
}

/* Belgeler */

.akpet-product-certificates {
    margin-top: 20px;
}

.akpet-product-certificates-header {
    padding-bottom: 14px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--akpet-border);
}

.akpet-product-certificate-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.akpet-product-certificate-item {
    min-height: 46px;
    padding: 8px 13px;
    border: 1px solid var(--akpet-border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: var(--akpet-light);
    color: var(--akpet-title);
    font-size: 12px;
    font-weight: 700;
}

.akpet-product-certificate-item > span {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.akpet-product-certificate-item > span i {
    color: var(--akpet-red);
}

.akpet-product-certificate-item > i {
    color: var(--akpet-primary);
}

.akpet-product-certificate-item:hover {
    border-color: var(--akpet-primary);
    background: var(--akpet-primary);
    color: var(--akpet-white);
}

.akpet-product-certificate-item:hover i {
    color: var(--akpet-white);
}

.akpet-product-support-note {
    padding: 15px;
    margin-top: 21px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(239, 61, 39, .2),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            var(--akpet-primary),
            var(--akpet-dark)
        );
    color: var(--akpet-white);
}

.akpet-product-support-note > span {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .1);
    color: var(--akpet-red-light);
    font-size: 18px;
}

.akpet-product-support-note small,
.akpet-product-support-note strong {
    display: block;
}

.akpet-product-support-note small {
    color: rgba(255, 255, 255, .5);
    font-size: 11px;
}

.akpet-product-support-note strong {
    margin-top: 3px;
    color: var(--akpet-white);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
}

/* =========================================================
   ÜRÜN DETAY SEKMELERİ
   ========================================================= */

.akpet-product-tabs-section {
    padding: 0 0 95px;
    background: var(--akpet-light);
}

.akpet-product-tabs-wrapper {
    border: 1px solid var(--akpet-border);
    border-radius: 28px;
    overflow: hidden;
    background: var(--akpet-white);
    box-shadow: var(--akpet-shadow-soft);
}

.akpet-product-tabs-navigation {
    padding: 19px 25px 0;
    border-bottom: 1px solid var(--akpet-border);
    background: var(--akpet-white);
}

.akpet-product-tabs-navigation .nav-tabs {
    border: 0;
    gap: 10px;
}

.akpet-product-tabs-navigation .nav-item {
    margin: 0;
}

.akpet-product-tabs-navigation .nav-link {
    min-height: 52px;
    padding: 0 19px;
    border: 1px solid transparent;
    border-radius: 15px 15px 0 0;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: var(--akpet-text);
    font-size: 14px;
    font-weight: 700;
}

.akpet-product-tabs-navigation .nav-link > span {
    width: 31px;
    height: 31px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(60, 42, 150, .08);
    color: var(--akpet-primary);
}

.akpet-product-tabs-navigation .nav-link:hover {
    color: var(--akpet-primary);
}

.akpet-product-tabs-navigation .nav-link.active {
    border-color: var(--akpet-border);
    border-bottom-color: var(--akpet-white);
    background: var(--akpet-white);
    color: var(--akpet-primary);
}

.akpet-product-tab-content {
    padding: 38px;
}

.akpet-product-content-heading {
    padding-bottom: 24px;
    margin-bottom: 27px;
    border-bottom: 1px solid var(--akpet-border);
}

.akpet-product-content-heading h2 {
    margin: 14px 0 0;
    color: var(--akpet-title);
    font-size: clamp(23px, 2vw, 32px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.05em;
}

.akpet-product-content-heading h2 strong {
    font-weight: 700;
}

/* Panelden gelen ürün içeriği */

.akpet-product-rich-content {
    color: var(--akpet-text);
    font-size: 15px;
    line-height: 1.9;
    overflow-wrap: anywhere;
}

.akpet-product-rich-content > *:first-child {
    margin-top: 0;
}

.akpet-product-rich-content > *:last-child {
    margin-bottom: 0;
}

.akpet-product-rich-content p {
    margin: 0 0 20px;
}

.akpet-product-rich-content strong,
.akpet-product-rich-content b {
    color: var(--akpet-title);
    font-weight: 700;
}

.akpet-product-rich-content h1,
.akpet-product-rich-content h2,
.akpet-product-rich-content h3,
.akpet-product-rich-content h4,
.akpet-product-rich-content h5,
.akpet-product-rich-content h6 {
    margin: 35px 0 16px;
    color: var(--akpet-title);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -.02em;
}

.akpet-product-rich-content h1 {
    font-size: 30px;
}

.akpet-product-rich-content h2 {
    font-size: 27px;
}

.akpet-product-rich-content h3 {
    font-size: 23px;
}

.akpet-product-rich-content h4 {
    font-size: 20px;
}

.akpet-product-rich-content h5,
.akpet-product-rich-content h6 {
    font-size: 17px;
}

.akpet-product-rich-content ul,
.akpet-product-rich-content ol {
    padding: 0;
    margin: 0 0 24px;
    list-style: none;
    counter-reset: akpet-product-content-list;
}

.akpet-product-rich-content ul li,
.akpet-product-rich-content ol li {
    position: relative;
    min-height: 39px;
    padding: 7px 0 7px 39px;
    margin-bottom: 6px;
}

.akpet-product-rich-content ul li::before {
    content: "\F26E";
    position: absolute;
    top: 7px;
    left: 0;
    width: 27px;
    height: 27px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 61, 39, .09);
    color: var(--akpet-red);
    font-family: bootstrap-icons !important;
    font-size: 12px;
}

.akpet-product-rich-content ol li {
    counter-increment: akpet-product-content-list;
}

.akpet-product-rich-content ol li::before {
    content: counter(akpet-product-content-list);
    position: absolute;
    top: 7px;
    left: 0;
    width: 27px;
    height: 27px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(60, 42, 150, .09);
    color: var(--akpet-primary);
    font-size: 11px;
    font-weight: 700;
}

.akpet-product-rich-content img {
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 26px auto;
    border-radius: 20px;
    display: block;
}

.akpet-product-rich-content blockquote {
    position: relative;
    padding: 25px 27px 25px 75px;
    margin: 30px 0;
    border: 0;
    border-radius: 21px;
    background:
        radial-gradient(
            circle at 95% 0%,
            rgba(239, 61, 39, .11),
            transparent 35%
        ),
        var(--akpet-light);
    color: var(--akpet-title);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.8;
}

.akpet-product-rich-content blockquote::before {
    content: "\F6B0";
    position: absolute;
    top: 24px;
    left: 23px;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--akpet-primary);
    color: var(--akpet-white);
    font-family: bootstrap-icons !important;
    font-size: 16px;
}

.akpet-product-rich-content a {
    color: var(--akpet-primary);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(60, 42, 150, .25);
    text-underline-offset: 4px;
}

.akpet-product-rich-content a:hover {
    color: var(--akpet-red);
    text-decoration-color: var(--akpet-red);
}

.akpet-product-rich-content table {
    width: 100%;
    margin: 28px 0;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--akpet-border);
    border-radius: 17px;
    overflow: hidden;
    font-size: 13px;
}

.akpet-product-rich-content th,
.akpet-product-rich-content td {
    padding: 14px 15px;
    border-right: 1px solid var(--akpet-border);
    border-bottom: 1px solid var(--akpet-border);
    vertical-align: top;
    text-align: left;
}

.akpet-product-rich-content th {
    background: var(--akpet-light);
    color: var(--akpet-title);
    font-weight: 700;
}

.akpet-product-rich-content tr:last-child td {
    border-bottom: 0;
}

.akpet-product-rich-content th:last-child,
.akpet-product-rich-content td:last-child {
    border-right: 0;
}

.akpet-product-rich-content iframe,
.akpet-product-rich-content video {
    width: 100%;
    max-width: 100%;
    margin: 28px 0;
    border: 0;
    border-radius: 20px;
    aspect-ratio: 16 / 9;
}

/* =========================================================
   ÜRÜN ALT TEKLİF ALANI
   ========================================================= */

.akpet-product-final-section {
    padding: 0 0 95px;
    background: var(--akpet-light);
}

.akpet-product-final-box {
    position: relative;
    padding: 42px;
    border-radius: 30px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 84% 18%,
            rgba(239, 61, 39, .28),
            transparent 31%
        ),
        linear-gradient(
            135deg,
            var(--akpet-primary),
            var(--akpet-dark)
        );
    color: var(--akpet-white);
    box-shadow: var(--akpet-shadow);
}

.akpet-product-final-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    pointer-events: none;
}

.akpet-product-final-orbit-one {
    right: -135px;
    bottom: -175px;
    width: 415px;
    height: 415px;
}

.akpet-product-final-orbit-two {
    right: -45px;
    bottom: -85px;
    width: 240px;
    height: 240px;
}

.akpet-product-final-box h2 {
    max-width: 720px;
    margin: 8px 0 13px;
    color: var(--akpet-white);
    font-size: clamp(29px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.akpet-product-final-box p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, .66);
    font-size: 14px;
    line-height: 1.75;
}

.akpet-product-final-actions {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
}

.akpet-product-final-link {
    min-height: 50px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: rgba(255, 255, 255, .08);
    color: var(--akpet-white);
    font-size: 13px;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.akpet-product-final-link:hover {
    border-color: rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .14);
    color: var(--akpet-white);
}

/* =========================================================
   PAYLAŞIM PENCERESİ
   ========================================================= */

body.akpet-share-modal-open {
    overflow: hidden;
}

.akpet-share-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    padding: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(17, 16, 32, .72);
    backdrop-filter: blur(8px);
}

.akpet-share-modal.is-open {
    display: flex;
}

.akpet-share-content {
    width: 100%;
    max-width: 520px;
    padding: 27px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 25px;
    background: var(--akpet-white);
    box-shadow: 0 30px 80px rgba(17, 16, 32, .3);
    animation: akpetShareOpen .22s ease;
}

@keyframes akpetShareOpen {
    from {
        opacity: 0;
        transform: translateY(15px) scale(.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.akpet-share-header {
    padding-bottom: 19px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--akpet-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.akpet-share-header small {
    display: block;
    color: var(--akpet-red);
    font-size: 12px;
    font-weight: 700;
}

.akpet-share-header h3 {
    margin: 4px 0 0;
    color: var(--akpet-title);
    font-size: 21px;
    font-weight: 700;
}

.akpet-share-close {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    border: 1px solid var(--akpet-border);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--akpet-light);
    color: var(--akpet-title);
    font-size: 16px;
    cursor: pointer;
}

.akpet-share-close:hover {
    border-color: var(--akpet-red);
    background: var(--akpet-red);
    color: var(--akpet-white);
}

.akpet-share-list {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}

.akpet-share-item {
    width: calc(33.333% - 8px);
    min-height: 105px;
    padding: 15px 10px;
    border: 1px solid var(--akpet-border);
    border-radius: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 9px;
    background: var(--akpet-light);
    color: var(--akpet-title);
    font-family: inherit;
    cursor: pointer;
    transition:
        border-color .2s ease,
        background-color .2s ease,
        color .2s ease,
        transform .2s ease;
}

.akpet-share-item > span {
    width: 41px;
    height: 41px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(60, 42, 150, .09);
    color: var(--akpet-primary);
    font-size: 18px;
}

.akpet-share-item strong {
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

.akpet-share-item:hover {
    border-color: var(--akpet-primary);
    background: var(--akpet-primary);
    color: var(--akpet-white);
    transform: translateY(-3px);
}

.akpet-share-item:hover > span {
    background: rgba(255, 255, 255, .12);
    color: var(--akpet-white);
}

.akpet-share-feedback {
    min-height: 0;
    margin-top: 0;
    border-radius: 13px;
    color: #146c45;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    opacity: 0;
    transform: translateY(5px);
    transition:
        min-height .2s ease,
        margin-top .2s ease,
        padding .2s ease,
        opacity .2s ease,
        transform .2s ease;
}

.akpet-share-feedback.is-visible {
    min-height: 40px;
    padding: 10px 13px;
    margin-top: 15px;
    background: rgba(27, 145, 89, .08);
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1199px) {
    .akpet-product-gallery-main,
    .akpet-product-gallery-main .swiper-slide {
        height: 510px;
    }

    .akpet-product-gallery-link > img {
        max-height: 440px;
    }

    .akpet-product-information-card {
        padding: 27px;
    }
}

@media (max-width: 991px) {
    .akpet-product-detail-section {
        padding: 80px 0;
    }

    .akpet-product-gallery-main,
    .akpet-product-gallery-main .swiper-slide {
        height: 540px;
    }

    .akpet-product-gallery-link > img {
        max-height: 470px;
    }

    .akpet-product-information-card {
        margin-top: 5px;
    }

    .akpet-product-final-box {
        padding: 34px;
    }

    .akpet-product-final-actions {
        max-width: 330px;
    }
}

@media (max-width: 767px) {
    .akpet-product-detail-section {
        padding: 70px 0;
    }

    .akpet-product-gallery-card {
        padding: 17px;
        border-radius: 22px;
    }

    .akpet-product-gallery-main-wrapper {
        border-radius: 18px;
    }

    .akpet-product-gallery-main,
    .akpet-product-gallery-main .swiper-slide {
        height: 390px;
    }

    .akpet-product-gallery-link {
        padding: 20px;
    }

    .akpet-product-gallery-link > img {
        max-height: 340px;
    }

    .akpet-product-gallery-navigation {
        width: 41px;
        height: 41px;
    }

    .akpet-product-gallery-prev {
        left: 10px;
    }

    .akpet-product-gallery-next {
        right: 10px;
    }

    .akpet-product-thumbnail {
        height: 76px;
    }

    .akpet-product-thumbnail img {
        max-height: 60px;
    }

    .akpet-product-information-card {
        padding: 24px 19px;
        border-radius: 22px;
    }

    .akpet-product-information-heading {
        flex-direction: column-reverse;
        gap: 17px;
    }

    .akpet-product-brand-logo {
        width: 110px;
        min-height: 50px;
        flex-basis: auto;
        justify-content: flex-start;
    }

    .akpet-product-brand-logo img {
        max-height: 55px;
    }

    .akpet-product-information-title h2 {
        font-size: 30px;
    }

    .akpet-product-main-actions {
        flex-direction: column;
    }

    .akpet-product-main-actions .akpet-button,
    .akpet-product-share-button {
        width: 100%;
    }

    .akpet-product-tabs-navigation {
        padding: 15px 15px 0;
        overflow-x: auto;
    }

    .akpet-product-tabs-navigation .nav-tabs {
        min-width: max-content;
        flex-wrap: nowrap;
    }

    .akpet-product-tabs-navigation .nav-link {
        min-height: 48px;
        padding: 0 15px;
    }

    .akpet-product-tab-content {
        padding: 25px 19px;
    }

    .akpet-product-rich-content {
        font-size: 14px;
        line-height: 1.85;
    }

    .akpet-product-rich-content blockquote {
        padding: 67px 20px 22px;
        font-size: 14px;
    }

    .akpet-product-rich-content blockquote::before {
        top: 20px;
        left: 20px;
    }

    .akpet-product-rich-content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .akpet-product-final-section {
        padding-bottom: 70px;
    }

    .akpet-product-final-box {
        padding: 27px 22px;
    }

    .akpet-product-final-actions {
        max-width: none;
    }

    .akpet-product-final-actions .akpet-button,
    .akpet-product-final-link {
        width: 100%;
    }

    .akpet-share-content {
        padding: 21px;
    }

    .akpet-share-item {
        width: calc(50% - 6px);
    }
}

@media (max-width: 480px) {
    .akpet-product-gallery-main,
    .akpet-product-gallery-main .swiper-slide {
        height: 330px;
    }

    .akpet-product-gallery-link > img {
        max-height: 285px;
    }

    .akpet-product-gallery-header strong {
        font-size: 12px;
    }

    .akpet-product-gallery-header > span {
        width: 39px;
        height: 39px;
        flex-basis: 39px;
    }

    .akpet-share-item {
        min-height: 96px;
    }
}



/* =========================================================
   SERVİS TALEBİ SAYFASI
   ========================================================= */

.akpet-service-request-section {
    background:
        radial-gradient(
            circle at 7% 10%,
            rgba(98, 120, 202, .08),
            transparent 27%
        ),
        var(--akpet-light);
}

.akpet-service-request-intro {
    position: sticky;
    top: 120px;
}

.akpet-service-request-intro-text {
    margin: 24px 0 27px;
    color: var(--akpet-text);
    font-size: 13px;
    line-height: 1.8;
}

.akpet-service-request-steps {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.akpet-service-request-step {
    padding: 15px;
    border: 1px solid var(--akpet-border);
    border-radius: 18px;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    background: var(--akpet-white);
}

.akpet-service-request-step-number {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            rgba(60, 42, 150, .11),
            rgba(239, 61, 39, .1)
        );
    color: var(--akpet-primary);
    font-size: 11px;
    font-weight: 700;
}

.akpet-service-request-step strong {
    display: block;
    color: var(--akpet-title);
    font-size: 12px;
    font-weight: 700;
}

.akpet-service-request-step p {
    margin: 4px 0 0;
    color: var(--akpet-text);
    font-size: 10px;
    line-height: 1.65;
}

.akpet-service-request-support-box {
    padding: 17px;
    margin-top: 17px;
    border: 1px solid rgba(60, 42, 150, .12);
    border-radius: 19px;
    display: flex;
    align-items: center;
    gap: 13px;
    background: rgba(60, 42, 150, .05);
}

.akpet-service-request-support-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--akpet-primary);
    color: var(--akpet-white);
    font-size: 19px;
}

.akpet-service-request-support-box small,
.akpet-service-request-support-box strong {
    display: block;
}

.akpet-service-request-support-box small {
    color: var(--akpet-red);
    font-size: 9px;
    font-weight: 700;
}

.akpet-service-request-support-box strong {
    margin-top: 4px;
    color: var(--akpet-title);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.5;
}

.akpet-service-request-info-box {
    padding: 18px;
    margin-top: 17px;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    background:
        radial-gradient(
            circle at 88% 10%,
            rgba(239, 61, 39, .23),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--akpet-primary),
            var(--akpet-dark)
        );
    color: var(--akpet-white);
}

.akpet-service-request-info-box > span {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .1);
    color: var(--akpet-red-light);
    font-size: 18px;
}

.akpet-service-request-info-box strong {
    display: block;
    color: var(--akpet-white);
    font-size: 11px;
    font-weight: 700;
}

.akpet-service-request-info-box p {
    margin: 5px 0 0;
    color: rgba(255, 255, 255, .62);
    font-size: 10px;
    line-height: 1.65;
}

/* =========================================================
   SERVİS TALEBİ FORMU
   ========================================================= */

.akpet-service-request-form-card {
    padding: 35px;
    border: 1px solid var(--akpet-border);
    border-radius: 28px;
    background:
        radial-gradient(
            circle at 96% 4%,
            rgba(98, 120, 202, .07),
            transparent 27%
        ),
        var(--akpet-white);
    box-shadow: var(--akpet-shadow-soft);
}

.akpet-service-request-form-header {
    padding-bottom: 24px;
    margin-bottom: 27px;
    border-bottom: 1px solid var(--akpet-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.akpet-service-request-form-header small {
    display: block;
    color: var(--akpet-red);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.akpet-service-request-form-header h2 {
    margin: 5px 0 4px;
    color: var(--akpet-title);
    font-size: 23px;
    font-weight: 700;
    line-height: 1.3;
}

.akpet-service-request-form-header p {
    margin: 0;
    color: var(--akpet-text);
    font-size: 10px;
}

.akpet-service-request-form-header-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border-radius: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            rgba(60, 42, 150, .11),
            rgba(239, 61, 39, .1)
        );
    color: var(--akpet-primary);
    font-size: 22px;
}

.akpet-service-request-form-group label {
    margin-bottom: 8px;
    display: block;
    color: var(--akpet-title);
    font-size: 10px;
    font-weight: 700;
}

.akpet-service-request-form-group label b {
    color: var(--akpet-red);
    font-weight: 700;
}

.akpet-service-request-input-wrapper,
.akpet-service-request-select-wrapper,
.akpet-service-request-textarea-wrapper {
    position: relative;
}

.akpet-service-request-input-wrapper > span,
.akpet-service-request-select-wrapper > span,
.akpet-service-request-textarea-wrapper > span {
    position: absolute;
    left: 15px;
    z-index: 2;
    color: var(--akpet-primary);
    font-size: 15px;
    pointer-events: none;
}

.akpet-service-request-input-wrapper > span,
.akpet-service-request-select-wrapper > span {
    top: 50%;
    transform: translateY(-50%);
}

.akpet-service-request-textarea-wrapper > span {
    top: 16px;
}

.akpet-service-request-input,
.akpet-service-request-select,
.akpet-service-request-textarea {
    width: 100%;
    border: 1px solid var(--akpet-border);
    border-radius: 15px;
    background: var(--akpet-light);
    color: var(--akpet-title);
    font-family: inherit;
    font-size: 12px;
    outline: none;
    transition:
        border-color .2s ease,
        background-color .2s ease,
        box-shadow .2s ease;
}

.akpet-service-request-input,
.akpet-service-request-select {
    height: 52px;
    padding: 0 15px 0 45px;
}

.akpet-service-request-select {
    padding-right: 42px;
    appearance: none;
    cursor: pointer;
}

.akpet-service-request-select-wrapper > i {
    position: absolute;
    top: 50%;
    right: 15px;
    color: var(--akpet-text);
    font-size: 12px;
    transform: translateY(-50%);
    pointer-events: none;
}

.akpet-service-request-textarea {
    min-height: 175px;
    padding: 15px 15px 15px 45px;
    resize: vertical;
}

.akpet-service-request-input::placeholder,
.akpet-service-request-textarea::placeholder {
    color: rgba(71, 71, 86, .55);
}

.akpet-service-request-input:focus,
.akpet-service-request-select:focus,
.akpet-service-request-textarea:focus {
    border-color: rgba(60, 42, 150, .45);
    background: var(--akpet-white);
    box-shadow: 0 0 0 4px rgba(60, 42, 150, .06);
}

/* Uyarılar */

.akpet-service-request-alert {
    padding: 15px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 11px;
}

.akpet-service-request-alert + .akpet-service-request-alert {
    margin-top: 10px;
}

.akpet-service-request-alert > span {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.akpet-service-request-alert strong {
    display: block;
    font-size: 11px;
    font-weight: 700;
}

.akpet-service-request-alert p {
    margin: 3px 0 0;
    font-size: 10px;
    line-height: 1.6;
}

.akpet-service-request-alert-danger {
    border: 1px solid rgba(210, 45, 45, .18);
    background: rgba(210, 45, 45, .07);
    color: #9b2525;
}

.akpet-service-request-alert-danger > span {
    background: rgba(210, 45, 45, .1);
    color: #c62c2c;
}

.akpet-service-request-alert-success {
    border: 1px solid rgba(27, 145, 89, .18);
    background: rgba(27, 145, 89, .07);
    color: #146c45;
}

.akpet-service-request-alert-success > span {
    background: rgba(27, 145, 89, .1);
    color: #148652;
}

/* Form alt alanı */

.akpet-service-request-form-footer {
    padding-top: 23px;
    border-top: 1px solid var(--akpet-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.akpet-service-request-privacy {
    max-width: 430px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.akpet-service-request-privacy > span {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(60, 42, 150, .08);
    color: var(--akpet-primary);
    font-size: 14px;
}

.akpet-service-request-privacy p {
    margin: 2px 0 0;
    color: var(--akpet-text);
    font-size: 9px;
    line-height: 1.65;
}

.akpet-service-request-privacy a {
    color: var(--akpet-primary);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.akpet-service-request-privacy a:hover {
    color: var(--akpet-red);
}

.akpet-service-request-submit {
    min-width: 205px;
    flex: 0 0 auto;
}

.akpet-service-request-submit-loading {
    opacity: .72;
}

.akpet-service-request-submit-loading i {
    animation: akpetServiceRequestSubmitSpin .8s linear infinite;
}

@keyframes akpetServiceRequestSubmitSpin {
    to {
        transform: rotate(360deg);
    }
}

/* =========================================================
   SERVİS ÖZELLİKLERİ
   ========================================================= */

.akpet-service-request-features-section {
    background: var(--akpet-white);
}

.akpet-service-request-feature-card {
    position: relative;
    min-height: 285px;
    height: 100%;
    padding: 26px;
    border: 1px solid var(--akpet-border);
    border-radius: 24px;
    overflow: hidden;
    background: var(--akpet-light);
    transition:
        transform .25s ease,
        border-color .25s ease,
        background-color .25s ease,
        box-shadow .25s ease;
}

.akpet-service-request-feature-card::after {
    content: "";
    position: absolute;
    right: -75px;
    bottom: -90px;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(60, 42, 150, .07);
    border-radius: 50%;
    box-shadow:
        0 0 0 30px rgba(60, 42, 150, .025),
        0 0 0 60px rgba(60, 42, 150, .012);
}

.akpet-service-request-feature-card:hover {
    border-color: rgba(60, 42, 150, .23);
    background: var(--akpet-white);
    box-shadow: var(--akpet-shadow-soft);
    transform: translateY(-5px);
}

.akpet-service-request-feature-top {
    position: relative;
    z-index: 2;
    margin-bottom: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.akpet-service-request-feature-top > span {
    width: 58px;
    height: 58px;
    border-radius: 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            rgba(60, 42, 150, .11),
            rgba(239, 61, 39, .1)
        );
    color: var(--akpet-primary);
    font-size: 22px;
}

.akpet-service-request-feature-top small {
    color: rgba(23, 22, 37, .14);
    font-size: 24px;
    font-weight: 700;
}

.akpet-service-request-feature-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 10px;
    color: var(--akpet-title);
    font-size: 19px;
    font-weight: 700;
}

.akpet-service-request-feature-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: var(--akpet-text);
    font-size: 12px;
    line-height: 1.75;
}

/* =========================================================
   SERVİS TALEBİ ALT İLETİŞİM
   ========================================================= */

.akpet-service-request-final-section {
    padding: 0 0 95px;
    background: var(--akpet-white);
}

.akpet-service-request-final-box {
    position: relative;
    padding: 42px;
    border-radius: 30px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 84% 18%,
            rgba(239, 61, 39, .28),
            transparent 31%
        ),
        linear-gradient(
            135deg,
            var(--akpet-primary),
            var(--akpet-dark)
        );
    color: var(--akpet-white);
    box-shadow: var(--akpet-shadow);
}

.akpet-service-request-final-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    pointer-events: none;
}

.akpet-service-request-final-orbit-one {
    right: -135px;
    bottom: -175px;
    width: 415px;
    height: 415px;
}

.akpet-service-request-final-orbit-two {
    right: -45px;
    bottom: -85px;
    width: 240px;
    height: 240px;
}

.akpet-service-request-final-box h2 {
    max-width: 720px;
    margin: 8px 0 13px;
    color: var(--akpet-white);
    font-size: clamp(29px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.akpet-service-request-final-box p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, .65);
    font-size: 12px;
    line-height: 1.75;
}

@media (max-width: 991px) {
    .akpet-service-request-intro {
        position: static;
        top: auto;
    }

    .akpet-service-request-form-card {
        padding: 30px;
    }

    .akpet-service-request-final-box {
        padding: 34px;
    }
}

@media (max-width: 767px) {
    .akpet-service-request-form-card {
        padding: 24px 19px;
        border-radius: 22px;
    }

    .akpet-service-request-form-header {
        align-items: flex-start;
    }

    .akpet-service-request-form-header h2 {
        font-size: 20px;
    }

    .akpet-service-request-form-header-icon {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .akpet-service-request-form-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .akpet-service-request-submit {
        width: 100%;
        min-width: 0;
    }

    .akpet-service-request-feature-card {
        min-height: 250px;
    }

    .akpet-service-request-final-section {
        padding-bottom: 70px;
    }

    .akpet-service-request-final-box {
        padding: 27px 22px;
    }

    .akpet-service-request-final-box .akpet-button {
        width: 100%;
    }
}


