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

html {
   scroll-behavior: smooth
}

body {
   font-family: 'Inter', sans-serif;
   font-weight: 300;
   color: #181818;
   background: #fff;
}

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

button {
   cursor: pointer;
   font-family: inherit;
   border: none;
   background: none;
}

img {
   display: block;
   max-width: 100%;
   object-fit: cover
}

input,
textarea,
select,
button {
   font-family: inherit
}

svg {
   display: inline-block;
   vertical-align: middle;
   fill: none;
   stroke: currentColor;
   stroke-width: 1.8;
   stroke-linecap: round;
   stroke-linejoin: round
}

/* ════════════════════════════════════════════════
   VARIABLES
════════════════════════════════════════════════ */
:root {
   --red: #f53333;
   --red-d: #d42020;
   --red-a: rgba(245, 51, 51, .1);
   --dark: #181818;
   --white: #fff;
   --g50: #f9fafb;
   --g100: #f3f4f6;
   --g200: #e5e7eb;
   --g300: #d1d5db;
   --g400: #9ca3af;
   --g500: #6b7280;
   --g600: #4b5563;
   --r: 12px;
   --r-lg: 16px;
   --r-xl: 20px;
   --r-2xl: 28px;
   --shadow-sm: 0 1px 4px rgba(0, 0, 0, .07);
   --shadow-md: 0 8px 30px rgba(0, 0, 0, .10);
   --shadow-lg: 0 16px 48px rgba(0, 0, 0, .12);
   --shadow-xl: 0 24px 64px rgba(0, 0, 0, .14);
}

/* ════════════════════════════════════════════════
   KEYFRAMES
════════════════════════════════════════════════ */
@keyframes fadeUp {
   from {
      opacity: 0;
      transform: translateY(28px)
   }

   to {
      opacity: 1;
      transform: none
   }

}

@keyframes fadeDown {
   from {
      opacity: 0;
      transform: translateY(-16px)
   }

   to {
      opacity: 1;
      transform: none
   }
}

@keyframes fadeLeft {
   from {
      opacity: 0;
      transform: translateX(-34px)
   }

   to {
      opacity: 1;
      transform: none
   }
}

@keyframes fadeRight {
   from {
      opacity: 0;
      transform: translateX(34px)
   }

   to {
      opacity: 1;
      transform: none
   }
}

@keyframes popIn {
   from {
      opacity: 0;
      transform: scale(.75) translateY(16px)
   }

   to {
      opacity: 1;
      transform: none
   }
}

@keyframes float {

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

   50% {
      transform: translateY(-22px)
   }
}

@keyframes floatR {

   0%,
   100% {
      transform: translateY(0) rotate(0deg)
   }

   50% {
      transform: translateY(-14px) rotate(8deg)
   }
}

@keyframes pulse {

   0%,
   100% {
      opacity: .8;
      transform: scale(1)
   }

   50% {
      opacity: .4;
      transform: scale(1.15)
   }
}

@keyframes blink {

   0%,
   100% {
      opacity: 1
   }

   50% {
      opacity: 0
   }
}

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

@keyframes shimmer {
   from {
      background-position: -700px 0
   }

   to {
      background-position: 700px 0
   }
}

@keyframes gradMove {

   0%,
   100% {
      background-position: 0% 50%
   }

   50% {
      background-position: 100% 50%
   }
}

@keyframes liveRing {
   0% {
      transform: scale(1);
      opacity: .8
   }

   100% {
      transform: scale(2.2);
      opacity: 0
   }
}

@keyframes borderGlow {

   0%,
   100% {
      box-shadow: 0 0 0 0 rgba(245, 51, 51, .4)
   }

   50% {
      box-shadow: 0 0 0 8px rgba(245, 51, 51, 0)
   }
}

@keyframes checkmark {
   0% {
      stroke-dashoffset: 24
   }

   100% {
      stroke-dashoffset: 0
   }
}

@keyframes slideDown {
   from {
      opacity: 0;
      max-height: 0
   }

   to {
      opacity: 1;
      max-height: 400px
   }
}

@keyframes countUp {
   from {
      opacity: 0;
      transform: translateY(20px) scale(.85)
   }

   to {
      opacity: 1;
      transform: none
   }
}

@keyframes orb1 {

   0%,
   100% {
      transform: translate(0, 0) scale(1)
   }

   40% {
      transform: translate(30px, -25px) scale(1.06)
   }

   70% {
      transform: translate(-15px, 18px) scale(.96)
   }
}

@keyframes orb2 {

   0%,
   100% {
      transform: translate(0, 0)
   }

   33% {
      transform: translate(-25px, 15px)
   }

   66% {
      transform: translate(20px, -12px)
   }
}

/* ── Load helpers ── */
.l1 {
   animation: fadeUp .55s .10s ease both
}

.l2 {
   animation: fadeUp .65s .25s ease both
}

.l3 {
   animation: fadeUp .60s .40s ease both
}

.l4 {
   animation: fadeUp .55s .55s ease both
}

.l5 {
   animation: fadeUp .50s .70s ease both
}

/* ── Scroll-driven ── */
@supports(animation-timeline:view()) {
   .rv {
      animation: fadeUp .6s linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 28%
   }


   .rl {
      animation: fadeLeft .6s linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 28%
   }


   .rr {
      animation: fadeRight.6s linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 28%
   }


   .rp {
      animation: popIn .5s cubic-bezier(.34, 1.56, .64, 1) both;
      animation-timeline: view();
      animation-range: entry 0% entry 30%
   }


   .rc {
      animation: countUp .6s cubic-bezier(.34, 1.2, .64, 1) both;
      animation-timeline: view();
      animation-range: entry 0% entry 25%
   }


}

/* ════════════════════════════════════════════════
   LAYOUT
════════════════════════════════════════════════ */
.wrap {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 1.5rem
}

.wrap-sm {
   max-width: 900px;
   margin: 0 auto;
   padding: 0 1.5rem
}

h1 {
   font-size: clamp(2rem, 4.5vw, 3.2rem);
   font-weight: 400;
   line-height: 1.12
}

h2 {
   font-size: clamp(1.5rem, 3vw, 2.2rem);
   font-weight: 400;
   line-height: 1.25
}

h3 {
   font-size: 1.05rem;
   font-weight: 700
}

p {
   color: var(--g600);
   line-height: 1.8
}

.label {
   display: block;
   font-size: .7rem;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: .12em;
   color: var(--red);
   margin-bottom: .75rem
}

.label-w {
   display: block;
   font-size: .7rem;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: .12em;
   color: rgba(255, 255, 255, .5);
   margin-bottom: .75rem
}

/* ── Buttons ── */

.btn-white {
   display: inline-flex;
   align-items: center;
   gap: .5rem;
   background: #fff;
   color: var(--dark);
   padding: .82rem 1.85rem;
   border-radius: var(--r);
   font-size: .875rem;
   font-weight: 700;
   transition: background .2s, transform .2s
}

.btn-white:hover {
   background: var(--g100);
   transform: translateY(-2px)
}

.btn-outline-w {
   display: inline-flex;
   align-items: center;
   gap: .5rem;
   background: transparent;
   color: #fff;
   padding: .8rem 1.8rem;
   border-radius: var(--r);
   font-size: .875rem;
   font-weight: 600;
   border: 2px solid rgba(255, 255, 255, .35);
   transition: border-color .2s, background .2s
}

.btn-outline-w:hover {
   border-color: #fff;
   background: rgba(255, 255, 255, .08)
}

.mega__inner {
   padding: 2rem 1.5rem;
}

.bg-green {
   background: #e6f7f0;
   color: #00a86b;
}

.bg-purple {
   background: #f3f0ff;
   color: #7048e8;
}

.bg-yellow {
   background: #fff9db;
   color: #fcc419;
}

.bg-red-light {
   background: #fff5f5;
   color: #ff6b6b;
}

.btn-red {
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
   background: var(--red);
   color: #fff;
   padding: 12px 18px;
   border-radius: 12px;
   font-size: 0.875rem;
   font-weight: 500;
   transition: background 0.2s, transform 0.2s;
}

.btn-red:hover {
   background: #d42020;
   transform: translateY(-1px);
}

.btn-red-full {
   width: 100%;
   justify-content: center;
}

.mobile-nav-link {
   display: block;
   padding: 0.75rem;
   border-radius: 0.5rem;
   font-size: 0.875rem;
   font-weight: 500;
   color: var(--dark);
   transition: color 0.15s, background 0.15s;
   width: 100%;
   text-align: left;
}

.mobile-nav-link:hover {
   color: var(--red);
   background: #fff1f1;
}

/* ── Responsive ── */
@media (max-width: 768px) {

   .nav,
   .header__cta {
      display: none;
   }


}

/* ════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════ */
.hero {
   background: white;
   padding: 7rem 0 5rem;
   margin-top: 4rem;
   position: relative;
   overflow: hidden;
   text-align: center;
   min-height: 80vh;
   display: flex;
   align-items: center
}

/* Animated grid */
.hero__grid {
   position: absolute;
   inset: 0;
   opacity: .05;
   background-image: linear-gradient(rgba(245, 51, 51, 1) 1px, transparent 1px), linear-gradient(90deg, rgba(245, 51, 51, 1) 1px, transparent 1px);
   background-size: 72px 72px
}

/* Floating orbs */
.orb {
   position: absolute;
   border-radius: 50%;
   filter: blur(60px);
   pointer-events: none
}

.orb-1 {
   width: 380px;
   height: 380px;
   background: rgba(245, 51, 51, .12);
   top: -4rem;
   left: -6rem;
   animation: orb1 14s ease infinite
}

.orb-2 {
   width: 260px;
   height: 260px;
   background: rgba(99, 102, 241, .1);
   bottom: -3rem;
   right: -3rem;
   animation: orb2 11s ease infinite
}

.orb-3 {
   width: 180px;
   height: 180px;
   background: rgba(245, 51, 51, .08);
   top: 50%;
   right: 20%;
   animation: float 9s ease infinite
}

/* Dot field */
.hero__dots {
   position: absolute;
   inset: 0;
   background-image: radial-gradient(circle, rgba(255, 255, 255, .07) 1px, transparent 1px);
   background-size: 28px 28px
}

/* Spinning ring */
.hero__ring {
   position: absolute;
   right: 8%;
   top: 12%;
   width: 280px;
   height: 280px;
   border-radius: 50%;
   border: 1px solid rgba(245, 51, 51, .2);
   animation: spin 30s linear infinite
}

.hero__ring::before {
   content: '';
   position: absolute;
   inset: 22px;
   border-radius: 50%;
   border: 1px dashed rgba(245, 51, 51, .12);
   animation: spin 20s linear infinite reverse
}

.hero__ring::after {
   content: '';
   position: absolute;
   inset: 65px;
   border-radius: 50%;
   background: rgba(245, 51, 51, .04)
}

.hero__content {
   position: relative;
   z-index: 2;
   max-width: 760px;
   margin: 0 auto
}

.hero__eyebrow {
   display: inline-flex;
   align-items: center;
   gap: .6rem;
   background: rgba(245, 51, 51, .15);
   border: 1px solid rgba(245, 51, 51, .3);
   color: var(--red);
   font-size: .72rem;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: .1em;
   padding: .35rem 1rem;
   border-radius: 999px;
   margin-bottom: 1.5rem
}

.hero__eyebrow::before {
   content: '';
   width: 6px;
   height: 6px;
   border-radius: 50%;
   background: var(--red);
   animation: pulse 2s infinite
}

.hero h1 {
   color: black;
   margin-bottom: 1.25rem;
   text-align: center !important;
}

.hero h1 .hl {
   background: linear-gradient(90deg, #f53333 0%, #ff8080 50%, #f53333 100%);
   background-size: 700px 100%;
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   animation: shimmer 4s linear infinite
}

.hero p {
   color: var(--g600);
   font-size: 1.05rem;
   max-width: 52ch;
   margin: 0 auto 2.75rem;
   text-align: center !important;
}

/* Quick channels */
.hero__channels {
   display: flex;
   justify-content: center;
   gap: 1rem;
   flex-wrap: wrap
}

.channel {
   display: flex;
   align-items: center;
   gap: .75rem;
   background: var(--g50);
   border: 1px solid rgba(255, 255, 255, .12);
   border-radius: var(--r-xl);
   padding: .85rem 1.4rem;
   transition: background .25s, border-color .25s, transform .25s;
   cursor: default
}

.channel:hover {
   background: rgba(255, 255, 255, .12);
   border-color: rgba(245, 51, 51, .35);
   transform: translateY(-3px)
}

.channel__icon {
   width: 2.5rem;
   height: 2.5rem;
   border-radius: .75rem;
   background: rgba(245, 51, 51, .18);
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0
}

.channel__icon svg {
   width: 17px;
   height: 17px;
   color: var(--red)
}

.channel__title {
   font-size: .88rem;
   font-weight: 700;
   color: black;
   line-height: 1.2
}

.channel__sub {
   font-size: .72rem;
   color: black;
   margin-top: .1rem
}

/* Live indicator */
.live-dot {
   display: inline-flex;
   align-items: center;
   gap: .4rem
}

.live-dot__ring {
   position: relative;
   width: 8px;
   height: 8px;
   flex-shrink: 0
}

.live-dot__ring::before {
   content: '';
   position: absolute;
   inset: 0;
   border-radius: 50%;
   background: #22c55e
}

.live-dot__ring::after {
   content: '';
   position: absolute;
   inset: -3px;
   border-radius: 50%;
   border: 1.5px solid #22c55e;
   animation: liveRing 1.8s ease-out infinite
}

.live-dot__text {
   font-size: .72rem;
   color: #22c55e;
   font-weight: 600
}

/* ════════════════════════════════════════════════
   RESPONSE STRIP
════════════════════════════════════════════════ */
.response-strip {
   background: var(--red);
   padding: 1.25rem 0
}

.response-strip__in {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 3rem;
   flex-wrap: wrap
}

.rs-item {
   display: flex;
   align-items: center;
   gap: .75rem;
   color: #fff
}

.rs-icon {
   width: 2rem;
   height: 2rem;
   border-radius: .5rem;
   background: rgba(255, 255, 255, .18);
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0
}

.rs-icon svg {
   width: 14px;
   height: 14px;
   color: #fff
}

.rs-val {
   font-size: .95rem;
   font-weight: 800;
   color: #fff;
   line-height: 1
}

.rs-lbl {
   font-size: .7rem;
   color: rgba(255, 255, 255, .8);
   margin-top: .05rem
}

.rs-divider {
   width: 1px;
   height: 2.5rem;
   background: rgba(255, 255, 255, .2)
}

/* ════════════════════════════════════════════════
   MAIN CONTACT SECTION
════════════════════════════════════════════════ */
.contact-main {
   background: #fdf6f6;
   padding: 5.5rem 0
}

.contact-main__grid {
   display: grid;
   grid-template-columns: 1fr 380px;
   gap: 3rem;
   align-items: start
}

/* ─── FORM CARD ─── */
.form-card {
   background: #fff;
   border-radius: var(--r-2xl);
   padding: 3rem;
   box-shadow: var(--shadow-md);
   border: 1px solid var(--g100)
}

.form-card__head {
   margin-bottom: 2.5rem
}

.form-card__head h2 {
   margin-bottom: .5rem
}

.form-card__head p {
   font-size: .9rem;
   color: var(--g500)
}

/* Contact type tabs (CSS radio) */
.ct-radio {
   display: none
}

.ct-tabs {
   display: flex;
   gap: .4rem;
   background: var(--g50);
   border-radius: var(--r-lg);
   padding: .35rem;
   margin-bottom: 2.25rem;
   flex-wrap: wrap
}

.ct-tabs label {
   flex: 1;
   text-align: center;
   padding: .55rem .75rem;
   border-radius: .625rem;
   font-size: .8rem;
   font-weight: 600;
   color: var(--g500);
   cursor: pointer;
   transition: all .2s;
   white-space: nowrap;
   min-width: 80px
}

.ct-tabs label:hover {
   color: var(--dark);
   background: rgba(255, 255, 255, .7)
}

/* Active tab */
#ct-sales:checked~.form-body .ct-tabs label[for="ct-sales"],
#ct-support:checked~.form-body .ct-tabs label[for="ct-support"],
#ct-partner:checked~.form-body .ct-tabs label[for="ct-partner"],
#ct-general:checked~.form-body .ct-tabs label[for="ct-general"] {
   background: #fff;
   color: var(--dark);
   box-shadow: 0 2px 8px rgba(0, 0, 0, .08)
}

/* Context message per tab */
.ct-context {
   display: none;
   padding: .875rem 1rem;
   border-radius: var(--r-lg);
   margin-bottom: 2rem;
   font-size: .85rem;
   line-height: 1.6
}

#ct-sales:checked~.form-body .ctx-sales {
   display: flex
}

#ct-support:checked~.form-body .ctx-support {
   display: flex
}

#ct-partner:checked~.form-body .ctx-partner {
   display: flex
}

#ct-general:checked~.form-body .ctx-general {
   display: flex
}

.ct-context {
   align-items: flex-start;
   gap: .75rem;
   background: #fdf6f6;
   border: 1px solid rgba(245, 51, 51, .2);
   color: var(--red)
}

.ct-context svg {
   width: 16px;
   height: 16px;
   flex-shrink: 0;
   margin-top: .1rem
}

.ct-context p {
   color: rgba(245, 51, 51, .85);
   margin: 0
}

/* ── Floating Label Fields ── */
.field-row {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 1.25rem
}

.field-group {
   position: relative;
   margin-bottom: 1.25rem
}

.form-input {
   width: 100%;
   padding: 1rem;
   border: 1.5px solid var(--g200);
   border-radius: var(--r-lg);
   font-size: .9rem;
   color: var(--dark);
   background: #fff;
   outline: none;
   transition: border-color .2s, box-shadow .2s;
}

.form-input:focus {
   border-color: var(--red);
   box-shadow: 0 0 0 4px rgba(245, 51, 51, .08)
}

.form-label {
   position: absolute;
   left: 1rem;
   top: -.55rem;
   background: #fff;
   padding: 0 .4rem;
   font-size: .72rem;
   font-weight: 700;
   color: var(--g500);
   text-transform: uppercase;
   letter-spacing: .05em;
   pointer-events: none;
   transition: color .2s;
   z-index: 2;
}

.form-input:focus ~ .form-label {
   color: var(--red);
}

textarea.form-input {
   min-height: 130px;
   padding: 1rem;
   resize: vertical;
   line-height: 1.6
}

/* Select field */
.select-wrap {
   position: relative;
   margin-bottom: 1.25rem
}

.form-select {
   width: 100%;
   padding: 1rem;
   border: 1.5px solid var(--g200);
   border-radius: var(--r-lg);
   font-size: .9rem;
   color: var(--dark);
   background: #fff;
   outline: none;
   appearance: none;
   cursor: pointer;
   transition: border-color .2s, box-shadow .2s
}

.form-select:focus {
   border-color: var(--red);
   box-shadow: 0 0 0 4px rgba(245, 51, 51, .08)
}

.form-select:focus ~ .select-wrap__label {
   color: var(--red);
}

.select-wrap__label {
   position: absolute;
   left: 1rem;
   top: -.55rem;
   background: #fff;
   padding: 0 .4rem;
   font-size: .72rem;
   font-weight: 700;
   color: var(--g500);
   text-transform: uppercase;
   letter-spacing: .05em;
   transition: color .2s;
   z-index: 2
}

.select-wrap__chevron {
   position: absolute;
   right: 1rem;
   top: 50%;
   transform: translateY(-50%);
   pointer-events: none;
   width: 16px;
   height: 16px;
   color: var(--g400)
}

/* Checkbox */
.checkbox-wrap {
   display: flex;
   align-items: flex-start;
   gap: .75rem;
   margin-top: .5rem
}

.form-checkbox {
   width: 1.15rem;
   height: 1.15rem;
   border: 1.5px solid var(--g300);
   border-radius: .35rem;
   appearance: none;
   cursor: pointer;
   flex-shrink: 0;
   margin-top: .15rem;
   transition: border-color .2s, background .2s;
   position: relative
}

.form-checkbox:checked {
   background: var(--red);
   border-color: var(--red)
}

.form-checkbox:checked::after {
   content: '';
   position: absolute;
   inset: 0;
   background: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8l3.5 3.5L13 4.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat
}

.checkbox-label {
   font-size: .82rem;
   color: var(--g600);
   line-height: 1.6
}

.checkbox-label a {
   color: var(--red);
   font-weight: 600
}

.checkbox-label a:hover {
   text-decoration: underline
}

/* ─── CONTACT INFO PANEL ─── */
.info-panel {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
   position: sticky;
   top: 5.5rem
}

.info-block {
   background: #fff;
   border-radius: var(--r-xl);
   padding: 2rem;
   border: 1px solid var(--g100);
   transition: box-shadow .3s
}

.info-block:hover {
   box-shadow: var(--shadow-sm)
}

.info-block__title {
   font-size: .75rem;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: .12em;
   color: var(--g500);
   margin-bottom: 1.25rem
}

.contact-line {
   display: flex;
   align-items: flex-start;
   gap: .875rem;
   margin-bottom: 1.1rem
}

.contact-line:last-child {
   margin-bottom: 0
}

.cl-icon {
   width: 2.5rem;
   height: 2.5rem;
   border-radius: .75rem;
   background: #fff1f1;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
   transition: background .25s
}

.contact-line:hover .cl-icon {
   background: var(--red)
}

.cl-icon svg {
   width: 15px;
   height: 15px;
   color: var(--red);
   transition: color .25s
}

.contact-line:hover .cl-icon svg {
   color: #fff
}

.cl-val {
   font-size: .875rem;
   font-weight: 600;
   color: var(--dark);
   margin-bottom: .1rem
}

.cl-sub {
   font-size: .75rem;
   color: var(--g500)
}

/* Social block */
.socials-block {
   background: var(--dark);
   border-radius: var(--r-xl);
   padding: 2rem
}

.socials-block__title {
   font-size: .75rem;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: .12em;
   color: rgba(255, 255, 255, .5);
   margin-bottom: 1.25rem
}

.socials-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: .65rem
}

.social-link {
   display: flex;
   align-items: center;
   gap: .75rem;
   background: rgba(255, 255, 255, .06);
   border: 1px solid rgba(255, 255, 255, .09);
   border-radius: var(--r-lg);
   padding: .875rem 1rem;
   transition: background .2s, border-color .2s, transform .2s
}

.social-link:hover {
   background: rgba(245, 51, 51, .15);
   border-color: rgba(245, 51, 51, .3);
   transform: translateY(-2px)
}

.social-link svg {
   width: 16px;
   height: 16px;
   color: rgba(255, 255, 255, .65)
}

.social-link:hover svg {
   color: var(--red)
}

.social-link span {
   font-size: .8rem;
   font-weight: 600;
   color: rgba(255, 255, 255, .75)
}

/* NPS block */
.nps-block {
   background: linear-gradient(135deg, var(--red), #c41e1e);
   border-radius: var(--r-xl);
   padding: 2rem;
   text-align: center;
   position: relative;
   overflow: hidden
}

.nps-block::before {
   content: '';
   position: absolute;
   inset: 0;
   background-image: radial-gradient(circle, rgba(255, 255, 255, .08) 1px, transparent 1px);
   background-size: 20px 20px
}

.nps-block__num {
   font-size: 3rem;
   font-weight: 800;
   color: #fff;
   line-height: 1;
   position: relative
}

.nps-block__label {
   font-size: .8rem;
   color: rgba(255, 255, 255, .8);
   margin-top: .25rem;
   position: relative
}

.nps-block__sub {
   font-size: .72rem;
   color: rgba(255, 255, 255, .6);
   margin-top: .5rem;
   position: relative
}

.nps-stars {
   display: flex;
   justify-content: center;
   gap: .25rem;
   margin-top: .75rem;
   position: relative
}

.nps-star {
   width: 1rem;
   height: 1rem;
   fill: #fbbf24;
   stroke: #fbbf24
}

/* ════════════════════════════════════════════════
   TRUST STATS
════════════════════════════════════════════════ */
.trust {
   background: #fff;
   padding: 4.5rem 0;
   border-top: 1px solid var(--g100)
}

.trust__grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 0
}

.trust-item {
   padding: 2rem 1.5rem;
   text-align: center;
   border-right: 1px solid var(--g100);
   position: relative;
   overflow: hidden;
   transition: background .25s
}

.trust-item:last-child {
   border-right: none
}

.trust-item::after {
   content: '';
   position: absolute;
   inset: 0;
   background: radial-gradient(circle at 50% 100%, rgba(245, 51, 51, .06), transparent 70%);
   opacity: 0;
   transition: opacity .35s
}

.trust-item:hover::after {
   opacity: 1
}

.trust-item:hover {
   background: var(--g50)
}

.trust-icon {
   width: 3rem;
   height: 3rem;
   border-radius: .875rem;
   background: #fff1f1;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto .875rem;
   transition: background .25s, transform .25s
}

.trust-item:hover .trust-icon {
   background: var(--red);
   transform: scale(1.08)
}

.trust-icon svg {
   width: 19px;
   height: 19px;
   color: var(--red);
   transition: color .25s
}

.trust-item:hover .trust-icon svg {
   color: #fff
}

.trust-num {
   font-size: 2.25rem;
   font-weight: 800;
   color: var(--dark);
   line-height: 1;
   margin-bottom: .3rem
}

.trust-lbl {
   font-size: .8rem;
   color: var(--g500);
   font-weight: 500
}

/* ════════════════════════════════════════════════
   MAP / OFFICES
════════════════════════════════════════════════ */
.offices {
   background: var(--g50);
   padding: 5.5rem 0
}

.offices__head {
   text-align: center;
   margin-bottom: 3.5rem
}

.offices__head p {
   max-width: 48ch;
   margin: .75rem auto 0;
   color: var(--g500)
}

.offices__grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 1.25rem
}

.office-card {
   background: #fff;
   border-radius: var(--r-xl);
   overflow: hidden;
   border: 1px solid var(--g100);
   transition: transform .3s, box-shadow .3s;
   cursor: default
}

.office-card:hover {
   transform: translateY(-5px);
   box-shadow: var(--shadow-md)
}

.office-card__img {
   height: 150px;
   overflow: hidden;
   position: relative
}

.office-card__img img {
   width: 100%;
   height: 100%;
   transition: transform .6s
}

.office-card:hover .office-card__img img {
   transform: scale(1.07)
}

.office-card__flag {
   position: absolute;
   top: .75rem;
   right: .75rem;
   background: rgba(0, 0, 0, .55);
   color: #fff;
   font-size: .75rem;
   font-weight: 700;
   padding: .25rem .6rem;
   border-radius: 999px;
   backdrop-filter: blur(4px)
}

.office-card__body {
   padding: 1.4rem
}

.office-card__hq {
   display: inline-block;
   font-size: .62rem;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: .1em;
   background: var(--red-a);
   color: var(--red);
   border-radius: 999px;
   padding: .18rem .65rem;
   margin-bottom: .65rem
}

.office-card__city {
   font-size: 1.05rem;
   font-weight: 700;
   color: var(--dark);
   margin-bottom: .15rem;
   transition: color .2s
}

.office-card:hover .office-card__city {
   color: var(--red)
}

.office-card__region {
   font-size: .72rem;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: .08em;
   color: var(--g400);
   margin-bottom: .75rem
}

.office-card__detail {
   display: flex;
   align-items: center;
   gap: .4rem;
   font-size: .8rem;
   color: var(--g500);
   margin-bottom: .3rem
}

.office-card__detail svg {
   width: 11px;
   height: 11px;
   color: var(--red)
}

/* ════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════ */
.faq {
   background: #fff;
   padding: 5.5rem 0
}

.faq__head {
   text-align: center;
   margin-bottom: 3.5rem
}

.faq__head p {
   max-width: 46ch;
   margin: .75rem auto 0;
   color: var(--g500)
}

.faq__grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 0 3rem;
   max-width: 960px;
   margin: 0 auto
}

.faq-item {
   border-bottom: 1px solid var(--g100)
}

.faq-cb {
   display: none
}

.faq-q {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 1.25rem 0;
   cursor: pointer;
   gap: 1rem
}

.faq-q__text {
   font-size: .9rem;
   font-weight: 600;
   color: var(--dark);
   transition: color .2s;
   line-height: 1.4
}

.faq-q:hover .faq-q__text {
   color: var(--red)
}

.faq-plus {
   width: 2rem;
   height: 2rem;
   border-radius: 50%;
   background: var(--g50);
   border: 1px solid var(--g200);
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
   transition: background .3s, transform .35s;
   color: var(--g500)
}

.faq-plus svg {
   width: 14px;
   height: 14px;
   transition: stroke .25s
}

.faq-cb:checked~.faq-q .faq-plus {
   background: var(--red);
   border-color: var(--red);
   transform: rotate(45deg)
}

.faq-cb:checked~.faq-q .faq-plus svg {
   stroke: #fff
}

.faq-body {
   max-height: 0;
   overflow: hidden;
   transition: max-height .45s ease, padding .35s
}

.faq-cb:checked~.faq-body {
   max-height: 300px;
   padding-bottom: 1.25rem
}

.faq-body p {
   font-size: .875rem;
   color: var(--g500);
   line-height: 1.8
}

/* ════════════════════════════════════════════════
   BOOK A CALL
════════════════════════════════════════════════ */
.book {
   background: var(--dark);
   padding: 5.5rem 0;
   position: relative;
   overflow: hidden
}

.book::before {
   content: '';
   position: absolute;
   inset: 0;
   background-image: linear-gradient(rgba(245, 51, 51, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(245, 51, 51, .08) 1px, transparent 1px);
   background-size: 70px 70px
}

.book__orb {
   position: absolute;
   border-radius: 50%;
   filter: blur(70px)
}

.book__orb-1 {
   width: 400px;
   height: 400px;
   background: rgba(245, 51, 51, .1);
   top: -100px;
   right: -80px;
   animation: float 10s ease infinite
}

.book__orb-2 {
   width: 250px;
   height: 250px;
   background: rgba(99, 102, 241, .08);
   bottom: -60px;
   left: -40px;
   animation: float 13s ease infinite reverse
}

.book__in {
   position: relative;
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 5rem;
   align-items: center
}

.book__left h2 {
   color: #fff;
   margin-bottom: 1.25rem
}

.book__left p {
   color: rgba(255, 255, 255, .6);
   margin-bottom: 2rem
}

.book__steps {
   display: flex;
   flex-direction: column;
   gap: 1rem
}

.book__step {
   display: flex;
   align-items: center;
   gap: 1rem
}

.book__step-n {
   width: 2.25rem;
   height: 2.25rem;
   border-radius: 50%;
   background: rgba(245, 51, 51, .2);
   border: 1px solid rgba(245, 51, 51, .3);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: .8rem;
   font-weight: 800;
   color: var(--red);
   flex-shrink: 0
}

.book__step-t {
   font-size: .875rem;
   color: rgba(255, 255, 255, .75)
}

.book__right {
   background: rgba(255, 255, 255, .05);
   border: 1px solid rgba(255, 255, 255, .1);
   border-radius: var(--r-2xl);
   padding: 2.5rem;
   backdrop-filter: blur(6px)
}

.book__expert {
   display: flex;
   align-items: center;
   gap: 1.25rem;
   margin-bottom: 2rem;
   padding-bottom: 1.75rem;
   border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.book__expert-ava {
   width: 4rem;
   height: 4rem;
   border-radius: 1rem;
   background: linear-gradient(135deg, var(--red), #ff8c42);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.2rem;
   font-weight: 800;
   color: #fff;
   flex-shrink: 0
}

.book__expert-name {
   font-size: .95rem;
   font-weight: 700;
   color: #fff;
   margin-bottom: .15rem
}

.book__expert-role {
   font-size: .78rem;
   color: rgba(255, 255, 255, .5)
}

.book__expert-avail {
   display: flex;
   align-items: center;
   gap: .4rem;
   font-size: .72rem;
   color: #22c55e;
   font-weight: 600;
   margin-top: .3rem
}

.book__expert-avail::before {
   content: '';
   width: 6px;
   height: 6px;
   border-radius: 50%;
   background: #22c55e;
   animation: pulse 2s infinite
}

.book__cal {
   display: flex;
   flex-direction: column;
   gap: .75rem
}

.book__slot {
   background: rgba(255, 255, 255, .06);
   border: 1px solid rgba(255, 255, 255, .1);
   border-radius: var(--r-lg);
   padding: .875rem 1.25rem;
   display: flex;
   align-items: center;
   justify-content: space-between;
   cursor: pointer;
   transition: background .2s, border-color .2s
}

.book__slot:hover {
   background: rgba(245, 51, 51, .15);
   border-color: rgba(245, 51, 51, .35)
}

.book__slot-time {
   font-size: .85rem;
   font-weight: 600;
   color: #fff
}

.book__slot-date {
   font-size: .75rem;
   color: rgba(255, 255, 255, .5)
}

.book__slot-btn {
   font-size: .72rem;
   font-weight: 700;
   color: var(--red)
}

.book__cta {
   margin-top: 1.75rem
}

/* ════════════════════════════════════════════════
   CTA BAND
════════════════════════════════════════════════ */
.cta-band {
   background: var(--g50);
   ;
   padding: 4rem 0;
   text-align: center;
   position: relative;
   overflow: hidden
}

.cta-band::before {
   content: '';
   position: absolute;
   inset: 0;
   background-image: linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
   background-size: 55px 55px
}

.cta-band__orb {
   position: absolute;
   border-radius: 50%;
   background: rgba(255, 255, 255, .08);
   filter: blur(50px)
}

.cta-band__orb-1 {
   width: 280px;
   height: 280px;
   top: -80px;
   right: -40px
}

.cta-band__orb-2 {
   width: 180px;
   height: 180px;
   bottom: -60px;
   left: -30px
}

.cta-band__inner {
   position: relative;
   max-width: 600px;
   margin: 0 auto
}

.cta-band h2 {
   color: #000000;
   margin-bottom: .875rem
}

.cta-band p {
   color: rgba(0, 0, 0, 0.8);
   font-size: 1rem;
   margin-bottom: 2.25rem
}

.cta-band__btns {
   display: flex;
   justify-content: center;
   gap: 1rem;
   flex-wrap: wrap
}

.container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 1.5rem;
}

/* ════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════ */
@media(max-width:1024px) {
   .contact-main__grid {
      grid-template-columns: 1fr;
      gap: 2.5rem
   }


   .info-panel {
      position: static;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.25rem
   }


   .socials-block {
      grid-column: span 2
   }


   .trust__grid {
      grid-template-columns: 1fr 1fr
   }


   .trust-item {
      border-right: none;
      border-bottom: 1px solid var(--g100)
   }


   .book__in {
      grid-template-columns: 1fr;
      gap: 3rem
   }


   .faq__grid {
      grid-template-columns: 1fr;
      gap: 0
   }


}

@media(max-width:768px) {
   .hdr__cta {
      display: none
   }

   .offices__grid {
      grid-template-columns: 1fr 1fr
   }

   .hero__channels {
      flex-direction: column;
      align-items: center
   }

   .channel {
      width: 100%;
      max-width: 360px
   }

   .field-row {
      grid-template-columns: 1fr
   }

   .response-strip__in {
      gap: 1.5rem
   }

   .rs-divider {
      display: none
   }

   .trust__grid {
      grid-template-columns: 1fr 1fr
   }

   .form-card {
      padding: 1.75rem
   }

   .info-panel {
      grid-template-columns: 1fr
   }

   .socials-block {
      grid-column: 1
   }
}

@media(max-width:520px) {

   .trust__grid,
   .offices__grid {
      grid-template-columns: 1fr
   }
}


/* =============================================================== */
/*  GLOBAL LEFT ALIGNMENT OVERRIDE                                 */
/* =============================================================== */
* {
   text-align: left !important;
}

.sec-head,
.heading,
.values__head,
.timeline__head,
.culture__head,
.leadership__head,
.offices__head,
.faq__head,
.benefits-deep__head,
.l-hero__content,
.svc-hero__content,
.nps-block,
.leader,
.no-role,
.recog-badge,
.security-point,
.security-points,
.cta-banner,
.cta,
.cta-band,
.cta-banner__inner,
.cta__inner,
.cta-band__inner,
.cta-band__btns,
.cta__btns,
.overview-content,
.det-img,
.overview-card,
.sec-head.dark,
.community-wrapper,
.ai-service-card h3,
.roi-head,
.roi-cell,
.cs-story-card,
.cs-story-content,
.process-step,
.test-card,
.tab-header,
.feature-cell__body,
.stat-tile,
.roi-label {
   margin-left: 0 !important;
   margin-right: auto !important;
   align-items: flex-start !important;
   justify-content: flex-start !important;
   text-align: left !important;
}

.cs-tech-tag,
.tool-item,
.trust-item,
.trust-item * {
   margin-left: auto !important;
   margin-right: auto !important;
   align-items: center !important;
   justify-content: center !important;
   text-align: center !important;
}

/* Custom Dropdown Styling */
.custom-select {
  position: relative;
  width: 100%;
  font-family: inherit;
}

.custom-select__trigger {
  width: 100%;
  padding: 1rem;
  border: 1.5px solid var(--g200);
  border-radius: var(--r-lg);
  font-size: .9rem;
  color: var(--g400);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color .2s, box-shadow .2s;
  user-select: none;
}

.custom-select__trigger span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 0.5rem;
}

.custom-select.open .custom-select__trigger {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(245, 51, 51, .08);
}

.custom-select.open .select-wrap__label {
   color: var(--red);
}

.custom-select__arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
  color: var(--g400);
  flex-shrink: 0;
}

.custom-select.open .custom-select__arrow {
  transform: rotate(180deg);
}

.custom-select__options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1.5px solid var(--g200);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  max-height: 250px;
  overflow-y: auto;
  padding: 0.5rem 0;
}

.custom-select.open .custom-select__options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-select__option {
  padding: 0.75rem 1.25rem;
  font-size: .9rem;
  color: var(--dark);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  text-align: left;
}

.custom-select__option:hover,
.custom-select__option.selected {
  background: #fff1f1;
  color: var(--red);
  font-weight: 500;
}

.custom-select__group-label {
  padding: 0.6rem 1.25rem 0.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--g400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  pointer-events: none;
  text-align: left;
}