@property --pc-product-border-sweep {
    syntax: "<angle>";
    inherits: true;
    initial-value: 0deg;
}

/* Anchor scrolling is NOT handled here: both page files carry a global
   a[href^="#"] handler that preventDefaults and runs window.scrollTo with
   behavior "smooth" and a -90px offset for the sticky navbar. Adding
   scroll-behavior / scroll-margin-top here would be dead code. */

.pc-shell {
    --pc-navy: #242e64;
    --pc-navy-dark: #3a3544;
    --pc-orange: #f28f1e;
    --pc-orange-dark: #df6209;
    --pc-copy: #eae9ec;
    width: 100%;
    overflow: hidden;
    background: #fff;
    color: #3a3544;
    font-family: "Ubuntu", sans-serif;
}

.pc-shell,
.pc-shell * {
    box-sizing: border-box;
}

.pc-container {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
}

.pc-topbar {
    background: #3a3544;
    color: #edebec;
    font-family: "Ubuntu", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.25;
}

.pc-topbar__inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.pc-topbar a {
    color: inherit;
    text-decoration: none;
    transition: color 160ms ease;
}

.pc-topbar a:hover {
    color: #fff;
}

.pc-topbar__back,
.pc-topbar__actions,
.pc-topbar__phone {
    display: inline-flex;
    align-items: center;
}

.pc-topbar__back {
    gap: 7px;
}

.pc-topbar__actions {
    gap: 22px;
}

.pc-topbar__phone {
    gap: 8px;
}

.pc-topbar__language {
    color: #fff !important;
    font-weight: 700;
}

.pc-topbar__divider {
    flex: none;
    width: 1px;
    height: 15px;
    background: rgba(255, 255, 255, 0.22);
}

.pc-topbar__about,
.pc-topbar__support {
    white-space: nowrap;
}

/* Small filled CTA in the topbar; jumps to the contact form at the page bottom. */
.pc-topbar__quote {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    border-radius: 7px;
    background: var(--pc-orange, #f28f1e);
    color: #fff !important;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    transition: background 160ms ease;
}

.pc-topbar__quote:hover {
    background: var(--pc-orange-dark, #df6209);
    color: #fff !important;
}

.pc-topmenu {
    position: relative;
    /* Stretch to the full topbar height so the hover area is not just the
       label's text box, which would leave a dead gap above the panel. */
    align-self: stretch;
    display: inline-flex;
    align-items: center;
}

.pc-topmenu__trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    border: 0;
    background: none;
    color: inherit;
    font-family: "Ubuntu", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.25;
    white-space: nowrap;
    cursor: pointer;
    transition: color 160ms ease;
}

.pc-topmenu__trigger svg {
    transition: transform 180ms ease;
}

.pc-topmenu:hover .pc-topmenu__trigger,
.pc-topmenu:focus-within .pc-topmenu__trigger {
    color: #fff;
}

.pc-topmenu:hover .pc-topmenu__trigger svg,
.pc-topmenu:focus-within .pc-topmenu__trigger svg {
    transform: rotate(180deg);
}

.pc-topmenu__panel {
    position: absolute;
    z-index: 80;
    top: calc(100% + 8px);
    right: 0;
    min-width: 232px;
    padding: 10px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 20px 44px rgba(58, 53, 68, 0.3);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 180ms ease, transform 200ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Invisible bridge across the gap between the trigger and the panel, so the
   pointer never leaves the hover area on its way down. */
.pc-topmenu__panel::before {
    position: absolute;
    /* Behind the panel background (but above nothing else), so it also fills the
       notches left by the rounded top corners without blocking the links. */
    z-index: -1;
    right: -20px;
    bottom: calc(100% - 16px);
    left: -20px;
    height: 32px;
    content: "";
}

.pc-topmenu:hover .pc-topmenu__panel,
.pc-topmenu:focus-within .pc-topmenu__panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.pc-topmenu__panel a {
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    color: #3a3544;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    white-space: nowrap;
    transition: background 140ms ease, color 140ms ease;
}

.pc-topmenu__panel a:hover {
    background: #3a3544;
    color: #fff;
}

.pc-navbar {
    position: sticky;
    top: 0;
    z-index: 70;
    background: #fff;
    border-bottom: 1px solid #eae9ec;
    box-shadow: 0 10px 30px rgba(58, 53, 68, 0.06);
    transition: box-shadow 180ms ease;
}

.pc-navbar.pc-navbar--compact {
    position: fixed;
    right: 0;
    left: 0;
    box-shadow: 0 12px 34px rgba(58, 53, 68, 0.12);
}

.pc-navbar__inner {
    min-height: 68px;
    display: flex;
    align-items: center;
    gap: 22px;
    transition: min-height 180ms ease;
}

.pc-navbar--compact .pc-navbar__inner {
    min-height: 56px;
}

.pc-brand {
    display: inline-flex;
    flex: none;
    align-items: center;
    gap: 12px;
    color: #3a3544;
    text-decoration: none;
}

.pc-brand img {
    display: block;
    width: 172px;
    height: auto;
    transition: width 180ms ease;
}

.pc-navbar--compact .pc-brand img {
    width: 150px;
}

.pc-brand__label {
    padding-left: 12px;
    border-left: 1px solid #eae9ec;
    color: #77727f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.13em;
    line-height: 1;
    white-space: nowrap;
}

.pc-navlinks {
    align-self: stretch;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 2px;
}

.pc-navlinks a {
    color: #55515e;
    font-family: "Ubuntu", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.25;
    text-decoration: none;
    white-space: nowrap;
    transition: color 160ms ease;
}

.pc-navbar--compact .pc-navlinks a {
    font-size: 13px;
}

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

.pc-megamenu {
    align-self: stretch;
    display: flex;
    align-items: center;
}

/* A <button>, so it carries the nav-link styling itself instead of inheriting .pc-navlinks a. */
.pc-megamenu__trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    border: 0;
    background: none;
    color: #55515e;
    font-family: "Ubuntu", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.25;
    white-space: nowrap;
    cursor: pointer;
    transition: color 160ms ease;
}

.pc-navbar--compact .pc-megamenu__trigger {
    font-size: 13px;
}

.pc-megamenu__trigger svg {
    transition: transform 180ms ease;
}

.pc-megamenu:hover .pc-megamenu__trigger svg,
.pc-megamenu:focus-within .pc-megamenu__trigger svg {
    transform: rotate(180deg);
}

.pc-megamenu:hover .pc-megamenu__trigger,
.pc-megamenu:focus-within .pc-megamenu__trigger {
    color: var(--pc-orange, #f28f1e);
}

.pc-megamenu__panel {
    position: absolute;
    z-index: 60;
    top: 100%;
    right: 0;
    left: 0;
    padding: 36px 0 40px;
    background: #fff;
    border-top: 1px solid rgba(36, 46, 100, 0.08);
    box-shadow: 0 34px 60px rgba(58, 53, 68, 0.22);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 180ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Invisible bridge across the gap between the navbar and the panel, so the
   pointer never leaves the hover area on its way down. */
.pc-megamenu__panel::before {
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 16px;
    content: "";
}

.pc-megamenu:hover .pc-megamenu__panel,
.pc-megamenu:focus-within .pc-megamenu__panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.pc-megamenu__heading {
    margin: 0 0 24px;
    color: #242e64;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.25;
}

.pc-megamenu__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px 28px;
}

.pc-megamenu__item {
    min-width: 0;
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    align-items: start;
    column-gap: 14px;
    row-gap: 5px;
    padding: 15px 16px;
    border: 1px solid transparent;
    border-radius: 10px;
    transition: background 140ms ease, border-color 140ms ease;
}

.pc-megamenu__item:hover {
    border-color: #242e64;
    background: #f6f8fc;
}

.pc-megamenu__icon {
    grid-row: 1 / span 2;
    width: 30px;
    height: 30px;
    margin-top: 1px;
    color: #f28f1e;
}

.pc-megamenu__icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pc-megamenu__item strong {
    color: #242e64;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
}

.pc-megamenu__description {
    grid-column: 2;
    color: #55515e;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
}

.pc-navbar__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.pc-navbar__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 9px 17px;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: min-height 180ms ease, padding 180ms ease, background 160ms ease, transform 160ms ease;
}

.pc-navbar--compact .pc-navbar__cta {
    min-height: 36px;
    padding: 7px 15px;
    font-size: 13px;
}

.pc-navbar__cta--login {
    border: 1px solid var(--pc-orange);
    background: var(--pc-orange);
}

.pc-navbar__cta--login:hover {
    background: var(--pc-orange-dark);
    border-color: var(--pc-orange-dark);
    color: #fff;
    transform: translateY(-1px);
}

.pc-navbar__cta--account {
    border: 1px solid #3a3544;
    background: transparent;
    color: #3a3544;
}

.pc-navbar__cta--account:hover {
    border-color: #3a3544;
    background: #3a3544;
    color: #fff;
    transform: translateY(-1px);
}

.pc-mobile-menu {
    display: none;
    margin-left: auto;
}

.pc-mobile-menu summary {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid #eae9ec;
    border-radius: 8px;
    color: #3a3544;
    cursor: pointer;
    list-style: none;
}

.pc-mobile-menu summary::-webkit-details-marker {
    display: none;
}

.pc-mobile-menu__panel {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    padding: 14px 24px 22px;
    border-top: 1px solid #eae9ec;
    background: #fff;
    box-shadow: 0 18px 30px rgba(58, 53, 68, 0.14);
}

.pc-navbar--compact .pc-mobile-menu__panel {
    top: 56px;
}

.pc-mobile-menu__panel a {
    display: block;
    padding: 10px 0;
    color: #3a3544;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.pc-mobile-menu__label {
    margin: 14px 0 2px;
    padding-top: 12px;
    border-top: 1px solid #eae9ec;
    color: #77727f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pc-mobile-menu__actions {
    display: grid;
    gap: 10px;
    margin-top: 10px;
}

.pc-mobile-menu__panel .pc-mobile-menu__cta {
    padding: 12px 16px;
    border: 1px solid transparent;
    border-radius: 8px;
    text-align: center;
}

.pc-mobile-menu__panel .pc-mobile-menu__cta--login {
    border-color: var(--pc-orange);
    background: var(--pc-orange);
}

.pc-mobile-menu__panel .pc-mobile-menu__cta--account {
    border-color: rgba(255, 255, 255, 0.72);
    background: transparent;
}

.pc-mobile-menu__panel .pc-mobile-menu__cta--account:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

/* Banner hero'nun TAM zemini (20.08.2026). Ekran kenarindan kenara,
   tek kopya, orana sadik. Kesim: sag kenar sabit -> tasan kisim SOLDAN
   kirpilir; dikeyde ustten/alttan esit (ortali). */
.pc-hero {
    position: relative;
    isolation: isolate;
    min-height: 520px;
    overflow: hidden;
    background-color: #fff;
    background-image: url("/images/bannernewpubliccloud.jpg");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
}

.pc-shell.pc-navbar-is-fixed .pc-hero {
    margin-top: 56px;
}

/* Metnin durdugu sol tarafi hafifce acar; gorselin sag yarisina dokunmaz. */
.pc-hero::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(
        100deg,
        rgba(255, 255, 255, 0.82) 0%,
        rgba(255, 255, 255, 0.58) 32%,
        rgba(255, 255, 255, 0.12) 52%,
        transparent 66%
    );
    content: "";
}

.pc-hero__inner {
    min-height: 520px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

.pc-hero h1 {
    max-width: 680px;
    margin: 0 0 24px;
    color: #3a3544;
    font-size: clamp(32px, 4.3vw, 45px);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.04;
}

.pc-hero__accent {
    background: linear-gradient(90deg, var(--pc-orange), #f7c7a6);
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pc-hero__description {
    max-width: 590px;
    margin: 0 0 30px;
    color: #55515e;
    font-size: 20px;
    line-height: 1.65;
}

.pc-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.pc-button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 28px;
    border: 1px solid transparent;
    border-radius: 9px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.pc-button:hover {
    color: #fff;
    transform: translateY(-1px);
}

.pc-button--primary {
    background: var(--pc-orange, #f28f1e);
}

.pc-button--primary:hover {
    background: var(--pc-orange-dark, #df6209);
}

.pc-button--secondary {
    border-color: #3a3544;
    background: #3a3544;
}

.pc-button--secondary:hover {
    border-color: #55515e;
    background: #55515e;
}

.pc-hero__note {
    margin: 20px 0 0;
    color: #77727f;
    font-size: 14px;
}

/* Musteri logolari seridi - 20.08.2026'da dolu turuncu banttan
   ana sayfanin yeni, daha ince/zarif tarzina cevrildi. */
.pc-logostrip__bar {
    height: 92px;
    border-top: 1px solid #eae9ec;
    border-bottom: 1px solid #eae9ec;
    background: #fff;
}

.pc-logostrip__logo {
    width: 116px;
    height: auto;
    filter: grayscale(1);
    opacity: 0.5;
    transition: opacity 220ms ease, filter 220ms ease;
}

.pc-logostrip__logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

.pc-overview {
    position: relative;
    overflow: hidden;
    padding: 104px 0 110px;
    border-bottom: 1px solid rgba(36, 46, 100, 0.1);
    background:
        linear-gradient(rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.42)),
        url("/images/Banner.jpg") center / cover no-repeat;
    color: #242e64;
    font-family: "Ubuntu", sans-serif;
}

.pc-overview::after {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 76% 28%, rgba(242, 143, 30, 0.08), transparent 34%);
    content: "";
    pointer-events: none;
}

.pc-overview__inner {
    position: relative;
    z-index: 1;
}

.pc-overview__intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: end;
    gap: clamp(58px, 7vw, 104px);
}

.pc-overview__eyebrow {
    margin: 0 0 24px;
    color: rgba(36, 46, 100, 0.68);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.17em;
    line-height: 1.4;
}

.pc-overview h2 {
    max-width: 580px;
    margin: 0;
    color: #f28f1e;
    font-size: clamp(30px, 4.25vw, 45px);
    font-weight: 400;
    letter-spacing: -0.032em;
    line-height: 1.08;
}

.pc-overview__title-accent {
    color: #3a3544;
    font-weight: inherit;
}

.pc-overview__summary {
    max-width: 570px;
    margin: 0;
    color: #55515e;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
}

.pc-overview__features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 42px clamp(30px, 4vw, 58px);
    margin-top: 52px;
}

/* Ikon basligin ustunde degil solunda: ikon ve baslik ayni satiri paylasinca
   kart basina bir satir yukseklik kazaniliyor. Aciklama basligin altinda, ikon
   kolonunu bos birakip metin kolonuna hizali kaliyor. */
.pc-overview__feature {
    position: relative;
    min-width: 0;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: 0 13px;
    padding-top: 20px;
    border-top: 1px solid rgba(36, 46, 100, 0.16);
}

.pc-overview__feature::before {
    position: absolute;
    top: -1px;
    left: 50%;
    width: 0;
    height: 1px;
    background: #f28f1e;
    box-shadow: 0 0 10px rgba(242, 143, 30, 0.28);
    content: "";
    transform: translateX(-50%);
    transition: width 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pc-overview__feature:hover::before {
    width: 100%;
}

/* 42px ikon 20px basligin yaninda orantisiz duruyordu. */
.pc-overview__icon {
    grid-column: 1;
    width: 34px;
    height: 34px;
    color: #f28f1e;
}

.pc-overview__icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pc-overview__feature h3 {
    grid-column: 2;
    margin: 0;
    color: #242e64;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.35;
}

.pc-overview__feature p {
    grid-column: 2;
    margin: 9px 0 0;
    color: #77727f;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
}


.pc-products {
    overflow: hidden;
    padding: 64px 0 48px;
    background: #eae9ec;
    color: #242e64;
    font-family: "Ubuntu", sans-serif;
}

.pc-products__intro {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: end;
    gap: clamp(54px, 7vw, 100px);
    margin-bottom: 34px;
}

.pc-products__eyebrow {
    margin: 0 0 20px;
    color: #f28f1e;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.17em;
    line-height: 1.4;
}

.pc-products h2 {
    margin: 0;
    font-size: clamp(30px, 4.25vw, 45px);
    font-weight: 400;
    letter-spacing: -0.032em;
    line-height: 1.06;
}

.pc-products h2 span {
    color: #f28f1e;
}

.pc-products h2 strong {
    color: #3a3544;
    font-weight: inherit;
}

.pc-products__intro > p {
    max-width: 650px;
    margin: 0;
    color: #55515e;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
}

.pc-products__viewport {
    overflow: hidden;
}

.pc-products__track {
    display: grid;
    grid-auto-columns: calc((100% - 72px) / 5);
    grid-auto-flow: column;
    gap: 18px;
    overflow-x: auto;
    padding: 1px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.pc-products__track::-webkit-scrollbar {
    display: none;
}

/* Urun Portfoyu karusel degil: 6 kart genis ekranda tek satira siger, ekran
   daraldikca sarar. Satir basina kart sayisi 6 -> 4 -> 3 -> 2 -> 1 seklinde
   iniyor; 5 atlanir, cunku 6 kart 5'li duzende altta tek kart birakirdi.
   flex-wrap + justify-content:center son satiri (orn. 4+2) ortalar; grid
   bunu yapamazdi. Esasta 1px pay var, aksi halde alt piksel yuvarlamasi
   6. karti alt satira dusurebiliyor. */
.pc-products--static .pc-products__track {
    display: flex;
    overflow: visible;
    flex-wrap: wrap;
    justify-content: center;
    scroll-snap-type: none;
}

.pc-products--static .pc-product-card {
    flex: 0 1 calc((100% - 91px) / 6);
}

.pc-product-card {
    --pc-product-border-sweep: 0deg;
    position: relative;
    isolation: isolate;
    min-height: 236px;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    padding: 20px 20px 18px;
    border: 1px solid rgba(36, 46, 100, 0.24);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.58);
    color: #242e64;
    scroll-snap-align: start;
    transition:
        --pc-product-border-sweep 1116ms cubic-bezier(0.22, 1, 0.36, 1),
        background-color 180ms ease;
}

.pc-product-card::after {
    position: absolute;
    z-index: 3;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: conic-gradient(
        from 315deg at 50% 50%,
        #242e64 0deg,
        #242e64 var(--pc-product-border-sweep),
        transparent var(--pc-product-border-sweep),
        transparent calc(360deg - var(--pc-product-border-sweep)),
        #242e64 calc(360deg - var(--pc-product-border-sweep)),
        #242e64 360deg
    );
    content: "";
    pointer-events: none;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

.pc-product-card:hover,
.pc-product-card.pc-product-card--active {
    --pc-product-border-sweep: 180deg;
    background: #eae9ec;
}

.pc-product-card__icon {
    width: 40px;
    height: 40px;
    color: #f28f1e;
}

.pc-product-card__icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pc-product-card h3 {
    margin: 12px 0 0;
    color: #242e64;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.25;
    transition: color 180ms ease;
}

.pc-product-card p {
    margin: 8px 0 16px;
    color: #55515e;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
    transition: color 180ms ease;
}

.pc-product-card__arrow {
    margin-top: auto;
    color: #f28f1e;
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
    transition: transform 180ms ease;
}

.pc-product-card:hover .pc-product-card__arrow,
.pc-product-card.pc-product-card--active .pc-product-card__arrow {
    transform: translateX(7px);
}

.pc-products__controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 16px;
}

.pc-products__counter {
    min-width: 52px;
    margin-right: 4px;
    color: #55515e;
    font-size: 14px;
    text-align: right;
}

.pc-products__controls button {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(36, 46, 100, 0.5);
    border-radius: 10px;
    background: transparent;
    color: #242e64;
    font-size: 22px;
    line-height: 1;
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.pc-products__controls button:hover:not(:disabled) {
    border-color: #242e64;
    background: #242e64;
    color: #fff;
}

.pc-products__controls button:disabled {
    cursor: default;
    opacity: 0.35;
}

/* Use-Case bolumu, Urun Portfoyu ile ayni kart dilini kullanir: bolume ozel
   kart tasarimi (ortalanmis yerlesim, tepedeki aksan cizgisi, mor hover dolgusu,
   "Daha Fazla Bilgi Edin" etiketi) kaldirildi. Geriye yalnizca beyaz zemin kaliyor. */
.pc-solutions {
    border-top: 1px solid rgba(36, 46, 100, 0.09);
    background: #fff;
    color: #242e64;
}

.pc-pricing {
    position: relative;
    overflow: hidden;
    padding: 100px 0 108px;
    background: #f6f8fc;
    color: #242e64;
    font-family: "Ubuntu", sans-serif;
}

.pc-pricing::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    background: radial-gradient(circle at 12% 8%, rgba(242, 143, 30, 0.08), transparent 36%);
    content: "";
    pointer-events: none;
}

.pc-pricing__inner {
    position: relative;
    z-index: 1;
}

.pc-pricing__intro {
    max-width: 640px;
    margin: 0 auto 48px;
    text-align: center;
}

.pc-pricing__eyebrow {
    margin: 0 0 20px;
    color: #f28f1e;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.17em;
    line-height: 1.4;
}

.pc-pricing__intro h2 {
    margin: 0;
    font-size: clamp(32px, 3.4vw, 44px);
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.22;
}

.pc-pricing__intro h2 span {
    color: #f28f1e;
}

.pc-pricing__intro h2 strong {
    display: block;
    margin-top: 4px;
    color: #3a3544;
    font-weight: 500;
}

.pc-pricing__note {
    max-width: 460px;
    margin: 18px auto 0;
    color: #77727f;
    font-size: 14px;
    line-height: 1.6;
}

.pc-pricing__card {
    overflow: hidden;
    border: 1px solid rgba(36, 46, 100, 0.1);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 24px 55px rgba(58, 53, 68, 0.08);
}

.pc-pricing__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 28px;
    background: #242e64;
}

.pc-pricing__select {
    min-height: 40px;
    padding: 0 34px 0 18px;
    border: 0;
    border-radius: 999px;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23242e64' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 16px center;
    color: #242e64;
    font-family: "Ubuntu", sans-serif;
    font-size: 14px;
    font-weight: 700;
    appearance: none;
    cursor: pointer;
    transition: box-shadow 160ms ease;
}

.pc-pricing__select:hover,
.pc-pricing__select:focus-visible {
    box-shadow: 0 0 0 2px rgba(242, 143, 30, 0.45);
    outline: none;
}

.pc-toggle {
    display: inline-flex;
    padding: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    gap: 2px;
}

.pc-toggle__btn {
    min-height: 34px;
    padding: 0 20px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-family: "Ubuntu", sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background 160ms ease, color 160ms ease;
}

.pc-toggle__btn:hover {
    color: #fff;
}

.pc-toggle__btn.is-active {
    background: #f28f1e;
    color: #fff;
}

.pc-pricing-table__scroll {
    overflow-x: auto;
}

.pc-pricing-table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    font-family: "Ubuntu", sans-serif;
}

.pc-pricing-table thead th {
    padding: 11px 20px;
    border-bottom: 1px solid rgba(36, 46, 100, 0.12);
    background: #f6f8fc;
    color: rgba(36, 46, 100, 0.62);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-align: left;
    text-transform: uppercase;
    white-space: nowrap;
}

.pc-pricing-table thead th:first-child {
    padding-left: 28px;
}

.pc-pricing-table tbody td {
    padding: 10px 20px;
    border-bottom: 1px solid rgba(36, 46, 100, 0.08);
    color: #242e64;
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
    transition: background 160ms ease;
    animation: pc-pricing-row-in 380ms cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: var(--pc-row-delay, 0ms);
}

.pc-pricing-table tbody td:first-child {
    padding-left: 28px;
    font-weight: 700;
}

.pc-pricing-table tbody tr:last-child td {
    border-bottom: 0;
}

.pc-pricing-table tbody tr:nth-child(even) td {
    background: #f6f8fc;
}

.pc-pricing-table tbody tr:hover td {
    background: rgba(242, 143, 30, 0.08);
}

@keyframes pc-pricing-row-in {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

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

@media (prefers-reduced-motion: reduce) {
    .pc-pricing-table tbody td {
        animation: none;
        transition: none;
    }
}

.pc-pricing__cta {
    margin-top: 40px;
    text-align: center;
}

/* Comparison table. Deliberately framed differently from .pc-pricing__card above:
   navy header band instead of a light one, and a highlighted portvMind column. */
.pc-compare {
    padding: 96px 0 104px;
    background: #fff;
    color: #242e64;
    font-family: "Ubuntu", sans-serif;
}

.pc-compare__intro {
    max-width: 720px;
    margin: 0 auto 46px;
    text-align: center;
}

.pc-compare__eyebrow {
    margin: 0 0 20px;
    color: #f28f1e;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.17em;
    line-height: 1.4;
}

.pc-compare__intro h2 {
    margin: 0;
    font-size: clamp(32px, 3.4vw, 44px);
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.22;
}

.pc-compare__intro h2 span {
    color: #f28f1e;
}

.pc-compare__intro h2 strong {
    display: block;
    margin-top: 4px;
    color: #3a3544;
    font-weight: 500;
}

.pc-compare__note {
    margin: 18px auto 0;
    color: #77727f;
    font-size: 14px;
    line-height: 1.65;
}

.pc-compare__card {
    overflow: hidden;
    border: 1px solid rgba(36, 46, 100, 0.12);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(58, 53, 68, 0.07);
}

.pc-compare-table__scroll {
    overflow-x: auto;
}

.pc-compare-table {
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
    font-family: "Ubuntu", sans-serif;
}

.pc-compare-table thead th {
    padding: 11px 18px;
    background: #242e64;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
}

.pc-compare-table thead th:first-child {
    padding-left: 26px;
    text-align: left;
    white-space: nowrap;
}

.pc-compare-table thead th.is-highlight {
    background: #f28f1e;
}

.pc-compare-table tbody th {
    padding: 10px 18px 10px 26px;
    border-bottom: 1px solid rgba(36, 46, 100, 0.08);
    color: #242e64;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
}

.pc-compare-table tbody td {
    padding: 10px 18px;
    border-bottom: 1px solid rgba(36, 46, 100, 0.08);
    color: #55515e;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    transition: background 140ms ease;
}

.pc-compare-table tbody td.is-highlight {
    background: rgba(242, 143, 30, 0.07);
    color: #242e64;
    font-weight: 700;
}

.pc-compare-table tbody tr:last-child th,
.pc-compare-table tbody tr:last-child td {
    border-bottom: 0;
}

.pc-compare-table tbody tr:hover th,
.pc-compare-table tbody tr:hover td {
    background: #f6f8fc;
}

.pc-compare-table tbody tr:hover td.is-highlight {
    background: rgba(242, 143, 30, 0.13);
}

.pc-compare__yes,
.pc-compare__no {
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
}

.pc-compare__yes svg,
.pc-compare__no svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pc-compare__yes {
    color: #f28f1e;
}

.pc-compare__no {
    width: 18px;
    height: 18px;
    color: rgba(36, 46, 100, 0.3);
}

/* Customer stories. Reuses the [data-pc-products] carousel, two wide cards per view. */
.pc-stories {
    overflow: hidden;
    padding: 94px 0 84px;
    background: #f6f8fc;
    color: #242e64;
    font-family: "Ubuntu", sans-serif;
}

.pc-stories__intro {
    max-width: 720px;
    margin: 0 auto 44px;
    text-align: center;
}

.pc-stories__eyebrow {
    margin: 0 0 20px;
    color: #f28f1e;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.17em;
    line-height: 1.4;
}

.pc-stories__intro h2 {
    margin: 0;
    font-size: clamp(32px, 3.4vw, 44px);
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.22;
}

.pc-stories__intro h2 span {
    color: #f28f1e;
}

.pc-stories__intro h2 strong {
    color: #3a3544;
    font-weight: 500;
}

/* The track is padded (and pulled back out) so the cards' hover glow has room
   to render instead of being clipped by the carousel's scroll box. */
.pc-stories .pc-products__viewport {
    overflow: visible;
}

.pc-stories .pc-products__track {
    /* Own stacking context, so each card's z-index:-1 glow lands above the
       section background and below the card instead of behind everything. */
    isolation: isolate;
    grid-auto-columns: calc((100% - 24px) / 2);
    gap: 24px;
    padding: 14px;
    margin: -14px;
    scroll-padding: 14px;
    /* Fade the side gutters so the glow tapers off there and the next card
       does not peek into the padding we opened up for it. */
    -webkit-mask: linear-gradient(90deg, transparent 0, #000 14px, #000 calc(100% - 14px), transparent 100%);
    mask: linear-gradient(90deg, transparent 0, #000 14px, #000 calc(100% - 14px), transparent 100%);
}

.pc-story-card {
    position: relative;
    min-width: 0;
    min-height: 224px;
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    border: 1px solid rgba(36, 46, 100, 0.1);
    border-radius: 12px;
    background: #fff;
    scroll-snap-align: start;
}

/* AWS-style hover glow: warm orange on the left, navy on the right.
   Sits behind the card (z-index: -1), so the card must not create a stacking
   context — no transform/isolation/overflow on .pc-story-card. */
.pc-story-card::before {
    position: absolute;
    z-index: -1;
    inset: -4px;
    border-radius: 15px;
    background: linear-gradient(112deg, #f28f1e 0%, #f7c7a6 28%, #6758e8 72%, #242e64 100%);
    content: "";
    filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 260ms ease;
}

.pc-story-card:hover::before {
    opacity: 0.42;
}

.pc-story-card__media {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 22px 16px;
    border-radius: 11px 0 0 11px;
    background: #f6f8fc;
    text-align: center;
}

.pc-story-card__media img {
    width: 100%;
    max-width: 122px;
    height: auto;
}

.pc-story-card__body {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    padding: 22px 26px;
}

.pc-story-card__tag {
    align-self: flex-start;
    margin-bottom: 12px;
    padding: 4px 11px;
    border-radius: 999px;
    background: rgba(242, 143, 30, 0.12);
    color: #df6209;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.07em;
    line-height: 1.5;
    text-transform: uppercase;
}

.pc-story-card h3 {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 10px;
    color: #242e64;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.pc-story-card__quote {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: #55515e;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.pc-story-card__author {
    padding-top: 16px;
    border-top: 1px solid rgba(36, 46, 100, 0.12);
}

.pc-story-card__author strong {
    display: block;
    color: #242e64;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}

.pc-story-card__author span {
    color: #77727f;
    font-size: 12px;
    line-height: 1.45;
}

/* Data sovereignty: Turkey map + region panel + certification badges. */
.pc-sovereignty {
    overflow: hidden;
    padding: 76px 0 70px;
    background:
        radial-gradient(circle at 78% 22%, rgba(242, 143, 30, 0.13), transparent 42%),
        linear-gradient(135deg, #242e64 0%, #3a3544 100%);
    color: #fff;
    font-family: "Ubuntu", sans-serif;
}

/* Heading, copy and panel share the grid's left column, so the globe is
   centred against all three rather than just the panel. */
.pc-sovereignty__col {
    display: grid;
    gap: 30px;
    align-content: center;
}

.pc-sovereignty__intro {
    max-width: 470px;
}

.pc-sovereignty__eyebrow {
    margin: 0 0 16px;
    color: #f7c7a6;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.17em;
    line-height: 1.4;
}

.pc-sovereignty__intro h2 {
    margin: 0;
    font-size: clamp(34px, 3.5vw, 48px);
    font-weight: 400;
    letter-spacing: -0.032em;
    line-height: 1.08;
}

.pc-sovereignty__intro h2 span {
    color: #fff;
}

.pc-sovereignty__intro h2 strong {
    display: block;
    color: #f28f1e;
    font-weight: inherit;
}

.pc-sovereignty__note {
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.7;
}

.pc-sovereignty__grid {
    display: grid;
    grid-template-columns: minmax(0, 470px) minmax(0, 1fr);
    align-items: center;
    gap: clamp(28px, 3.5vw, 52px);
}

.pc-sovereignty__panel {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
}

.pc-sovereignty__chip {
    display: inline-block;
    padding: 5px 11px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
}

.pc-sovereignty__panel h3 {
    margin: 16px 0 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
}

.pc-sovereignty__section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.pc-sovereignty__count {
    min-width: 26px;
    padding: 2px 8px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

.pc-sovereignty__list {
    display: grid;
    gap: 8px;
}

.pc-region {
    display: block;
    width: 100%;
    padding: 13px 15px;
    border: 1px solid transparent;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: inherit;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    transition: background 150ms ease, border-color 150ms ease;
}

.pc-region:hover {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.09);
}

.pc-region.is-active {
    border-color: rgba(242, 143, 30, 0.55);
    background: rgba(242, 143, 30, 0.14);
}

.pc-region strong {
    position: relative;
    display: block;
    padding-left: 16px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
}

.pc-region strong::before {
    position: absolute;
    top: 7px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    content: "";
    transition: background 150ms ease;
}

.pc-region.is-active strong::before {
    background: #f28f1e;
}

.pc-region span {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 16px;
    margin-top: 5px;
    padding-left: 16px;
}

.pc-region em {
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    font-style: normal;
    line-height: 1.5;
}

.pc-sovereignty__legend {
    display: flex;
    gap: 20px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.pc-sovereignty__legend span {
    position: relative;
    padding-left: 16px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 12px;
}

.pc-sovereignty__legend span::before {
    position: absolute;
    top: 5px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    content: "";
}

.pc-sovereignty__legend-live::before {
    background: #f28f1e;
}

.pc-sovereignty__legend-soon::before {
    border: 1px solid rgba(255, 255, 255, 0.55);
}

.pc-sovereignty__map {
    position: relative;
    display: grid;
    place-items: center;
}

/* The map column stays out of the layout until cobe has actually started, so
   nothing flashes before the globe appears. Without WebGL the section simply
   falls back to a single column. */
.pc-sovereignty__map {
    display: none;
}

.pc-sovereignty.has-globe .pc-sovereignty__map {
    display: grid;
}

.pc-sovereignty:not(.has-globe) .pc-sovereignty__grid {
    grid-template-columns: minmax(0, 1fr);
}

.pc-sovereignty__globe {
    max-width: 100%;
}

.pc-sovereignty__badges {
    margin-top: 44px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.pc-sovereignty__badges-label {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-align: center;
    text-transform: uppercase;
}

.pc-sovereignty__badges ul {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pc-sovereignty__badges li {
    display: grid;
    place-items: center;
}

.pc-sovereignty__badges img {
    max-width: 100%;
    max-height: 52px;
    opacity: 0.85;
    transition: opacity 180ms ease;
}

.pc-sovereignty__badges li:hover img {
    opacity: 1;
}

/* FAQ: accordion on the left, one fixed visual on the right. Light lavender
   ground so it separates from the navy sovereignty block above it. */
.pc-faq {
    padding: 88px 0 92px;
    background: #f6f8fc;
    color: #242e64;
    font-family: "Ubuntu", sans-serif;
}

.pc-faq__grid {
    display: grid;
    grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
    align-items: center;
    gap: clamp(32px, 4vw, 64px);
}

.pc-faq__col {
    min-width: 0;
}

.pc-faq__intro {
    margin-bottom: 34px;
}

.pc-faq__eyebrow {
    margin: 0 0 18px;
    color: #f28f1e;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.17em;
    line-height: 1.4;
}

.pc-faq__intro h2 {
    margin: 0;
    font-size: clamp(30px, 3vw, 40px);
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.18;
}

.pc-faq__intro h2 span {
    color: #3a3544;
}

.pc-faq__intro h2 strong {
    display: block;
    color: #f28f1e;
    font-weight: 500;
}

.pc-faq__list {
    display: grid;
}

/* Every row carries the accent rail so opening one does not shift the text. */
.pc-faq__item {
    padding-left: 18px;
    border-left: 3px solid transparent;
    transition: border-color 200ms ease;
}

/* Inset shadow rather than border-top, so the hairline starts after the accent
   rail instead of turning a corner with it. */
.pc-faq__item + .pc-faq__item {
    margin-top: 10px;
    box-shadow: inset 0 1px 0 rgba(36, 46, 100, 0.12);
    padding-top: 10px;
}

.pc-faq__item.is-open {
    border-left-color: #f28f1e;
}

.pc-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 16px 18px;
    border: 1px solid transparent;
    border-radius: 10px;
    background: transparent;
    color: #242e64;
    font-family: inherit;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    text-align: left;
    cursor: pointer;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.pc-faq__question:hover {
    background: rgba(36, 46, 100, 0.05);
}

.pc-faq__item.is-open .pc-faq__question {
    border-color: #242e64;
    background: #fff;
}

.pc-faq__chevron {
    flex: none;
    color: #77727f;
    transition: transform 240ms ease, color 180ms ease;
}

.pc-faq__item.is-open .pc-faq__chevron {
    color: #f28f1e;
    transform: rotate(180deg);
}

/* Closed by default in CSS so the markup degrades without JS; the script then
   swaps in the measured height for an exact, smooth transition. */
.pc-faq__answer {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 320ms ease, opacity 240ms ease;
}

.pc-faq__item.is-open .pc-faq__answer {
    max-height: 400px;
    opacity: 1;
}

.pc-faq__answer p {
    margin: 0;
    padding: 6px 18px 18px;
    color: #55515e;
    font-size: 14px;
    line-height: 1.7;
}

.pc-faq__cta {
    margin-top: 30px;
    padding-left: 21px;
}

.pc-faq__more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 50px;
    padding: 13px 26px;
    border: 1px solid #242e64;
    border-radius: 9px;
    background: transparent;
    color: #242e64;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.pc-faq__more:hover {
    background: #242e64;
    color: #fff;
    transform: translateY(-1px);
}

.pc-faq__more span {
    font-size: 18px;
}

/* Dotted navy frame around the visual, mirroring the hero video treatment. */
/* Videoyu saran kalin mor cerceve kaldirildi; oynatici dogrudan bolum zemininde
   duruyor. Kose yuvarlamasi artik .pc-video'nun kendisinde. */
.pc-faq__media {
    position: relative;
}

.pc-faq__media img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 16px 38px rgba(58, 53, 68, 0.18);
}

/* Hero'dan buraya tasinan video oynatici. Kenar isimasi, publiccloud.js'in
   kapsayiciya yazdigi --pc-border-x/y/opacity degerlerini kullanir; imlecin en
   yakin kenarini takip eder. Renkler hex, cunku .pc-shell kapatilmadigi icin
   --pc-orange gibi degiskenler sayfanin bu bolumunde bos doner. */
.pc-video {
    position: relative;
    display: block;
    border-radius: 12px;
}

/* Kapak gorseli 16:9 ve ortasinda logo/yazi var; .pc-faq__media img'in 16/10
   orani ustten alttan kirpip beyaz ic cerceveyi kesiyordu. */
.pc-video .pc-video__poster {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.pc-video::after {
    position: absolute;
    z-index: 2;
    inset: 0;
    padding: 3px;
    border-radius: inherit;
    background: radial-gradient(
        340px 340px at var(--pc-border-x, 50%) var(--pc-border-y, 0px),
        #f28f1e 0%,
        rgba(242, 143, 30, 0.55) 42%,
        rgba(242, 143, 30, 0) 82%
    );
    opacity: var(--pc-border-opacity, 0);
    content: "";
    pointer-events: none;
    transition: opacity 260ms ease;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

/* Ucgen optik olarak sola kacik durdugu icin 4px saga itiliyor. */
.pc-video__play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    padding-left: 4px;
    border: 0;
    border-radius: 50%;
    background: #f28f1e;
    color: #fff;
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: background 180ms ease, transform 180ms ease;
}

.pc-video__play:hover {
    background: #df6209;
    transform: translate(-50%, -50%) scale(1.06);
}

.pc-video__play:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
}

.pc-video-modal {
    position: fixed;
    z-index: 200;
    inset: 0;
    display: grid;
    padding: clamp(16px, 4vw, 48px);
    place-items: center;
    background: rgba(26, 22, 34, 0.82);
    animation: pc-video-modal-in 200ms ease;
}

.pc-video-modal__dialog {
    position: relative;
    width: min(1040px, 100%);
}

.pc-video-modal__close {
    position: absolute;
    z-index: 1;
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 9px;
    background: rgba(26, 22, 34, 0.6);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: background 160ms ease, border-color 160ms ease;
}

.pc-video-modal__close:hover {
    border-color: #fff;
    background: rgba(26, 22, 34, 0.9);
}

.pc-video__player {
    display: block;
    width: 100%;
    max-height: 78vh;
    border-radius: 12px;
    background: #000;
}

@keyframes pc-video-modal-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pc-faq__answer,
    .pc-faq__chevron,
    .pc-faq__more {
        transition: none;
    }
}

/* Closing CTA. Shares the FAQ's light ground and punches a dark, patterned card
   into it — deliberately a card, not a full-bleed band, so it does not read as a
   second Veri Egemenliği section. */
.pc-cta {
    padding: 0 0 96px;
    background: #f6f8fc;
    font-family: "Ubuntu", sans-serif;
}

.pc-cta__card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(30px, 4vw, 56px);
    overflow: hidden;
    padding: clamp(34px, 3.6vw, 54px);
    border-radius: 18px;
    background:
        radial-gradient(circle at 92% 8%, rgba(242, 143, 30, 0.22), transparent 42%),
        radial-gradient(circle at 6% 92%, rgba(103, 88, 232, 0.6), transparent 52%),
        linear-gradient(135deg, #242e64 0%, #3a3544 58%, #3a3544 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 26px 60px rgba(58, 53, 68, 0.24);
    color: #fff;
}

/* Dot grid, faded out toward the right so it never fights the headline. */
.pc-cta__card::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.2) 1px, transparent 0);
    background-size: 16px 16px;
    content: "";
    -webkit-mask: linear-gradient(115deg, #000 0%, rgba(0, 0, 0, 0.35) 46%, transparent 78%);
    mask: linear-gradient(115deg, #000 0%, rgba(0, 0, 0, 0.35) 46%, transparent 78%);
    pointer-events: none;
}

/* Single diagonal sheen over the dots for depth. */
.pc-cta__card::after {
    position: absolute;
    z-index: 0;
    inset: 0;
    background: repeating-linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.045) 0 1px,
        transparent 1px 18px
    );
    content: "";
    opacity: 0.7;
    pointer-events: none;
}

.pc-cta__body,
.pc-cta__actions {
    position: relative;
    z-index: 1;
}

.pc-cta__body {
    max-width: 720px;
}

.pc-cta__eyebrow {
    margin: 0 0 16px;
    color: #f7c7a6;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.17em;
    line-height: 1.4;
}

.pc-cta__card h2 {
    margin: 0;
    font-size: clamp(28px, 2.9vw, 40px);
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.14;
}

.pc-cta__card h2 span {
    color: #fff;
}

.pc-cta__card h2 strong {
    color: #f28f1e;
    font-weight: 500;
}

.pc-cta__note {
    max-width: 620px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 16px;
    line-height: 1.7;
}

.pc-cta__points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.pc-cta__points li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px;
    line-height: 1.4;
}

.pc-cta__points svg {
    flex: none;
    color: #f7c7a6;
}

.pc-cta__actions {
    display: grid;
    justify-items: stretch;
    gap: 14px;
    min-width: 250px;
}

.pc-cta__actions .pc-button {
    min-height: 58px;
}

.pc-cta__phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 52px;
    padding: 10px 24px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    text-decoration: none;
    transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.pc-cta__phone:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.13);
    color: #fff;
    transform: translateY(-1px);
}

.pc-cta__phone svg {
    flex: none;
    color: #f7c7a6;
}

.pc-cta__phone span {
    display: grid;
    gap: 1px;
    text-align: left;
}

.pc-cta__phone em {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-style: normal;
    line-height: 1.3;
}

.pc-cta__phone strong {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

/* Contact form. Same card silhouette as the CTA above it, inverted to light so
   the two read as a pair rather than two competing dark blocks. */
.pc-contact {
    padding: 0 0 96px;
    background: #f6f8fc;
    font-family: "Ubuntu", sans-serif;
}

.pc-contact__card {
    display: grid;
    grid-template-columns: minmax(0, 400px) minmax(0, 1fr);
    align-items: center;
    gap: clamp(32px, 4vw, 68px);
    padding: clamp(30px, 3.4vw, 52px);
    border: 1px solid #dde8f8;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 22px 55px rgba(58, 53, 68, 0.07);
}

.pc-contact__eyebrow {
    margin: 0 0 16px;
    color: #f28f1e;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.17em;
    line-height: 1.4;
}

.pc-contact__card h2 {
    margin: 0;
    color: #3a3544;
    font-size: clamp(28px, 2.8vw, 38px);
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.14;
}

.pc-contact__card h2 strong {
    display: block;
    color: #f28f1e;
    font-weight: 500;
}

.pc-contact__note {
    margin: 18px 0 0;
    color: #55515e;
    font-size: 16px;
    line-height: 1.7;
}

/* Telefon ve e-posta kutulari yan yana; dar alanda alt alta sariyorlar. */
.pc-contact__channels {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.pc-contact__channel {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 11px 20px;
    border: 1px solid #dde8f8;
    border-radius: 9px;
    background: #f6f8fc;
    color: #242e64;
    text-decoration: none;
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.pc-contact__channel:hover {
    border-color: #f28f1e;
    background: #fff;
    color: #242e64;
    transform: translateY(-1px);
}

.pc-contact__channel svg {
    flex: none;
    color: #f28f1e;
}

.pc-contact__channel span {
    display: grid;
    gap: 1px;
    text-align: left;
}

.pc-contact__channel em {
    color: #77727f;
    font-size: 12px;
    font-style: normal;
    line-height: 1.3;
}

.pc-contact__channel strong {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.pc-contact__alert {
    margin-bottom: 18px;
    padding: 13px 16px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.5;
}

/* Tailwind's .hidden is the toggle the form script uses; keep it winning. */
.pc-contact__alert.hidden {
    display: none;
}

.pc-contact__alert--ok {
    border: 1px solid #bfe6cd;
    background: #f0faf4;
    color: #1d7a45;
}

.pc-contact__alert--error {
    border: 1px solid #f2c9c9;
    background: #fdf3f3;
    color: #b3312f;
}

.pc-contact__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.pc-contact__field--wide {
    grid-column: 1 / -1;
}

/* Element+class so these beat Tailwind's form base styles regardless of order. */
.pc-contact input.pc-contact__input,
.pc-contact textarea.pc-contact__input {
    display: block;
    width: 100%;
    padding: 15px 18px;
    border: 1px solid #dde8f8;
    border-radius: 10px;
    background: #f6f8fc;
    box-shadow: none;
    color: #242e64;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.5;
    transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
    appearance: none;
}

.pc-contact input.pc-contact__input::placeholder,
.pc-contact textarea.pc-contact__input::placeholder {
    color: #77727f;
    opacity: 1;
}

.pc-contact input.pc-contact__input:focus,
.pc-contact textarea.pc-contact__input:focus {
    border-color: #f28f1e;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(242, 143, 30, 0.15);
    outline: none;
}

.pc-contact textarea.pc-contact__input--area {
    min-height: 132px;
    resize: vertical;
}

.pc-contact__error {
    display: block;
    margin-top: 6px;
    color: #b3312f;
    font-size: 12px;
}

.pc-contact__consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
}

.pc-contact input#kvkk {
    flex: none;
    width: 17px;
    height: 17px;
    margin-top: 2px;
    border: 1px solid #c7d8f2;
    border-radius: 4px;
    accent-color: #f28f1e;
    cursor: pointer;
}

.pc-contact__consent label {
    color: #55515e;
    font-size: 13px;
    line-height: 1.55;
    cursor: pointer;
}

.pc-contact__consent button {
    padding: 0;
    border: 0;
    background: none;
    color: #242e64;
    font: inherit;
    font-weight: 700;
    text-align: left;
    text-decoration: none;
    text-underline-offset: 2px;
    cursor: pointer;
}

.pc-contact__consent button:hover {
    color: #f28f1e;
    text-decoration: underline;
}

.pc-contact__actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 24px;
}

.pc-contact__actions .pc-button {
    min-width: 200px;
}

/* Footer. Full-bleed dark with the same digital pattern language as the CTA
   card, dialled down so ten rows of links stay readable on top of it. */
.pc-footer {
    position: relative;
    overflow: hidden;
    padding: 60px 0 0;
    background:
        radial-gradient(circle at 88% 4%, rgba(242, 143, 30, 0.16), transparent 40%),
        radial-gradient(circle at 4% 96%, rgba(103, 88, 232, 0.5), transparent 46%),
        linear-gradient(160deg, #242e64 0%, #3a3544 56%, #3a3544 100%);
    color: #fff;
    font-family: "Ubuntu", sans-serif;
}

.pc-footer::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.16) 1px, transparent 0);
    background-size: 18px 18px;
    content: "";
    -webkit-mask: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.4) 42%, transparent 82%);
    mask: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.4) 42%, transparent 82%);
    pointer-events: none;
}

.pc-footer::after {
    position: absolute;
    z-index: 0;
    inset: 0;
    background: repeating-linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.035) 0 1px,
        transparent 1px 20px
    );
    content: "";
    pointer-events: none;
}

.pc-footer .pc-container {
    position: relative;
    z-index: 1;
}

.pc-footer__top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.pc-footer__brand {
    display: grid;
    justify-items: start;
    gap: 8px;
}

.pc-footer__logo {
    width: 168px;
    margin-bottom: 6px;
}

.pc-footer__contact {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.5;
    text-decoration: none;
    transition: color 160ms ease;
}

.pc-footer__contact:hover {
    color: #f28f1e;
}

.pc-footer__social {
    display: flex;
    gap: 9px;
    margin-top: 10px;
}

.pc-footer__social a {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.pc-footer__social a:hover {
    border-color: #f28f1e;
    background: rgba(242, 143, 30, 0.16);
    color: #f28f1e;
}

.pc-footer__badges {
    display: grid;
    grid-auto-flow: column;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pc-footer__badges img {
    max-width: 100%;
    max-height: 44px;
    opacity: 0.8;
    transition: opacity 180ms ease;
}

.pc-footer__badges li:hover img {
    opacity: 1;
}

.pc-footer__columns {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 28px;
    padding: 40px 0 44px;
}

.pc-footer__heading {
    margin: 0 0 16px;
    color: #f28f1e;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.pc-footer__col ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pc-footer__col a {
    color: #fff;
    font-size: 13px;
    line-height: 1.5;
    text-decoration: none;
    transition: color 160ms ease;
}

.pc-footer__col a:hover {
    color: #f28f1e;
}

.pc-footer__bottom {
    padding: 20px 0 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
}

.pc-footer__bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    line-height: 1.5;
}

/* 1240px altinda 6 kart yan yana sikisiyor (kart ~157px, aciklama 6 satira
   cikiyor); bu yuzden 6 -> 4 gecisi bolumun 1100px kiriliminin uzerinde. */
@media (max-width: 1240px) {
    .pc-products--static .pc-product-card {
        flex-basis: calc((100% - 55px) / 4);
    }
}

@media (max-width: 1100px) {
    .pc-navbar__inner {
        gap: 15px;
    }

    .pc-brand img {
        width: 150px;
    }

    .pc-navlinks {
        gap: 13px;
    }

    .pc-navlinks a,
    .pc-navbar__cta {
        font-size: 13px;
    }

    .pc-hero__inner {
        grid-template-columns: minmax(0, 1fr) minmax(400px, 0.9fr);
        gap: 38px;
    }

    .pc-products__track {
        grid-auto-columns: calc((100% - 54px) / 4);
    }

    /* 4 ustte + 2 altta ortali. */
    .pc-products--static .pc-product-card {
        flex-basis: calc((100% - 55px) / 4);
    }

    /* Both columns shrink together here; a fixed left column would starve
       the visual before the layout stacks at 920px. */
    .pc-faq__grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
        gap: 32px;
    }
}

@media (max-width: 920px) {
    .pc-navlinks,
    .pc-navbar__actions {
        display: none;
    }

    .pc-mobile-menu {
        display: block;
    }

    .pc-hero__inner {
        grid-template-columns: 1fr;
        gap: 48px;
        padding-top: 58px;
        padding-bottom: 64px;
    }

    .pc-hero__copy {
        max-width: 700px;
    }

    .pc-overview__intro {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 54px;
    }

    .pc-overview__summary {
        max-width: 720px;
    }

    /* 9 kart 2 kolonda 4+1 ile bitiyordu; simetriyi korumak icin
       bu kirilimda da 3 kolon kalir, yalnizca bosluklar daralir. */
    .pc-overview__features {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 34px 24px;
        margin-top: 48px;
    }


    .pc-products__intro {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 28px;
    }

    .pc-products__intro > p {
        max-width: 760px;
    }

    .pc-products__track {
        grid-auto-columns: calc((100% - 18px) / 2);
    }

    /* 3 + 3. */
    .pc-products--static .pc-product-card {
        flex-basis: calc((100% - 37px) / 3);
    }

    .pc-stories .pc-products__track {
        grid-auto-columns: 100%;
    }

    .pc-sovereignty__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .pc-faq__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .pc-cta__card {
        grid-template-columns: minmax(0, 1fr);
        gap: 30px;
    }

    .pc-cta__actions {
        justify-items: start;
        grid-auto-flow: column;
        justify-content: start;
    }

    .pc-contact__card {
        grid-template-columns: minmax(0, 1fr);
        gap: 32px;
    }

    .pc-footer__columns {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 30px 24px;
    }

    .pc-footer__badges {
        gap: 22px;
    }

    .pc-footer__badges img {
        max-height: 38px;
    }
}

@media (max-width: 640px) {
    .pc-container {
        width: min(100% - 32px, 1240px);
    }

    .pc-topbar__inner {
        min-height: 42px;
    }

    .pc-topbar__phone,
    .pc-topbar__divider,
    .pc-topbar__about,
    .pc-topbar__support,
    .pc-topbar__quote,
    .pc-topmenu {
        display: none;
    }

    .pc-topbar__actions {
        gap: 14px;
    }

    .pc-navbar__inner {
        min-height: 64px;
    }

    .pc-navbar--compact .pc-navbar__inner {
        min-height: 54px;
    }

    .pc-navbar--compact .pc-brand img {
        width: 128px;
    }

    .pc-brand img {
        width: 142px;
    }

    .pc-brand__label {
        display: none;
    }

    .pc-mobile-menu__panel {
        top: 64px;
        padding-right: 16px;
        padding-left: 16px;
    }

    .pc-navbar--compact .pc-mobile-menu__panel {
        top: 54px;
    }

    .pc-shell.pc-navbar-is-fixed .pc-hero {
        margin-top: 54px;
    }

    .pc-hero,
    .pc-hero__inner {
        min-height: auto;
    }

    .pc-hero__inner {
        padding-top: 48px;
        padding-bottom: 52px;
    }

    /* Dar ekranda gorselin sag yarisi kirpilir; metin daha genis
       bir alana yayildigi icin pece de tum yuzeye yayilir. */
    .pc-hero::after {
        background: linear-gradient(
            170deg,
            rgba(255, 255, 255, 0.88) 0%,
            rgba(255, 255, 255, 0.72) 46%,
            rgba(255, 255, 255, 0.34) 78%,
            rgba(255, 255, 255, 0.12) 100%
        );
    }

    .pc-hero h1 {
        font-size: clamp(34px, 12vw, 42px);
    }

    .pc-hero__description {
        font-size: 16px;
    }

    .pc-hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .pc-button {
        width: 100%;
    }

    .pc-overview {
        padding: 70px 0 76px;
        background-position: 35% center;
    }

    .pc-overview__eyebrow {
        margin-bottom: 17px;
    }

    .pc-overview h2 {
        font-size: clamp(32px, 10vw, 40px);
    }

    .pc-overview__summary {
        font-size: 16px;
        line-height: 1.6;
    }


    .pc-overview__features {
        grid-template-columns: 1fr;
        gap: 36px;
        margin-top: 52px;
    }

    .pc-overview__feature {
        padding-top: 22px;
    }

    .pc-products {
        padding: 70px 0 52px;
    }

    .pc-products__intro {
        margin-bottom: 42px;
    }

    .pc-products h2 {
        font-size: clamp(32px, 11vw, 40px);
    }

    .pc-products__intro > p {
        font-size: 16px;
        line-height: 1.6;
    }

    .pc-products__track {
        grid-auto-columns: 100%;
    }

    /* 2 + 2 + 2; tek kart genisligine 480px altinda iniliyor. Alttaki
       min-height tek kartlik karusel icin; saran duzende gereksiz yukseklik. */
    .pc-products--static .pc-product-card {
        flex-basis: calc((100% - 19px) / 2);
        min-height: 236px;
    }

    .pc-product-card {
        min-height: 326px;
    }

    .pc-pricing {
        padding: 64px 0 72px;
    }

    .pc-pricing__intro {
        margin-bottom: 32px;
    }

    .pc-pricing__card {
        border-radius: 12px;
    }

    .pc-pricing__toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 12px 20px;
    }

    .pc-pricing__select {
        width: 100%;
    }

    .pc-toggle {
        justify-content: center;
    }

    .pc-pricing-table thead th,
    .pc-pricing-table tbody td {
        padding: 9px 16px;
    }

    .pc-pricing-table thead th:first-child,
    .pc-pricing-table tbody td:first-child {
        padding-left: 20px;
    }

    .pc-compare {
        padding: 66px 0 72px;
    }

    .pc-compare__intro {
        margin-bottom: 32px;
    }

    .pc-compare__intro h2 {
        font-size: clamp(28px, 8vw, 36px);
    }

    .pc-compare__note {
        font-size: 14px;
    }

    .pc-compare__card {
        border-radius: 10px;
    }

    .pc-compare-table thead th,
    .pc-compare-table tbody td {
        padding: 9px 14px;
    }

    .pc-compare-table thead th:first-child,
    .pc-compare-table tbody th {
        padding-left: 18px;
    }

    .pc-stories {
        padding: 66px 0 60px;
    }

    .pc-stories__intro {
        margin-bottom: 32px;
    }

    .pc-stories__intro h2 {
        font-size: clamp(28px, 8vw, 36px);
    }

    .pc-story-card {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .pc-story-card__media {
        padding: 24px;
        border-radius: 11px 11px 0 0;
    }

    .pc-story-card__media img {
        max-width: 108px;
    }

    .pc-story-card__body {
        padding: 22px 20px 20px;
    }

    .pc-sovereignty {
        padding: 66px 0 60px;
    }

    .pc-sovereignty__col {
        gap: 24px;
    }

    .pc-sovereignty__intro h2 {
        font-size: clamp(28px, 8vw, 36px);
    }

    .pc-sovereignty__badges {
        margin-top: 40px;
        padding-top: 28px;
    }

    .pc-sovereignty__badges ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 26px;
    }

    .pc-faq {
        padding: 66px 0 70px;
    }

    .pc-faq__intro {
        margin-bottom: 26px;
    }

    .pc-faq__intro h2 {
        font-size: clamp(26px, 7.5vw, 34px);
    }

    .pc-faq__item {
        padding-left: 12px;
    }

    .pc-faq__question {
        padding: 14px;
        font-size: 16px;
    }

    .pc-faq__answer p {
        padding: 4px 14px 16px;
        font-size: 14px;
    }

    .pc-faq__cta {
        padding-left: 15px;
    }

    .pc-faq__more {
        width: 100%;
        justify-content: center;
    }

    .pc-faq__media img {
        aspect-ratio: 4 / 3;
        border-radius: 10px;
    }

    .pc-cta {
        padding: 0 0 70px;
    }

    .pc-cta__card {
        padding: 30px 22px;
        border-radius: 14px;
    }

    .pc-cta__card h2 {
        font-size: clamp(25px, 7vw, 32px);
    }

    .pc-cta__note {
        font-size: 15px;
    }

    .pc-cta__actions {
        grid-auto-flow: row;
        justify-items: stretch;
        min-width: 0;
    }

    .pc-contact {
        padding: 0 0 70px;
    }

    .pc-contact__card {
        padding: 26px 20px;
        border-radius: 14px;
    }

    .pc-contact__card h2 {
        font-size: clamp(25px, 7vw, 32px);
    }

    .pc-contact__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
    }

    .pc-contact__actions {
        justify-content: stretch;
    }

    .pc-footer {
        padding-top: 46px;
    }

    .pc-footer__top {
        flex-direction: column;
        align-items: flex-start;
        gap: 26px;
    }

    .pc-footer__badges {
        grid-auto-flow: row;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
        width: 100%;
    }

    .pc-footer__columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 20px;
        padding: 32px 0 34px;
    }
}

/* ---------------------------------------------------------------------------
   3. parti bilesenlerin marka paletine uyarlanmasi (yalnizca landing)
   ---------------------------------------------------------------------------
   Cerez banner'i (cc-nb-* / ccp---*) ve reCAPTCHA rozeti kendi renklerini
   tasiyor: #393544, #212529, #f9911e, #f5f7fa, #fafafa, #207bff, #808080.
   Bu dosya SADECE publicCloud2/publicCloud2en sayfalarinda yuklendigi icin
   asagidaki kurallar ana siteyi etkilemez - orada banner eski haliyle kalir.
   Eklentinin kendi CSS'i sonra yuklendiginden !important gerekiyor.
   --------------------------------------------------------------------------- */

/* Ortak layout'un body varsayilanlari (#292929 metin, #fafafa zemin):
   landing'de palet degerleriyle degistirilir. Sadece bu sayfada gecerli. */
body {
    background: #fff;
    color: #3a3544;
}

/* Banner govdesi: koyu notr zemin + acik metin */
.cc-nb-main-container,
#ccp---nb.ccp---nb {
    background: #3a3544 !important;
    color: #edebec !important;
}

.cc-nb-text-container,
.cc-nb-title-container,
.cc-nb-buttons-container {
    color: #edebec !important;
}

/* Banner icindeki baglantilar (Cookie Policy / Privacy Policy) */
.cc-nb-main-container a,
#ccp---nb a {
    color: #f28f1e !important;
}

/* Butonlar: "Accept All" dolu turuncu, digerleri acik zeminli */
.cc-nb-okagree {
    background: #f28f1e !important;
    border-color: #f28f1e !important;
    color: #fff !important;
}

.cc-nb-okagree:hover {
    background: #df6209 !important;
    border-color: #df6209 !important;
}

.cc-nb-reject,
.cc-nb-changep {
    background: #f6f8fc !important;
    border-color: #eae9ec !important;
    color: #55515e !important;
}

.cc-nb-reject:hover,
.cc-nb-changep:hover {
    background: #eae9ec !important;
    border-color: #77727f !important;
    color: #3a3544 !important;
}

/* Kose butonu (cerez ayarlarini yeniden acan yuzen dugme) */
.cc-nb-coi-btn {
    background: #6758e8 !important;
}

/* Ayarlar paneli: acik zemin, palet notrleri */
.ccp---dp,
.ccp---cp,
#ccp---cp {
    background: #fff !important;
    color: #3a3544 !important;
}

.ccp---dp a,
.ccp---cp a,
#ccp---cp a {
    color: #f28f1e !important;
}

/* reCAPTCHA rozeti golgesi */
.grecaptcha-badge {
    box-shadow: 0 0 6px rgba(119, 114, 127, 0.4) !important;
}

/* Iki kart yan yana okunamayacak kadar daralinca tek sutuna dusuyor. */
@media (max-width: 480px) {
    .pc-products--static .pc-product-card {
        flex-basis: 100%;
    }
}
