.tgmenu__nav .logo img {
    height: 40px;
    margin-top: 2px;
}

.footer__content-right .accreditations img {
    max-height: 40px;
    width: 110px;
}

/* Logo */
.footer__logo img {
    width: 120px;
    height: auto;
    display: block;
}

/* Ensure the whole "Our Offices" block uses full width */
.team__social-wrap.footer__social-wrap,
.team__social-wrap.footer__social-wrap .footer__offices {
    width: 100%;
}

/* Offices row */
.footer__offices {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 48px 0px;
}

/* Each office card */
.footer__office {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1 1 0;
    min-width: 0;
    padding: 0 28px;
    gap: 10px;
}

/* Flag */
.footer__office img {
    width: 36px;
    display: block;
}

/* Address formatting */
.footer__office p {
    white-space: pre-line;
    margin: 0;
    line-height: 1.45;
}

/* Subtle tapered separator between offices */
.footer__office:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    right: 0;
    width: 1px;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0),
        rgba(255,255,255,0.22),
        rgba(255,255,255,0)
    );
}

/* Brand row (logo + about) */
.footer__brand {
    display: flex;
    align-items: center;
    gap: 39px;
    margin-bottom: 22px;
}

.footer__menu {
    margin-top: 40px;
}

.footer__about {
    flex: 1;
    min-width: 0;
    margin-top: 37px;
}

.footer__about .title {
    margin: 0 0 6px 0;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px;
    display: block;
}

.footer__about p {
    margin: 0;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
}

/* Links list grid (right panel) */
.footer__menu .list-wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
    row-gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer__menu .list-wrap li {
    margin: 0;
}

.footer__menu .list-wrap a {
    display: inline-block;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    line-height: 1.2;
    padding: 2px 0;
}

.footer__menu .list-wrap a:hover {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* =========================================
   CENTER "FOLLOW US" ICONS (scoped)
   ========================================= */

/* Center the UL itself */
.footer__content-left .footer__social-wrap > .list-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
}

/* Ensure list items don't carry theme margins */
.footer__content-left .footer__social-wrap > .list-wrap li {
    margin: 0;
}

/* Keep anchors tight so centering is true */
.footer__content-left .footer__social-wrap > .list-wrap li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* =========================================
   MOBILE OPTIMISATION
   ========================================= */

@media (max-width: 768px) {
    /* Brand stacks nicely */
    .footer__brand {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 14px;
        margin-bottom: 18px;
    }

    .footer__about {
        margin-left: 0;
        margin-top: 0;
    }

    /* Offices stack */
    .footer__offices {
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .footer__office {
        padding: 16px 0;
    }

    /* Switch separator to horizontal on stacked layout */
    .footer__office:not(:last-child)::after {
        top: auto;
        bottom: 0;
        left: 10%;
        right: 10%;
        width: auto;
        height: 1px;
        background: linear-gradient(
            to right,
            rgba(255,255,255,0),
            rgba(255,255,255,0.22),
            rgba(255,255,255,0)
        );
    }

    /* Follow icons: keep centered + add a bit more breathing room */
    .footer__content-left .footer__social-wrap > .list-wrap {
        gap: 12px;
        padding-top: 6px;
    }

    .footer__menu {text-align:center;}
}

@media (max-width: 576px) {
    /* Links become single column */
    .footer__menu .list-wrap {
        grid-template-columns: 1fr;
    }

    /* Accreditations: allow wrapping and center */
    .footer__menu .list-wrap.accreditations {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px;
    }
}

img.email-svg {width: 170px;top: 1px;position: relative;}

.alpha-parentheses {
  list-style: none;
  counter-reset: alpha-counter;
  padding-left: 29px;
  font-size: 20px;
}

.alpha-parentheses li {
  counter-increment: alpha-counter;
  position: relative;
  padding-left: 40px;
  margin-bottom: 20px;
}

.alpha-parentheses li::before {
  content: "(" counter(alpha-counter, lower-alpha) ")";
  position: absolute;
  left: 0;
  font-weight: 600;
}

ul.policy-text {font-size: 20px;}

/* CONTACT PAGE: Offices — flag left, text still centered */
.offices-list .office-item{
    position: relative;
    display: grid;
    grid-template-columns: 98px 266px 118px;
    align-items: center;
    padding: 18px 0;
    gap: 14px;
    text-align: center;
}

/* Keep icon in the left column */
.offices-list .office-item .office-flag{
  grid-column: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Center the address block in the middle column */
.offices-list .office-item .content{
  grid-column: 2;
}

.offices-list .office-item .content p{
  margin: 0;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
}

/* Flag sizing */
.offices-list .office-flag img{
  width: 36px;
  height: 36px;
  border-radius: 6px;
}

/* Tapered divider stays the same */
.offices-list .office-item:not(:last-child)::after{
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0),
    rgba(255,255,255,0.22),
    rgba(255,255,255,0)
  );
}

/* On small screens, drop the spacer so it doesn’t feel cramped */
@media (max-width: 576px){
  .offices-list .office-item{
    grid-template-columns: 36px 1fr; /* flag | text */
  }
}

/* Flag column container */
.offices-list .office-flag{
  grid-column: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* Circle around only the flag */
.flag-circle{
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    padding: 10px;
}

.flag-circle img{
  width: 28px;
  height: 28px;
  border-radius: 4px;
}

/* Country name sits BELOW circle */
.office-country{
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: rgba(255,255,255,0.85);
}

/* Hero button alignment */
.banner__btn {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Learn More button styling */
.tg-btn-learn {
    background: #5D5D5D;
    color: #ffffff;
    transition: 0.3s ease;
    height: 48px;
}

.tg-btn-learn:hover {
    background: var(--tg-color-white-default);
    color: var(--tg-color-dark);
}

pre.pgp-keyblock {
    height: 280px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    word-break: break-all;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px;
    white-space: pre-wrap;
    line-height: 18px;
    font-size: 12.3px;
    border-bottom: none;
    padding: 14px;
    margin-top: 16px;
}

/* PGP copy block */
.pgp-copy {
  width: 100%;
}

.pgp-copy__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.pgp-copy__btn {
  padding: 10px 16px;
  border-radius: 8px;
  line-height: 1;
}

.pgp-copy__status {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  opacity: 0;
  transform: translateY(3px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.pgp-copy__status.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Honeypot: visually hidden but present for bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* =========================================
   SHARED: LinkedIn & Volunteer buttons
   ========================================= */

.btn-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0E76A8;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-linkedin i {
    font-size: 18px;
}

.btn-linkedin span {
    border-left: 1px solid rgba(255,255,255,0.25);
    padding-left: 10px;
    font-size: 14px;
}

.btn-linkedin:hover {
    background: #084461;
    color: #fff;
}

.btn-volunteer {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #595959;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-volunteer i {
    font-size: 18px;
}

.btn-volunteer span {
    border-left: 1px solid rgba(255,255,255,0.25);
    padding-left: 10px;
    font-size: 14px;
}

.btn-volunteer:hover {
    background: #3e3e3e;
    color: #fff;
}

/* =========================================
   SHARED: Team layout & section dividers
   ========================================= */

.additional-team {
    position: relative;
}

.additional-team::before {
    content: "";
    position: absolute;
    top: 15%;
    bottom: 15%;
    left: 50%;
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(255,255,255,0.2),
        rgba(255,255,255,0.3),
        rgba(255,255,255,0.2),
        transparent
    );
    transform: translateX(-50%);
}

@media (max-width: 991px) {
    .additional-team::before {
        display: none;
    }
}

.team-split {
    padding-top: 30px;
    padding-bottom: 30px;
}

.team-avatar img {
  width: 132px;
  height: 132px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
}

.member-row {
  padding: 10px 0;
}

.additional-team .btn-linkedin {
  padding: 8px 14px;
  font-size: 14px;
}
.additional-team .btn-linkedin span {
  font-size: 13px;
}

.section-divider {
    position: relative;
    width: 100%;
    margin: 60px 0;
    text-align: center;
}

.section-divider span {
    display: block;
    height: 1px;
    width: 60%;
    margin: 0 auto;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0),
        rgba(255,255,255,0.25),
        rgba(255,255,255,0.35),
        rgba(255,255,255,0.25),
        rgba(255,255,255,0)
    );
}

/* =========================================
   CONTACT PAGE: Form styled to match login
   ========================================= */

.contact__form-wrap {
    padding: 42px 38px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    backdrop-filter: blur(14px);
}

.contact__form .form-grp {
    position: relative;
    margin-bottom: 18px;
}

.contact__form .form-grp label {
    display: block;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
}

.contact__form .form-grp input,
.contact__form .form-grp textarea,
.contact__form .form-grp select {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    outline: none;
    box-shadow: none;
    transition: 0.3s ease;
    font-size: 15px;
}

.contact__form .form-grp input,
.contact__form .form-grp select {
    height: 62px;
    padding: 0 18px;
}

.contact__form .form-grp textarea {
    min-height: 180px;
    padding: 16px 18px;
    resize: vertical;
}

.contact__form .form-grp input::placeholder,
.contact__form .form-grp textarea::placeholder {
    color: rgba(255,255,255,0.42);
}

.contact__form .form-grp input:focus,
.contact__form .form-grp textarea:focus,
.contact__form .form-grp select:focus {
    border-color: rgba(77,163,255,0.6);
    background: rgba(255,255,255,0.06);
    color: #fff;
}

.contact__form .tg-btn {
    width: 100%;
    justify-content: center;
    min-height: 58px;
    border-radius: 14px;
    margin-top: 8px;
}

.contact__form .ajax-response {
    margin-top: 14px !important;
    color: rgba(255,255,255,0.8);
    text-align: center;
}

.contact__form .form-grp select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 44px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 16 16'%3E%3Cpath fill='white' fill-opacity='0.75' d='M4.2 6.2a1 1 0 0 1 1.4 0L8 8.6l2.4-2.4a1 1 0 1 1 1.4 1.4l-3.1 3.1a1 1 0 0 1-1.4 0L4.2 7.6a1 1 0 0 1 0-1.4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px 14px;
}

.contact__form .form-grp select option {
    background: #111827;
    color: #fff;
}

.contact__form span {margin-top:25px;text-align: center;display: block;}

@media (max-width: 767px) {
    .contact__form-wrap {
        padding: 30px 22px;
        border-radius: 18px;
    }

    .contact__form .form-grp input,
    .contact__form .form-grp select {
        height: 56px;
    }

    .contact__form .form-grp textarea {
        min-height: 160px;
    }
}

/* =========================================
   LOGIN / REGISTER / FORGOT-PASSWORD PAGE
   ========================================= */

.cyse-login-section {
    position: relative;
    padding: 140px 0 84px;
    overflow: hidden;
}

.cyse-login-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(420px, 500px);
    gap: 60px;
    align-items: center;
}

.cyse-login-info {
    max-width: 640px;
    margin-top: 26px;
}

.cyse-login-intro {
    max-width: 640px;
}

.cyse-login-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #4da3ff;
}

.cyse-login-heading {
    margin: 0 0 18px;
    font-size: 54px;
    line-height: 1.05;
    color: #fff;
}

.cyse-login-copy {
    margin: 0 0 34px;
    max-width: 560px;
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255,255,255,0.72);
}

.cyse-login-images {
    position: relative;
    width: 100%;
    max-width: 620px;
    height: 460px;
    margin-top: 10px;
}

.cyse-login-image-card {
    position: absolute;
    overflow: hidden;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.03);
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
    backdrop-filter: blur(8px);
}

.cyse-login-image-card--main {
    width: 395px;
    height: 395px;
    top: -5px;
    left: -4px;
    z-index: 3;
    animation: cyseFloatMain 8s ease-in-out infinite;
}

.cyse-login-image-card--secondary {
    width: 308px;
    height: 308px;
    top: -21px;
    right: -16px;
    z-index: 2;
    animation: cyseFloatSecondary 10s ease-in-out infinite;
}

.cyse-login-images::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

@keyframes cyseFloatMain {
    0%   { transform: translateY(0px) translateX(0px) rotate(0deg); }
    25%  { transform: translateY(-8px) translateX(4px) rotate(1deg); }
    50%  { transform: translateY(-14px) translateX(0px) rotate(0deg); }
    75%  { transform: translateY(-6px) translateX(-4px) rotate(-1deg); }
    100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
}

@keyframes cyseFloatSecondary {
    0%   { transform: translateY(0px) translateX(0px); }
    25%  { transform: translateY(8px) translateX(-6px); }
    50%  { transform: translateY(14px) translateX(-2px); }
    75%  { transform: translateY(6px) translateX(4px); }
    100% { transform: translateY(0px) translateX(0px); }
}

@keyframes cyseFloatTertiary {
    0%   { transform: translateY(0px) translateX(0px); }
    25%  { transform: translateY(-6px) translateX(5px); }
    50%  { transform: translateY(-10px) translateX(0px); }
    75%  { transform: translateY(-4px) translateX(-5px); }
    100% { transform: translateY(0px) translateX(0px); }
}

.cyse-login-image-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.cyse-login-image-card--offset {
    transform: translateY(40px);
}

.cyse-login-panel {
    display: flex;
    justify-content: center;
}

.cyse-login-card {
    width: 100%;
    padding: 42px 38px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    backdrop-filter: blur(14px);
}

.cyse-login-card .title {
    margin-bottom: 12px;
    color: #fff;
}

.cyse-login-card-text {
    margin-bottom: 28px;
    color: rgba(255,255,255,0.68);
    line-height: 1.7;
}

.cyse-login-form .form-grp {
    position: relative;
    margin-bottom: 18px;
}

.cyse-login-form .form-grp label {
    position: absolute;
    top: 50%;
    left: 7px;
    transform: translateY(-50%);
    z-index: 2;
    margin: 0;
    width: 50px;
}

.cyse-login-form .form-grp input {
    width: 100%;
    height: 62px;
    padding: 0px 18px 0 68px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    outline: none;
    transition: 0.3s ease;
}

.cyse-login-form .form-grp input::placeholder {
    color: rgba(255,255,255,0.42);
}

.cyse-login-form .form-grp input:focus {
    border-color: rgba(77,163,255,0.6);
    background: rgba(255,255,255,0.06);
}

.cyse-login-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 8px 0 24px;
    flex-wrap: wrap;
}

.cyse-login-row .checkbox-grp {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.cyse-login-row .checkbox-grp label {
    margin: 0;
    color: rgba(255,255,255,0.72);
    cursor: pointer;
}

.cyse-forgot-link {
    color: #4da3ff;
    text-decoration: none;
    font-weight: 500;
}

.cyse-forgot-link:hover {
    color: #fff!important;
}

.cyse-login-card .tg-btn {
    width: 100%;
    justify-content: center;
    min-height: 58px;
    border-radius: 14px;
}

.cyse-login-card .bottom-text {
    display: block;
    margin-top: 22px;
    text-align: center;
    color: rgba(255,255,255,0.65);
}

.cyse-login-card .bottom-text a {
    color: #4da3ff;
}

.cyse-login-card > .login-form-icon {
    float: right;
    font-size: 2em;
    margin-top: -43px;
}

.login-form-icon-label {
    margin-top: 0px !important;
    font-size: 1.2em !important;
    margin-left: -5px !important;
    color: #888888;
}

.cyse-login-form {margin-top: 33px;}
.checkbox-grp input {margin-top: -8px;}

@media (max-width: 1199px) {
    .cyse-login-layout {
        grid-template-columns: 1fr 440px;
        gap: 40px;
    }

    .cyse-login-heading {
        font-size: 46px;
    }
}

@media (max-width: 991px) {
    .cyse-login-section {
        padding: 120px 0 90px;
    }

    .cyse-login-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cyse-login-info {
        display: contents;
    }

    .cyse-login-intro {
        order: 1;
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .cyse-login-panel {
        order: 2;
        width: 100%;
    }

    .cyse-login-images {
        order: 3;
        margin-left: auto;
        margin-right: auto;
        margin-top: 0;
        max-width: 360px;
        height: 250px;
    }

    .cyse-login-copy {
        margin-left: auto;
        margin-right: auto;
    }

    .cyse-login-card {
        max-width: 100%;
    }

    .cyse-login-image-card--main {
        width: 210px;
        height: 210px;
        top: 20px;
        left: 0;
    }

    .cyse-login-image-card--secondary {
        width: 155px;
        height: 155px;
        top: 0;
        right: 0;
    }
}

@media (max-width: 767px) {
    .cyse-login-heading {
        font-size: 36px;
    }

    .cyse-login-copy {
        font-size: 15px;
    }

    .cyse-login-images {
        max-width: 260px;
        height: 180px;
    }

    .cyse-login-image-card--main {
        width: 200px;
        height: 200px;
        top: 24px;
        left: -43px;
    }

    .cyse-login-image-card--secondary {
        width: 155px;
        height: 155px;
        top: 0;
        right: -43px;
    }

    .cyse-login-card {
        padding: 30px 22px;
        border-radius: 18px;
    }

    .cyse-login-form .form-grp input {
        height: 56px;
    }
}

/* =========================================
   REGISTER PAGE: Additional styles
   ========================================= */

.cyse-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cyse-register-benefits {
    margin-top: 34px;
    display: grid;
    gap: 18px;
}

.cyse-register-benefit {
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 10px 35px rgba(0,0,0,0.18);
}

.cyse-register-benefit h4 {
    margin: 0 0 8px;
    font-size: 18px;
    color: #fff;
}

.cyse-register-benefit p {
    margin: 0;
    color: rgba(255,255,255,0.68);
    line-height: 1.7;
    font-size: 15px;
}

.cyse-policy-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 4px 0 22px;
}

.cyse-policy-check input {
    margin-top: 5px;
    flex: 0 0 auto;
}

.cyse-policy-check label {
    margin: 0;
    color: rgba(255,255,255,0.68);
    line-height: 1.7;
    font-size: 14px;
}

.cyse-policy-check a {
    color: #4da3ff;
}

.cyse-policy-check a:hover {
    color: #fff !important;
}

@media (max-width: 767px) {
    .cyse-form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .cyse-register-benefit {
        padding: 16px 16px;
    }
}

/* =========================================
   CAREERS PAGE: Filter controls
   ========================================= */

#careers-filters .form-select,
#careers-filters .btn-outline-light,
#careers-filters input {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
}

#careers-filters .form-select option {
  color: #000;
}

#careers-filters .input-group .btn {
  border: 1px solid rgba(255,255,255,0.12);
}

#careers-filters .dropdown-menu {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
}

#careers-filters .form-check-input {
  background-color: transparent;
  border: 1px solid rgba(255,255,255,0.25);
}

#careers-filters .input-group{
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  width: 100% !important;
}

#careers-filters .input-group > input{
  flex: 1 1 auto !important;
  width: 1% !important;
  min-width: 0 !important;
  margin: 0 !important;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

#careers-filters .input-group > .btn{
  flex: 0 0 auto !important;
  width: 46px;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

#careers-filters {
  --filter-h: 48px;
}

#careers-filters input,
#careers-filters .form-select,
#careers-filters .dropdown-toggle,
#careers-filters .input-group > .btn {
  height: var(--filter-h) !important;
}

#careers-filters input {
  line-height: calc(var(--filter-h) - 2px) !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

#careers-filters .input-group > .btn {
  line-height: 1 !important;
}

#careers-filters .input-group {
  height: var(--filter-h) !important;
}

#careers-filters .form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 44px !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 16 16'%3E%3Cpath fill='white' fill-opacity='0.75' d='M4.2 6.2a1 1 0 0 1 1.4 0L8 8.6l2.4-2.4a1 1 0 1 1 1.4 1.4l-3.1 3.1a1 1 0 0 1-1.4 0L4.2 7.6a1 1 0 0 1 0-1.4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px 14px;
}

#careers-filters .form-select::-ms-expand {
  display: none;
}

/* =========================================
   INDEX PAGE: Early Access Modal
   ========================================= */

/* =========================================
   EARLY ACCESS MODAL — Redesigned
   ========================================= */

#earlyAccessModal .modal-dialog {
  max-width: 680px;
}

#earlyAccessModal .modal-content {
  position: relative;
  background: radial-gradient(ellipse at top center, #141c2e 0%, #0d1117 70%) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  border-radius: 28px !important;
  box-shadow:
    0 0 0 1px rgba(77, 163, 255, 0.06),
    0 24px 80px rgba(0, 0, 0, 0.55),
    0 0 120px rgba(27, 124, 244, 0.06) !important;
  overflow: hidden;
}

/* Subtle top accent line */
#earlyAccessModal .modal-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(77, 163, 255, 0.5),
    transparent
  );
  z-index: 1;
}

/* Custom close button */
#earlyAccessModal .ea-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 10;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

#earlyAccessModal .ea-modal-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* Body */
#earlyAccessModal .modal-body {
  padding: 30px 36px 28px !important;
  color: rgba(255, 255, 255, 0.85) !important;
}

/* Badge / icon at top */
#earlyAccessModal .ea-badge {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

#earlyAccessModal .ea-badge__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(27, 124, 244, 0.18) 0%, rgba(124, 92, 255, 0.14) 100%);
  border: 1px solid rgba(77, 163, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #4da3ff;
}

/* Heading */
#earlyAccessModal .ea-heading {
  text-align: center;
  margin: 0 0 6px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

/* Subtitle text */
#earlyAccessModal .ea-subtext {
  text-align: center;
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
}

/* Progress tracker card */
#earlyAccessModal .ea-tracker {
  padding: 14px 18px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 0;
}

#earlyAccessModal .ea-tracker__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 10px;
}

#earlyAccessModal .ea-progress-group + .ea-progress-group {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

#earlyAccessModal .ea-progress-top,
#earlyAccessModal .ea-progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

#earlyAccessModal .ea-progress-top {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 500;
}

#earlyAccessModal .ea-progress-icon {
  margin-right: 6px;
  font-size: 12px;
}

#earlyAccessModal .ea-progress-icon--blue {
  color: #4da3ff;
}

#earlyAccessModal .ea-progress-icon--purple {
  color: #9d84ff;
}

#earlyAccessModal .ea-progress-top strong {
  color: #fff;
}

#earlyAccessModal .ea-progress-bar {
  position: relative;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

#earlyAccessModal .ea-progress-fill {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #1B7CF4 0%, #4da3ff 100%);
  box-shadow: 0 0 12px rgba(77, 163, 255, 0.3);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

#earlyAccessModal .ea-progress-fill--secondary {
  background: linear-gradient(90deg, #7c5cff 0%, #9d84ff 100%);
  box-shadow: 0 0 12px rgba(124, 92, 255, 0.3);
}

#earlyAccessModal .ea-progress-meta {
  margin-top: 6px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

#earlyAccessModal .ea-manual-note {
  margin-left: 4px;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
}

/* Divider between tracker and form */
#earlyAccessModal .ea-divider {
  height: 1px;
  margin: 18px 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
}

/* Form field */
#earlyAccessModal .ea-field {
  margin-bottom: 16px;
}

#earlyAccessModal .ea-field__label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 14px;
  font-weight: 600;
}

#earlyAccessModal .form-control {
  width: 100%;
  height: 52px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  background: rgba(255, 255, 255, 0.04) !important;
  color: #fff !important;
  font-size: 15px;
  outline: none;
  box-shadow: none !important;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

#earlyAccessModal .form-control::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

#earlyAccessModal .form-control:focus {
  border-color: rgba(77, 163, 255, 0.5) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  box-shadow: 0 0 0 3px rgba(77, 163, 255, 0.1) !important;
  color: #fff !important;
}

/* Input icon wrap */
#earlyAccessModal .ea-input-icon-wrap {
  position: relative;
}

#earlyAccessModal .ea-input-icon {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.3);
  font-size: 15px;
  line-height: 1;
  pointer-events: none;
  transition: color 0.25s ease;
}

/* Tint icon when input focused */
#earlyAccessModal .ea-input-icon-wrap:focus-within .ea-input-icon {
  color: #4da3ff;
}

#earlyAccessModal .ea-input-icon-wrap::after {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 44px;
  width: 1px;
  background: rgba(255, 255, 255, 0.07);
  z-index: 2;
  pointer-events: none;
}

#earlyAccessModal .ea-input-icon-wrap .form-control {
  padding-left: 58px !important;
}

/* Agreements */
#earlyAccessModal .ea-agreements {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 4px;
}

#earlyAccessModal .ea-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

#earlyAccessModal .form-check-input {
  margin-top: 4px;
  margin-left: 0;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none !important;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

#earlyAccessModal .form-check-input:hover {
  border-color: rgba(77, 163, 255, 0.4);
}

#earlyAccessModal .form-check-input:checked {
  background-color: #1B7CF4;
  border-color: #1B7CF4;
}

#earlyAccessModal .form-check-input:focus {
  box-shadow: none !important;
  border-color: rgba(77, 163, 255, 0.5);
}

#earlyAccessModal .ea-check__label {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

#earlyAccessModal .ea-check__label a {
  color: #4da3ff !important;
  text-decoration: none;
  font-weight: 500;
}

#earlyAccessModal .ea-check__label a:hover {
  color: #fff !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Validation states */
#earlyAccessModal .form-check-input.is-invalid {
  border-color: #ff6b6b !important;
  background-color: rgba(255, 107, 107, 0.06);
}

#earlyAccessModal .checkbox-error-visible .invalid-feedback {
  display: block;
}

#earlyAccessModal .form-control.is-invalid {
  border-color: #ff6b6b !important;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.08) !important;
}

/* Message area */
#eaMessage {
  display: block;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(6px);
  padding: 0 14px;
  border-radius: 12px;
  margin: 0;
  border: 1px solid transparent;
  background: transparent;
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
  pointer-events: none;
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease,
    transform 0.25s ease,
    margin 0.25s ease,
    padding 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

#eaMessage.is-visible {
  max-height: 220px;
  opacity: 1;
  transform: translateY(0);
  margin: 16px 0 0;
  padding: 12px 14px;
  pointer-events: auto;
}

#eaMessage ul {
  margin: 0;
  padding-left: 16px;
  color: #ffbfbf;
}

#eaMessage li + li {
  margin-top: 4px;
}

/* Submit button */
#earlyAccessModal .ea-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 48px;
  margin-top: 16px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #1B7CF4 0%, #4da3ff 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 4px 20px rgba(27, 124, 244, 0.3);
}

#earlyAccessModal .ea-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(27, 124, 244, 0.4);
}

#earlyAccessModal .ea-submit:active {
  transform: translateY(0);
  box-shadow: 0 2px 12px rgba(27, 124, 244, 0.25);
}

#earlyAccessModal .ea-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

#earlyAccessModal .ea-submit__arrow {
  font-size: 13px;
  transition: transform 0.2s ease;
}

#earlyAccessModal .ea-submit:hover .ea-submit__arrow {
  transform: translateX(3px);
}

/* Footnote */
#earlyAccessModal .ea-footnote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 12px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
  text-align: center;
}

#earlyAccessModal .ea-footnote i {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.28);
}

/* Honeypot */
#earlyAccessModal .hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.banner__content-bottom strong { color: #FFF; }

/* Mobile */
@media (max-width: 767px) {
  #earlyAccessModal .modal-dialog {
    margin: 12px;
  }

  #earlyAccessModal .modal-body {
    padding: 26px 20px 22px !important;
  }

  #earlyAccessModal .ea-heading {
    font-size: 20px;
  }

  #earlyAccessModal .ea-subtext {
    font-size: 13px;
  }

  #earlyAccessModal .form-control {
    height: 46px;
  }

  #earlyAccessModal .ea-submit {
    height: 46px;
  }

  #earlyAccessModal .ea-tracker {
    padding: 12px 14px 10px;
  }
}

/* =========================================
   PENETRATION TESTING PAGE
   ========================================= */

.pt-pentest-section {
    padding: 80px 0;
}

.pt-section-lead {
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255,255,255,0.72);
    margin-bottom: 0;
}

/* --- Stats row --- */
.pt-stats-row {
    margin-top: 50px;
}

.pt-stat-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: 10px;
    border: 1px solid var(--tg-border-1);
    background: linear-gradient(138deg, #222325 0%, rgba(21, 21, 21, 0) 100%);
    height: 100%;
}

.pt-stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--tg-primary-color);
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: -0.03em;
}

.pt-stat-card p {
    margin: 0;
    font-size: 16px;
    color: rgba(255,255,255,0.72);
    line-height: 1.6;
}

/* --- Service cards grid --- */
.pt-services-section {
    padding-bottom: 40px;
}

.pt-services-grid {
    margin-top: 50px;
    row-gap: 24px;
}

.pt-service-card {
    box-shadow: inset 0 0 4px 0 rgba(255, 255, 255, 0.12);
    background: #1b1b1c;
    border-radius: 10px;
    padding: 32px 28px;
    height: 100%;
    transition: all 0.4s ease-out;
    display: flex;
    flex-direction: column;
}

.pt-service-card:hover {
    transform: translateY(-4px);
}

.pt-service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(138deg, #222325 0%, rgba(21, 21, 21, 0) 100%);
    border: 1px solid var(--tg-border-1);
    border-radius: 12px;
    margin-bottom: 22px;
    font-size: 24px;
    color: var(--tg-primary-color);
}

.pt-service-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.pt-service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
    margin-bottom: 18px;
    flex: 1;
}

.pt-service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pt-service-tags li {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--tg-primary-color);
    border: 1px solid var(--tg-border-1);
    border-radius: 30px;
    padding: 4px 12px;
}

/* --- Methodology steps --- */
.pt-methodology-section {
    background: linear-gradient(180deg, rgba(21,21,21,0) 0%, rgba(34,35,37,0.4) 50%, rgba(21,21,21,0) 100%);
}

.pt-methodology-steps {
    max-width: 820px;
    margin: 50px auto 0;
    position: relative;
}

.pt-methodology-steps::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 31px;
    width: 1px;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0),
        var(--tg-border-1),
        var(--tg-border-1),
        rgba(255,255,255,0)
    );
}

.pt-method-step {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 24px 0;
}

.pt-method-number {
    flex: 0 0 auto;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--tg-border-1);
    background: var(--tg-secondary-color);
    font-size: 18px;
    font-weight: 700;
    color: var(--tg-primary-color);
    position: relative;
    z-index: 1;
}

.pt-method-body h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.pt-method-body p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
}

/* --- Accreditations --- */
.pt-accreditations-grid {
    margin-top: 50px;
    row-gap: 24px;
}

.pt-accred-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: 10px;
    border: 1px solid var(--tg-border-1);
    background: linear-gradient(138deg, #222325 0%, rgba(21, 21, 21, 0) 100%);
    height: 100%;
    transition: all 0.4s ease-out;
}

.pt-accred-card:hover {
    transform: translateY(-4px);
}

.pt-accred-card i {
    font-size: 36px;
    color: var(--tg-primary-color);
    margin-bottom: 18px;
    display: block;
}

.pt-accred-card h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.pt-accred-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.72);
}

/* --- CTA --- */
.pt-cta-section {
    padding-bottom: 100px;
}

.pt-cta-card {
    padding: 52px 48px;
    border-radius: 14px;
    background: linear-gradient(138deg, #222325 0%, rgba(21, 21, 21, 0) 100%);
    border: 1px solid var(--tg-border-1);
}

.pt-cta-card h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #fff;
}

.pt-cta-card p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
    margin-bottom: 28px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.pt-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .pt-pentest-section {
        padding: 60px 0;
    }

    .pt-stat-number {
        font-size: 40px;
    }

    .pt-cta-card {
        padding: 40px 30px;
    }

    .pt-cta-card h3 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .pt-pentest-section {
        padding: 48px 0;
    }

    .pt-section-lead {
        font-size: 16px;
    }

    .pt-stats-row > [class*="col-"] + [class*="col-"] {
        margin-top: 16px;
    }

    .pt-stat-number {
        font-size: 36px;
    }

    .pt-service-card {
        padding: 26px 22px;
    }

    .pt-methodology-steps::before {
        left: 23px;
    }

    .pt-method-number {
        width: 46px;
        height: 46px;
        font-size: 15px;
    }

    .pt-method-step {
        gap: 18px;
    }

    .pt-method-body h4 {
        font-size: 18px;
    }

    .pt-method-body p {
        font-size: 15px;
    }

    .pt-cta-card {
        padding: 32px 22px;
    }

    .pt-cta-card h3 {
        font-size: 24px;
    }

    .pt-cta-card p {
        font-size: 16px;
    }

    .pt-accred-card {
        padding: 28px 20px;
    }
}

/* =========================================
   CONSULTANCY PAGE
   ========================================= */

.cs-consult-section {
    padding: 80px 0;
}

.cs-section-lead {
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255,255,255,0.72);
    margin-bottom: 0;
}

/* --- Value proposition cards --- */
.cs-value-row {
    margin-top: 50px;
    row-gap: 24px;
}

.cs-value-card {
    padding: 36px 28px;
    border-radius: 10px;
    border: 1px solid var(--tg-border-1);
    background: linear-gradient(138deg, #222325 0%, rgba(21, 21, 21, 0) 100%);
    height: 100%;
    transition: all 0.4s ease-out;
}

.cs-value-card:hover {
    transform: translateY(-4px);
}

.cs-value-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(138deg, #222325 0%, rgba(21, 21, 21, 0) 100%);
    border: 1px solid var(--tg-border-1);
    border-radius: 12px;
    margin-bottom: 22px;
    font-size: 24px;
    color: var(--tg-primary-color);
}

.cs-value-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.cs-value-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
}

/* --- Service cards grid --- */
.cs-services-section {
    padding-bottom: 40px;
}

.cs-services-grid {
    margin-top: 50px;
    row-gap: 24px;
}

.cs-service-card {
    box-shadow: inset 0 0 4px 0 rgba(255, 255, 255, 0.12);
    background: #1b1b1c;
    border-radius: 10px;
    padding: 32px 28px;
    height: 100%;
    transition: all 0.4s ease-out;
    display: flex;
    flex-direction: column;
}

.cs-service-card:hover {
    transform: translateY(-4px);
}

.cs-service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(138deg, #222325 0%, rgba(21, 21, 21, 0) 100%);
    border: 1px solid var(--tg-border-1);
    border-radius: 12px;
    margin-bottom: 22px;
    font-size: 24px;
    color: var(--tg-primary-color);
}

.cs-service-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.cs-service-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
}

/* --- Engagement approach cards --- */
.cs-approach-section {
    background: linear-gradient(180deg, rgba(21,21,21,0) 0%, rgba(34,35,37,0.4) 50%, rgba(21,21,21,0) 100%);
}

.cs-approach-grid {
    margin-top: 50px;
    row-gap: 24px;
}

.cs-approach-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: 10px;
    border: 1px solid var(--tg-border-1);
    background: linear-gradient(138deg, #222325 0%, rgba(21, 21, 21, 0) 100%);
    height: 100%;
    transition: all 0.4s ease-out;
}

.cs-approach-card:hover {
    transform: translateY(-4px);
}

.cs-approach-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid var(--tg-border-1);
    background: var(--tg-secondary-color);
    font-size: 18px;
    font-weight: 700;
    color: var(--tg-primary-color);
    margin-bottom: 20px;
}

.cs-approach-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.cs-approach-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
}

/* --- Sectors grid --- */
.cs-sectors-grid {
    margin-top: 50px;
    row-gap: 20px;
}

.cs-sector-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 28px 16px;
    border-radius: 10px;
    border: 1px solid var(--tg-border-1);
    background: linear-gradient(138deg, #222325 0%, rgba(21, 21, 21, 0) 100%);
    height: 100%;
    text-align: center;
    transition: all 0.4s ease-out;
}

.cs-sector-item:hover {
    transform: translateY(-4px);
}

.cs-sector-item i {
    font-size: 30px;
    color: var(--tg-primary-color);
}

.cs-sector-item span {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

/* --- CTA --- */
.cs-cta-section {
    padding-bottom: 100px;
}

.cs-cta-card {
    padding: 52px 48px;
    border-radius: 14px;
    background: linear-gradient(138deg, #222325 0%, rgba(21, 21, 21, 0) 100%);
    border: 1px solid var(--tg-border-1);
}

.cs-cta-card h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #fff;
}

.cs-cta-card p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
    margin-bottom: 28px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.cs-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .cs-consult-section {
        padding: 60px 0;
    }

    .cs-cta-card {
        padding: 40px 30px;
    }

    .cs-cta-card h3 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .cs-consult-section {
        padding: 48px 0;
    }

    .cs-section-lead {
        font-size: 16px;
    }

    .cs-value-card,
    .cs-service-card {
        padding: 26px 22px;
    }

    .cs-approach-card {
        padding: 28px 20px;
    }

    .cs-sector-item {
        padding: 22px 12px;
    }

    .cs-cta-card {
        padding: 32px 22px;
    }

    .cs-cta-card h3 {
        font-size: 24px;
    }

    .cs-cta-card p {
        font-size: 16px;
    }
}

/* =========================================
   INCIDENT RESPONSE PAGE
   ========================================= */

.ir-section {
    padding: 80px 0;
}

.ir-section-lead {
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255,255,255,0.72);
    margin-bottom: 0;
}

/* --- Urgency banner --- */
.ir-urgency-banner {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 38px 40px;
    border-radius: 14px;
    border: 1px solid rgba(255, 100, 100, 0.25);
    background: linear-gradient(138deg, rgba(80, 20, 20, 0.45) 0%, rgba(21, 21, 21, 0) 100%);
    box-shadow: 0 0 40px rgba(255, 60, 60, 0.06);
}

.ir-urgency-icon {
    flex: 0 0 auto;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 100, 100, 0.3);
    background: rgba(255, 60, 60, 0.08);
    font-size: 26px;
    color: #ff6b6b;
}

.ir-urgency-body h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.ir-urgency-body p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.78);
    margin-bottom: 20px;
}

/* --- Threat cards --- */
.ir-threats-grid {
    margin-top: 50px;
    row-gap: 24px;
}

.ir-threat-card {
    padding: 32px 28px;
    border-radius: 10px;
    border: 1px solid var(--tg-border-1);
    background: linear-gradient(138deg, #222325 0%, rgba(21, 21, 21, 0) 100%);
    height: 100%;
    transition: all 0.4s ease-out;
}

.ir-threat-card:hover {
    transform: translateY(-4px);
}

.ir-threat-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(138deg, #222325 0%, rgba(21, 21, 21, 0) 100%);
    border: 1px solid var(--tg-border-1);
    border-radius: 12px;
    margin-bottom: 22px;
    font-size: 24px;
    color: var(--tg-primary-color);
}

.ir-threat-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.ir-threat-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
}

/* --- Service cards --- */
.ir-services-section {
    padding-bottom: 40px;
}

.ir-services-grid {
    margin-top: 50px;
    row-gap: 24px;
}

.ir-service-card {
    box-shadow: inset 0 0 4px 0 rgba(255, 255, 255, 0.12);
    background: #1b1b1c;
    border-radius: 10px;
    padding: 32px 28px;
    height: 100%;
    transition: all 0.4s ease-out;
    display: flex;
    flex-direction: column;
}

.ir-service-card:hover {
    transform: translateY(-4px);
}

.ir-service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(138deg, #222325 0%, rgba(21, 21, 21, 0) 100%);
    border: 1px solid var(--tg-border-1);
    border-radius: 12px;
    margin-bottom: 22px;
    font-size: 24px;
    color: var(--tg-primary-color);
}

.ir-service-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.ir-service-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
}

/* --- Lifecycle timeline --- */
.ir-lifecycle-section {
    background: linear-gradient(180deg, rgba(21,21,21,0) 0%, rgba(34,35,37,0.4) 50%, rgba(21,21,21,0) 100%);
}

.ir-lifecycle-steps {
    max-width: 820px;
    margin: 50px auto 0;
    position: relative;
}

.ir-lifecycle-steps::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 31px;
    width: 1px;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0),
        var(--tg-border-1),
        var(--tg-border-1),
        rgba(255,255,255,0)
    );
}

.ir-lifecycle-step {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 24px 0;
}

.ir-lifecycle-number {
    flex: 0 0 auto;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--tg-border-1);
    background: var(--tg-secondary-color);
    font-size: 18px;
    font-weight: 700;
    color: var(--tg-primary-color);
    position: relative;
    z-index: 1;
}

.ir-lifecycle-body h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.ir-lifecycle-body p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
}

/* --- Why Cyse cards --- */
.ir-why-grid {
    margin-top: 50px;
    row-gap: 24px;
}

.ir-why-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: 10px;
    border: 1px solid var(--tg-border-1);
    background: linear-gradient(138deg, #222325 0%, rgba(21, 21, 21, 0) 100%);
    height: 100%;
    transition: all 0.4s ease-out;
}

.ir-why-card:hover {
    transform: translateY(-4px);
}

.ir-why-card i {
    font-size: 36px;
    color: var(--tg-primary-color);
    margin-bottom: 18px;
    display: block;
}

.ir-why-card h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.ir-why-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.72);
}

/* --- CTA --- */
.ir-cta-section {
    padding-bottom: 100px;
}

.ir-cta-card {
    padding: 52px 48px;
    border-radius: 14px;
    background: linear-gradient(138deg, #222325 0%, rgba(21, 21, 21, 0) 100%);
    border: 1px solid var(--tg-border-1);
}

.ir-cta-card h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #fff;
}

.ir-cta-card p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
    margin-bottom: 28px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.ir-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .ir-section {
        padding: 60px 0;
    }

    .ir-urgency-banner {
        padding: 30px 28px;
    }

    .ir-cta-card {
        padding: 40px 30px;
    }

    .ir-cta-card h3 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .ir-section {
        padding: 48px 0;
    }

    .ir-section-lead {
        font-size: 16px;
    }

    .ir-urgency-banner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 28px 22px;
        gap: 18px;
    }

    .ir-urgency-body h3 {
        font-size: 20px;
    }

    .ir-urgency-body p {
        font-size: 15px;
    }

    .ir-threat-card,
    .ir-service-card {
        padding: 26px 22px;
    }

    .ir-lifecycle-steps::before {
        left: 23px;
    }

    .ir-lifecycle-number {
        width: 46px;
        height: 46px;
        font-size: 15px;
    }

    .ir-lifecycle-step {
        gap: 18px;
    }

    .ir-lifecycle-body h4 {
        font-size: 18px;
    }

    .ir-lifecycle-body p {
        font-size: 15px;
    }

    .ir-why-card {
        padding: 28px 20px;
    }

    .ir-cta-card {
        padding: 32px 22px;
    }

    .ir-cta-card h3 {
        font-size: 24px;
    }

    .ir-cta-card p {
        font-size: 16px;
    }
}

/* =========================================
   THREAT INTELLIGENCE PAGE
   ========================================= */

.ti-section {
    padding: 80px 0;
}

.ti-section-lead {
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255,255,255,0.72);
    margin-bottom: 0;
}

/* --- Value cards --- */
.ti-value-row {
    margin-top: 50px;
    row-gap: 24px;
}

.ti-value-card {
    padding: 36px 28px;
    border-radius: 10px;
    border: 1px solid var(--tg-border-1);
    background: linear-gradient(138deg, #222325 0%, rgba(21, 21, 21, 0) 100%);
    height: 100%;
    transition: all 0.4s ease-out;
}

.ti-value-card:hover {
    transform: translateY(-4px);
}

.ti-value-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(138deg, #222325 0%, rgba(21, 21, 21, 0) 100%);
    border: 1px solid var(--tg-border-1);
    border-radius: 12px;
    margin-bottom: 22px;
    font-size: 24px;
    color: var(--tg-primary-color);
}

.ti-value-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.ti-value-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
}

/* --- Intelligence tier cards --- */
.ti-tiers-section {
    background: linear-gradient(180deg, rgba(21,21,21,0) 0%, rgba(34,35,37,0.4) 50%, rgba(21,21,21,0) 100%);
}

.ti-tiers-grid {
    margin-top: 50px;
    row-gap: 24px;
}

.ti-tier-card {
    padding: 36px 28px;
    border-radius: 10px;
    border: 1px solid var(--tg-border-1);
    background: linear-gradient(138deg, #222325 0%, rgba(21, 21, 21, 0) 100%);
    height: 100%;
    transition: all 0.4s ease-out;
}

.ti-tier-card:hover {
    transform: translateY(-4px);
}

.ti-tier-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--tg-primary-color);
    border: 1px solid var(--tg-border-1);
    border-radius: 30px;
    padding: 5px 14px;
    margin-bottom: 18px;
}

.ti-tier-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.ti-tier-card > p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
    margin-bottom: 20px;
}

.ti-tier-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ti-tier-list li {
    position: relative;
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.78);
    margin-bottom: 6px;
}

.ti-tier-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--tg-primary-color);
}

/* --- Service cards --- */
.ti-services-section {
    padding-bottom: 40px;
}

.ti-services-grid {
    margin-top: 50px;
    row-gap: 24px;
}

.ti-service-card {
    box-shadow: inset 0 0 4px 0 rgba(255, 255, 255, 0.12);
    background: #1b1b1c;
    border-radius: 10px;
    padding: 32px 28px;
    height: 100%;
    transition: all 0.4s ease-out;
    display: flex;
    flex-direction: column;
}

.ti-service-card:hover {
    transform: translateY(-4px);
}

.ti-service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(138deg, #222325 0%, rgba(21, 21, 21, 0) 100%);
    border: 1px solid var(--tg-border-1);
    border-radius: 12px;
    margin-bottom: 22px;
    font-size: 24px;
    color: var(--tg-primary-color);
}

.ti-service-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.ti-service-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
}

/* --- Lifecycle timeline --- */
.ti-lifecycle-section {
    background: linear-gradient(180deg, rgba(21,21,21,0) 0%, rgba(34,35,37,0.4) 50%, rgba(21,21,21,0) 100%);
}

.ti-lifecycle-steps {
    max-width: 820px;
    margin: 50px auto 0;
    position: relative;
}

.ti-lifecycle-steps::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 31px;
    width: 1px;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0),
        var(--tg-border-1),
        var(--tg-border-1),
        rgba(255,255,255,0)
    );
}

.ti-lifecycle-step {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 24px 0;
}

.ti-lifecycle-number {
    flex: 0 0 auto;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--tg-border-1);
    background: var(--tg-secondary-color);
    font-size: 18px;
    font-weight: 700;
    color: var(--tg-primary-color);
    position: relative;
    z-index: 1;
}

.ti-lifecycle-body h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.ti-lifecycle-body p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
}

/* --- Integration items --- */
.ti-integration-grid {
    margin-top: 50px;
    row-gap: 20px;
}

.ti-integration-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 28px 16px;
    border-radius: 10px;
    border: 1px solid var(--tg-border-1);
    background: linear-gradient(138deg, #222325 0%, rgba(21, 21, 21, 0) 100%);
    height: 100%;
    text-align: center;
    transition: all 0.4s ease-out;
}

.ti-integration-item:hover {
    transform: translateY(-4px);
}

.ti-integration-item i {
    font-size: 30px;
    color: var(--tg-primary-color);
}

.ti-integration-item span {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

/* --- CTA --- */
.ti-cta-section {
    padding-bottom: 100px;
}

.ti-cta-card {
    padding: 52px 48px;
    border-radius: 14px;
    background: linear-gradient(138deg, #222325 0%, rgba(21, 21, 21, 0) 100%);
    border: 1px solid var(--tg-border-1);
}

.ti-cta-card h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #fff;
}

.ti-cta-card p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
    margin-bottom: 28px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.ti-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .ti-section {
        padding: 60px 0;
    }

    .ti-cta-card {
        padding: 40px 30px;
    }

    .ti-cta-card h3 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .ti-section {
        padding: 48px 0;
    }

    .ti-section-lead {
        font-size: 16px;
    }

    .ti-value-card,
    .ti-service-card {
        padding: 26px 22px;
    }

    .ti-tier-card {
        padding: 28px 22px;
    }

    .ti-lifecycle-steps::before {
        left: 23px;
    }

    .ti-lifecycle-number {
        width: 46px;
        height: 46px;
        font-size: 15px;
    }

    .ti-lifecycle-step {
        gap: 18px;
    }

    .ti-lifecycle-body h4 {
        font-size: 18px;
    }

    .ti-lifecycle-body p {
        font-size: 15px;
    }

    .ti-integration-item {
        padding: 22px 12px;
    }

    .ti-cta-card {
        padding: 32px 22px;
    }

    .ti-cta-card h3 {
        font-size: 24px;
    }

    .ti-cta-card p {
        font-size: 16px;
    }
}

/* =========================================
   CLOUD SECURITY PAGE
   ========================================= */

.cld-section {
    padding: 80px 0;
}

.cld-section-lead {
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255,255,255,0.72);
    margin-bottom: 0;
}

/* --- Platform cards --- */
.cld-platform-row {
    margin-top: 50px;
    row-gap: 24px;
}

.cld-platform-card {
    text-align: center;
    padding: 40px 28px;
    border-radius: 10px;
    border: 1px solid var(--tg-border-1);
    background: linear-gradient(138deg, #222325 0%, rgba(21, 21, 21, 0) 100%);
    height: 100%;
    transition: all 0.4s ease-out;
}

.cld-platform-card:hover {
    transform: translateY(-4px);
}

.cld-platform-icon {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    border-radius: 50%;
    border: 1px solid var(--tg-border-1);
    background: var(--tg-secondary-color);
    font-size: 30px;
    color: var(--tg-primary-color);
}

.cld-platform-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.cld-platform-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
}

/* --- Service cards --- */
.cld-services-section {
    padding-bottom: 40px;
}

.cld-services-grid {
    margin-top: 50px;
    row-gap: 24px;
}

.cld-service-card {
    box-shadow: inset 0 0 4px 0 rgba(255, 255, 255, 0.12);
    background: #1b1b1c;
    border-radius: 10px;
    padding: 32px 28px;
    height: 100%;
    transition: all 0.4s ease-out;
    display: flex;
    flex-direction: column;
}

.cld-service-card:hover {
    transform: translateY(-4px);
}

.cld-service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(138deg, #222325 0%, rgba(21, 21, 21, 0) 100%);
    border: 1px solid var(--tg-border-1);
    border-radius: 12px;
    margin-bottom: 22px;
    font-size: 24px;
    color: var(--tg-primary-color);
}

.cld-service-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.cld-service-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
}

/* --- Shared responsibility cards --- */
.cld-responsibility-section {
    background: linear-gradient(180deg, rgba(21,21,21,0) 0%, rgba(34,35,37,0.4) 50%, rgba(21,21,21,0) 100%);
}

.cld-responsibility-grid {
    margin-top: 50px;
    row-gap: 24px;
}

.cld-resp-card {
    padding: 36px 32px;
    border-radius: 10px;
    height: 100%;
    transition: all 0.4s ease-out;
}

.cld-resp-card:hover {
    transform: translateY(-4px);
}

.cld-resp-card--provider {
    border: 1px solid var(--tg-border-1);
    background: linear-gradient(138deg, #222325 0%, rgba(21, 21, 21, 0) 100%);
}

.cld-resp-card--customer {
    border: 1px solid rgba(77, 163, 255, 0.25);
    background: linear-gradient(138deg, rgba(30, 60, 100, 0.3) 0%, rgba(21, 21, 21, 0) 100%);
}

.cld-resp-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.6);
    border: 1px solid var(--tg-border-1);
    border-radius: 30px;
    padding: 5px 14px;
    margin-bottom: 20px;
}

.cld-resp-label--customer {
    color: var(--tg-primary-color);
    border-color: rgba(77, 163, 255, 0.3);
}

.cld-resp-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cld-resp-list li {
    position: relative;
    padding-left: 18px;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.78);
    margin-bottom: 8px;
}

.cld-resp-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.cld-resp-card--provider .cld-resp-list li::before {
    background: rgba(255,255,255,0.35);
}

.cld-resp-card--customer .cld-resp-list li::before {
    background: var(--tg-primary-color);
}

/* --- Approach timeline --- */
.cld-approach-steps {
    max-width: 820px;
    margin: 50px auto 0;
    position: relative;
}

.cld-approach-steps::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 31px;
    width: 1px;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0),
        var(--tg-border-1),
        var(--tg-border-1),
        rgba(255,255,255,0)
    );
}

.cld-approach-step {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 24px 0;
}

.cld-approach-number {
    flex: 0 0 auto;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--tg-border-1);
    background: var(--tg-secondary-color);
    font-size: 18px;
    font-weight: 700;
    color: var(--tg-primary-color);
    position: relative;
    z-index: 1;
}

.cld-approach-body h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.cld-approach-body p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
}

/* --- Frameworks grid --- */
.cld-frameworks-grid {
    margin-top: 50px;
    row-gap: 20px;
}

.cld-framework-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 28px 16px;
    border-radius: 10px;
    border: 1px solid var(--tg-border-1);
    background: linear-gradient(138deg, #222325 0%, rgba(21, 21, 21, 0) 100%);
    height: 100%;
    text-align: center;
    transition: all 0.4s ease-out;
}

.cld-framework-item:hover {
    transform: translateY(-4px);
}

.cld-framework-item i {
    font-size: 30px;
    color: var(--tg-primary-color);
}

.cld-framework-item span {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

/* --- CTA --- */
.cld-cta-section {
    padding-bottom: 100px;
}

.cld-cta-card {
    padding: 52px 48px;
    border-radius: 14px;
    background: linear-gradient(138deg, #222325 0%, rgba(21, 21, 21, 0) 100%);
    border: 1px solid var(--tg-border-1);
}

.cld-cta-card h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #fff;
}

.cld-cta-card p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
    margin-bottom: 28px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.cld-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .cld-section {
        padding: 60px 0;
    }

    .cld-cta-card {
        padding: 40px 30px;
    }

    .cld-cta-card h3 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .cld-section {
        padding: 48px 0;
    }

    .cld-section-lead {
        font-size: 16px;
    }

    .cld-platform-card {
        padding: 30px 22px;
    }

    .cld-service-card {
        padding: 26px 22px;
    }

    .cld-resp-card {
        padding: 28px 22px;
    }

    .cld-approach-steps::before {
        left: 23px;
    }

    .cld-approach-number {
        width: 46px;
        height: 46px;
        font-size: 15px;
    }

    .cld-approach-step {
        gap: 18px;
    }

    .cld-approach-body h4 {
        font-size: 18px;
    }

    .cld-approach-body p {
        font-size: 15px;
    }

    .cld-framework-item {
        padding: 22px 12px;
    }

    .cld-cta-card {
        padding: 32px 22px;
    }

    .cld-cta-card h3 {
        font-size: 24px;
    }

    .cld-cta-card p {
        font-size: 16px;
    }
}

/* =========================================
   AI SECURITY PAGE
   ========================================= */

.ais-section {
    padding: 80px 0;
}

.ais-section-lead {
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255,255,255,0.72);
    margin-bottom: 0;
}

/* --- Value cards --- */
.ais-value-row {
    margin-top: 50px;
    row-gap: 24px;
}

.ais-value-card {
    padding: 36px 28px;
    border-radius: 10px;
    border: 1px solid var(--tg-border-1);
    background: linear-gradient(138deg, #222325 0%, rgba(21, 21, 21, 0) 100%);
    height: 100%;
    transition: all 0.4s ease-out;
}

.ais-value-card:hover {
    transform: translateY(-4px);
}

.ais-value-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(138deg, #222325 0%, rgba(21, 21, 21, 0) 100%);
    border: 1px solid var(--tg-border-1);
    border-radius: 12px;
    margin-bottom: 22px;
    font-size: 24px;
    color: var(--tg-primary-color);
}

.ais-value-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.ais-value-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
}

/* --- Threat cards --- */
.ais-threats-section {
    background: linear-gradient(180deg, rgba(21,21,21,0) 0%, rgba(34,35,37,0.4) 50%, rgba(21,21,21,0) 100%);
}

.ais-threats-grid {
    margin-top: 50px;
    row-gap: 24px;
}

.ais-threat-card {
    padding: 32px 28px;
    border-radius: 10px;
    border: 1px solid var(--tg-border-1);
    background: linear-gradient(138deg, #222325 0%, rgba(21, 21, 21, 0) 100%);
    height: 100%;
    transition: all 0.4s ease-out;
}

.ais-threat-card:hover {
    transform: translateY(-4px);
}

.ais-threat-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(138deg, #222325 0%, rgba(21, 21, 21, 0) 100%);
    border: 1px solid var(--tg-border-1);
    border-radius: 12px;
    margin-bottom: 22px;
    font-size: 24px;
    color: var(--tg-primary-color);
}

.ais-threat-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.ais-threat-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
}

/* --- Service cards --- */
.ais-services-section {
    padding-bottom: 40px;
}

.ais-services-grid {
    margin-top: 50px;
    row-gap: 24px;
}

.ais-service-card {
    box-shadow: inset 0 0 4px 0 rgba(255, 255, 255, 0.12);
    background: #1b1b1c;
    border-radius: 10px;
    padding: 32px 28px;
    height: 100%;
    transition: all 0.4s ease-out;
    display: flex;
    flex-direction: column;
}

.ais-service-card:hover {
    transform: translateY(-4px);
}

.ais-service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(138deg, #222325 0%, rgba(21, 21, 21, 0) 100%);
    border: 1px solid var(--tg-border-1);
    border-radius: 12px;
    margin-bottom: 22px;
    font-size: 24px;
    color: var(--tg-primary-color);
}

.ais-service-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.ais-service-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
}

/* --- Framework cards --- */
.ais-frameworks-section {
    background: linear-gradient(180deg, rgba(21,21,21,0) 0%, rgba(34,35,37,0.4) 50%, rgba(21,21,21,0) 100%);
}

.ais-framework-grid {
    margin-top: 50px;
    row-gap: 24px;
}

.ais-framework-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: 10px;
    border: 1px solid var(--tg-border-1);
    background: linear-gradient(138deg, #222325 0%, rgba(21, 21, 21, 0) 100%);
    height: 100%;
    transition: all 0.4s ease-out;
}

.ais-framework-card:hover {
    transform: translateY(-4px);
}

.ais-framework-card i {
    font-size: 36px;
    color: var(--tg-primary-color);
    margin-bottom: 18px;
    display: block;
}

.ais-framework-card h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.ais-framework-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.72);
}

/* --- Approach timeline --- */
.ais-approach-steps {
    max-width: 820px;
    margin: 50px auto 0;
    position: relative;
}

.ais-approach-steps::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 31px;
    width: 1px;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0),
        var(--tg-border-1),
        var(--tg-border-1),
        rgba(255,255,255,0)
    );
}

.ais-approach-step {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 24px 0;
}

.ais-approach-number {
    flex: 0 0 auto;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--tg-border-1);
    background: var(--tg-secondary-color);
    font-size: 18px;
    font-weight: 700;
    color: var(--tg-primary-color);
    position: relative;
    z-index: 1;
}

.ais-approach-body h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.ais-approach-body p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
}

/* --- CTA --- */
.ais-cta-section {
    padding-bottom: 100px;
}

.ais-cta-card {
    padding: 52px 48px;
    border-radius: 14px;
    background: linear-gradient(138deg, #222325 0%, rgba(21, 21, 21, 0) 100%);
    border: 1px solid var(--tg-border-1);
}

.ais-cta-card h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #fff;
}

.ais-cta-card p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
    margin-bottom: 28px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.ais-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .ais-section {
        padding: 60px 0;
    }

    .ais-cta-card {
        padding: 40px 30px;
    }

    .ais-cta-card h3 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .ais-section {
        padding: 48px 0;
    }

    .ais-section-lead {
        font-size: 16px;
    }

    .ais-value-card,
    .ais-threat-card,
    .ais-service-card {
        padding: 26px 22px;
    }

    .ais-framework-card {
        padding: 28px 20px;
    }

    .ais-approach-steps::before {
        left: 23px;
    }

    .ais-approach-number {
        width: 46px;
        height: 46px;
        font-size: 15px;
    }

    .ais-approach-step {
        gap: 18px;
    }

    .ais-approach-body h4 {
        font-size: 18px;
    }

    .ais-approach-body p {
        font-size: 15px;
    }

    .ais-cta-card {
        padding: 32px 22px;
    }

    .ais-cta-card h3 {
        font-size: 24px;
    }

    .ais-cta-card p {
        font-size: 16px;
    }
}

/* =========================================
   DATA PRIVACY PAGE
   ========================================= */

.dp-section {
    padding: 80px 0;
}

.dp-section-lead {
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255,255,255,0.72);
    margin-bottom: 0;
}

/* --- Stats row --- */
.dp-stats-row {
    margin-top: 50px;
}

.dp-stat-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: 10px;
    border: 1px solid var(--tg-border-1);
    background: linear-gradient(138deg, #222325 0%, rgba(21, 21, 21, 0) 100%);
    height: 100%;
}

.dp-stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--tg-primary-color);
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: -0.03em;
}

.dp-stat-card p {
    margin: 0;
    font-size: 16px;
    color: rgba(255,255,255,0.72);
    line-height: 1.6;
}

/* --- Regulation cards --- */
.dp-regulations-section {
    background: linear-gradient(180deg, rgba(21,21,21,0) 0%, rgba(34,35,37,0.4) 50%, rgba(21,21,21,0) 100%);
}

.dp-regulation-grid {
    margin-top: 50px;
    row-gap: 24px;
}

.dp-regulation-card {
    padding: 32px 28px;
    border-radius: 10px;
    border: 1px solid var(--tg-border-1);
    background: linear-gradient(138deg, #222325 0%, rgba(21, 21, 21, 0) 100%);
    height: 100%;
    transition: all 0.4s ease-out;
}

.dp-regulation-card:hover {
    transform: translateY(-4px);
}

.dp-regulation-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--tg-primary-color);
    border: 1px solid var(--tg-border-1);
    border-radius: 30px;
    padding: 5px 14px;
    margin-bottom: 16px;
}

.dp-regulation-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.dp-regulation-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
}

/* --- Service cards --- */
.dp-services-section {
    padding-bottom: 40px;
}

.dp-services-grid {
    margin-top: 50px;
    row-gap: 24px;
}

.dp-service-card {
    box-shadow: inset 0 0 4px 0 rgba(255, 255, 255, 0.12);
    background: #1b1b1c;
    border-radius: 10px;
    padding: 32px 28px;
    height: 100%;
    transition: all 0.4s ease-out;
    display: flex;
    flex-direction: column;
}

.dp-service-card:hover {
    transform: translateY(-4px);
}

.dp-service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(138deg, #222325 0%, rgba(21, 21, 21, 0) 100%);
    border: 1px solid var(--tg-border-1);
    border-radius: 12px;
    margin-bottom: 22px;
    font-size: 24px;
    color: var(--tg-primary-color);
}

.dp-service-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.dp-service-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
}

/* --- Privacy lifecycle timeline --- */
.dp-lifecycle-section {
    background: linear-gradient(180deg, rgba(21,21,21,0) 0%, rgba(34,35,37,0.4) 50%, rgba(21,21,21,0) 100%);
}

.dp-lifecycle-steps {
    max-width: 820px;
    margin: 50px auto 0;
    position: relative;
}

.dp-lifecycle-steps::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 31px;
    width: 1px;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0),
        var(--tg-border-1),
        var(--tg-border-1),
        rgba(255,255,255,0)
    );
}

.dp-lifecycle-step {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 24px 0;
}

.dp-lifecycle-number {
    flex: 0 0 auto;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--tg-border-1);
    background: var(--tg-secondary-color);
    font-size: 18px;
    font-weight: 700;
    color: var(--tg-primary-color);
    position: relative;
    z-index: 1;
}

.dp-lifecycle-body h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.dp-lifecycle-body p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
}

/* --- Principles grid --- */
.dp-principles-grid {
    margin-top: 50px;
    row-gap: 20px;
}

.dp-principle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 28px 16px;
    border-radius: 10px;
    border: 1px solid var(--tg-border-1);
    background: linear-gradient(138deg, #222325 0%, rgba(21, 21, 21, 0) 100%);
    height: 100%;
    text-align: center;
    transition: all 0.4s ease-out;
}

.dp-principle-item:hover {
    transform: translateY(-4px);
}

.dp-principle-item i {
    font-size: 30px;
    color: var(--tg-primary-color);
}

.dp-principle-item span {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

/* --- CTA --- */
.dp-cta-section {
    padding-bottom: 100px;
}

.dp-cta-card {
    padding: 52px 48px;
    border-radius: 14px;
    background: linear-gradient(138deg, #222325 0%, rgba(21, 21, 21, 0) 100%);
    border: 1px solid var(--tg-border-1);
}

.dp-cta-card h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #fff;
}

.dp-cta-card p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
    margin-bottom: 28px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.dp-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .dp-section {
        padding: 60px 0;
    }

    .dp-stat-number {
        font-size: 40px;
    }

    .dp-cta-card {
        padding: 40px 30px;
    }

    .dp-cta-card h3 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .dp-section {
        padding: 48px 0;
    }

    .dp-section-lead {
        font-size: 16px;
    }

    .dp-stats-row > [class*="col-"] + [class*="col-"] {
        margin-top: 16px;
    }

    .dp-stat-number {
        font-size: 36px;
    }

    .dp-regulation-card,
    .dp-service-card {
        padding: 26px 22px;
    }

    .dp-lifecycle-steps::before {
        left: 23px;
    }

    .dp-lifecycle-number {
        width: 46px;
        height: 46px;
        font-size: 15px;
    }

    .dp-lifecycle-step {
        gap: 18px;
    }

    .dp-lifecycle-body h4 {
        font-size: 18px;
    }

    .dp-lifecycle-body p {
        font-size: 15px;
    }

    .dp-principle-item {
        padding: 22px 12px;
    }

    .dp-cta-card {
        padding: 32px 22px;
    }

    .dp-cta-card h3 {
        font-size: 24px;
    }

    .dp-cta-card p {
        font-size: 16px;
    }
}

/* ============================================================
   SERVICES HUB PAGE  (svc- prefix)
   ============================================================ */

/* --- Shared section spacing --- */
.svc-section {
    padding: 80px 0;
}

.svc-section-lead {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
    margin-bottom: 48px;
}

/* --- Service cards grid --- */
.svc-cards-grid {
    margin-top: 16px;
    row-gap: 30px;
}

.svc-card-link {
    display: block;
    text-decoration: none;
    height: 100%;
    color: inherit;
}

.svc-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.svc-card {
    box-shadow: inset 0 0 4px 0 rgba(255, 255, 255, 0.12);
    background: #1b1b1c;
    border-radius: 10px;
    padding: 32px 28px;
    height: 100%;
    transition: all 0.4s ease-out;
    display: flex;
    flex-direction: column;
}

.svc-card:hover {
    transform: translateY(-4px);
}

.svc-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(138deg, #222325 0%, rgba(21, 21, 21, 0) 100%);
    border: 1px solid var(--tg-border-1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.svc-card-icon i {
    font-size: 24px;
    color: var(--tg-primary-color);
}

.svc-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.svc-card p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
    margin-bottom: 16px;
}

/* Highlight list */
.svc-card-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    flex-grow: 1;
}

.svc-card-highlights li {
    position: relative;
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
}

.svc-card-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--tg-primary-color);
}

.svc-card-highlights li + li {
    margin-top: 6px;
}

/* Learn more arrow */
.svc-card-cta {
    font-size: 14px;
    font-weight: 600;
    color: var(--tg-primary-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    transition: gap 0.3s ease;
}

.svc-card-link:hover .svc-card-cta {
    gap: 12px;
}

/* --- Why Cyse --- */
.svc-why-section {
    background: linear-gradient(180deg, rgba(21,21,21,0) 0%, rgba(30,30,32,0.5) 50%, rgba(21,21,21,0) 100%);
}

.svc-why-grid {
    margin-top: 16px;
    row-gap: 30px;
}

.svc-why-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: 10px;
    background: linear-gradient(138deg, #222325 0%, rgba(21, 21, 21, 0) 100%);
    border: 1px solid var(--tg-border-1);
    height: 100%;
    transition: all 0.4s ease-out;
}

.svc-why-card:hover {
    transform: translateY(-4px);
}

.svc-why-card i {
    font-size: 36px;
    color: var(--tg-primary-color);
    margin-bottom: 18px;
}

.svc-why-card h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.svc-why-card p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
    margin-bottom: 0;
}

/* --- CTA --- */
.svc-cta-section {
    padding-bottom: 100px;
}

.svc-cta-card {
    padding: 52px 48px;
    border-radius: 14px;
    background: linear-gradient(138deg, #222325 0%, rgba(21, 21, 21, 0) 100%);
    border: 1px solid var(--tg-border-1);
}

.svc-cta-card h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #fff;
}

.svc-cta-card p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
    margin-bottom: 28px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.svc-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .svc-section {
        padding: 60px 0;
    }

    .svc-cta-card {
        padding: 40px 30px;
    }

    .svc-cta-card h3 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .svc-section {
        padding: 48px 0;
    }

    .svc-section-lead {
        font-size: 16px;
    }

    .svc-card {
        padding: 26px 22px;
    }

    .svc-card h4 {
        font-size: 20px;
    }

    .svc-why-card {
        padding: 28px 18px;
    }

    .svc-cta-card {
        padding: 32px 22px;
    }

    .svc-cta-card h3 {
        font-size: 24px;
    }

    .svc-cta-card p {
        font-size: 16px;
    }
}

/* =========================================
   HOMEPAGE: Feature icons (FontAwesome in place of PNGs)
   ========================================= */

.cyse-feature-icon {
    font-size: 42px;
    color: var(--tg-primary-color);
}

/* =========================================
   HOMEPAGE: Service cards
   ========================================= */

.cyse-service-card {
    position: relative;
    padding: 34px 28px 28px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cyse-service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(27, 124, 244, 0.3);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.cyse-service-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(27, 124, 244, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    font-size: 24px;
    color: var(--tg-primary-color);
}

.cyse-service-card__title {
    margin: 0 0 10px;
    font-size: 20px;
    color: #fff;
}

.cyse-service-card p {
    flex: 1;
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.65;
    font-size: 15px;
}

.cyse-service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--tg-primary-color);
    text-decoration: none;
    transition: gap 0.25s ease, color 0.25s ease;
}

.cyse-service-card__link:hover {
    gap: 12px;
    color: #fff;
}

.cyse-service-card__link i {
    font-size: 12px;
}

/* =========================================
   HOMEPAGE: CTA section
   ========================================= */

.cyse-cta {
    position: relative;
}

.cyse-cta__inner {
    padding: 64px 48px;
    border-radius: 24px;
    background: rgba(27, 124, 244, 0.06);
    border: 1px solid rgba(27, 124, 244, 0.15);
}

.cyse-cta__inner .sub-title {
    display: block;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #4da3ff;
}

.cyse-cta__inner .title {
    margin: 0 0 18px;
    font-size: 36px;
    line-height: 1.2;
    color: #fff;
}

.cyse-cta__inner .title span {
    color: var(--tg-primary-color);
}

.cyse-cta__inner p {
    max-width: 560px;
    margin: 0 auto 30px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
}

.cyse-cta__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 767px) {
    .cyse-cta__inner {
        padding: 40px 24px;
    }

    .cyse-cta__inner .title {
        font-size: 26px;
    }

    .cyse-service-card {
        padding: 28px 22px 22px;
    }
}
