﻿/* =============================================
   GLOBAL — Variables & Base Reset
   ============================================= */
:root {
  --dark: #111625;
  --text: #121827;
  --muted: #5b6170;
  --purple: #7b4dff;
  --pink: #ff4fa3;
  --green: #45d7bd;
  --yellow: #ffd73d;
  --soft: #f7f7f8;
  --gold: #ffae00;
  --swx-dark: #081025;
  --swx-ink: #11172a;
  --swx-muted: #5d6475;
  --swx-purple: #7747ff;
  --swx-pink: #fa62a5;
  --swx-green: #42dfbc;
  --swx-yellow: #ffbd11;
  --swx-line: #e8e9f2;
  --swx-shadow: 0 18px 40px rgba(16, 19, 37, 0.1);
  --swc2-dark: #10162d;
  --swc2-text: #22283b;
  --swc2-muted: #656b7d;
  --swc2-purple: #6942ff;
  --swc2-purple2: #7a4dff;
  --swc2-bg: #f9f9fc;
  --swc2-border: #e9e9f3;
  --swc2-shadow: 0 16px 38px rgba(26, 22, 64, 0.08);
  --site-container-max: 1320px;
  --site-container-gutter: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.site-wrapper {
  width: 100%;
  overflow: hidden;
}

.custom-container,
.sw-container,
.swx-shell,
.swx-work-page .swx-shell,
.resources-page .swr2-container,
.contact-page .swc2-container {
  width: 100%;
  max-width: var(--site-container-max);
  margin-inline: auto;
  padding-inline: var(--site-container-gutter);
  box-sizing: border-box;
}

@media (max-width: 1199.98px) {
  :root {
    --site-container-gutter: 20px;
  }
}

@media (max-width: 767.98px) {
  :root {
    --site-container-gutter: 16px;
  }
}

@media (max-width: 575.98px) {
  :root {
    --site-container-gutter: 14px;
  }
}

/* =============================================
   INDEX.HTML — START
   ============================================= */

/* --- INDEX — Header — START --- */

.main-nav {
  padding: 26px 0 18px;
  background: #fff;
}

.site-logo {
  width: auto;
  height: 48px;
  max-width: 180px;
  object-fit: contain;
  image-rendering: auto;
  display: block;
}

.main-nav .site-logo {
  height: 64px;
  max-width: 240px;
}

.navbar-nav .nav-link {
  color: var(--dark);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px !important;
  position: relative;
}

.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 3px;
  background: var(--purple);
  left: 50%;
  bottom: 2px;
  transform: translateX(-50%);
  border-radius: 20px;
}

.btn-black {
  background: var(--dark);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 14px 25px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(17, 22, 37, 0.15);
}

.btn-black:hover,
.btn-black:focus {
  background: var(--purple);
  color: #fff;
}
/* --- INDEX — Header — END --- */

/* --- INDEX — Hero — START --- */
.hero-section {
  padding: 52px 0 0;
}

.hero-title {
  font-size: clamp(48px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -3px;
  font-weight: 900;
  margin-bottom: 30px;
}

.hero-title span {
  color: var(--purple);
}

.hero-copy {
  font-size: 19px;
  line-height: 1.6;
  color: #2d3342;
  max-width: 420px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 16px 25px;
}

.magic-note {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Comic Sans MS", "Bradley Hand", cursive;
  font-size: 20px;
  color: #1b1f2e;
  line-height: 1.3;
  position: relative;
}

.magic-note i {
  transform: rotate(40deg);
  font-size: 28px;
  color: #111827;
}

.magic-note::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  width: 120px;
  height: 9px;
  border-bottom: 3px solid var(--purple);
  border-radius: 50%;
}

.hero-image {
  width: min(100%, 620px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 45px rgba(123, 77, 255, 0.10));
}

.brand-strip {
  margin-top: 22px;
  padding: 25px 40px;
  background: #f8f8fa;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.025);
}

.brand-helper {
  font-size: 14px;
  color: #262c39;
  display: flex;
  align-items: center;
  gap: 13px;
  white-space: nowrap;
}

.brand-helper i {
  color: var(--purple);
  font-size: 22px;
}

.brand-name {
  font-weight: 900;
  color: #111;
  font-size: 18px;
  letter-spacing: -0.8px;
}

.brand-name.script {
  font-family: Georgia, serif;
  font-style: italic;
}
/* --- INDEX — Hero — END --- */

/* --- INDEX — Services Section — START --- */
.services-section,
.work-section,
.testimonial-section {
  padding: 86px 0;
}

.section-pill {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 999px;
  border: 1.5px solid var(--pink);
  color: var(--dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 15px;
  line-height: 1;
}

.section-pill.purple {
  border-color: var(--purple);
}

.section-pill.dark-pill {
  border-color: var(--pink);
  color: #fff;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -1.7px;
  font-weight: 900;
  margin-bottom: 23px;
}

.section-copy {
  color: var(--muted);
  line-height: 1.85;
  font-size: 16px;
  max-width: 365px;
  margin-bottom: 27px;
}

.text-link {
  color: var(--dark);
  font-size: 15px;
  font-weight: 800;
  border-bottom: 2px solid var(--pink);
  padding-bottom: 5px;
}

.text-link i {
  color: var(--pink);
  margin-left: 8px;
}

.service-card {
  min-height: 218px;
  height: 100%;
  border-radius: 22px;
  padding: 27px 25px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(25, 30, 45, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 64px rgba(25, 30, 45, 0.12);
}

.service-card .icon {
  display: block;
  font-size: 35px;
  line-height: 1;
  color: #222538;
  margin-bottom: 23px;
}

.service-card h3 {
  font-size: 22px;
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: -0.6px;
  margin-bottom: 30px;
}

.service-card p {
  max-width: 185px;
  color: #454c5a;
  font-size: 12.5px;
  line-height: 1.35;
  font-weight: 500;
  margin-bottom: 0;
}

.mini-bars {
  display: block;
  width: 76px;
  height: 5px;
  border-radius: 99px;
  margin-bottom: 14px;
}

.purple-bars { background: #69e7c7; box-shadow: 43px 0 0 var(--purple); }
.dark-bars { background: var(--dark); box-shadow: 43px 0 0 var(--dark); }
.teal-bars { background: #5fe4c9; box-shadow: 43px 0 0 rgba(255, 255, 255, .55); }
.pink-bars { background: var(--pink); box-shadow: 43px 0 0 rgba(255, 255, 255, .72); }
.blue-bars { background: #5fe4c9; box-shadow: 43px 0 0 rgba(255, 255, 255, .72); }
.violet-bars { background: var(--purple); box-shadow: 43px 0 0 rgba(255, 255, 255, .72); }

.round-arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--dark);
  background: #fff;
  font-size: 13px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.card-purple { background: linear-gradient(135deg, #eadfff 0%, #c7b5ff 100%); }
.card-yellow { background: linear-gradient(135deg, #ffe871 0%, #ffd43e 100%); }
.card-pink { background: linear-gradient(135deg, #ffabd8 0%, #f596c9 100%); }
.card-mint { background: linear-gradient(135deg, #c9fff2 0%, #90eddc 100%); }
.card-blue { background: linear-gradient(135deg, #daf5ff 0%, #a4dfff 100%); }
.card-lavender { background: linear-gradient(135deg, #eee2ff 0%, #cec0ff 100%); }
/* --- INDEX — Services Section — END --- */

/* --- INDEX — Impact Section — START --- */
.impact-section {
  padding: 26px 0 72px;
}

.impact-box {
  position: relative;
  background: var(--dark);
  color: #fff;
  border-radius: 34px;
  padding: 60px 58px;
  box-shadow: 0 26px 80px rgba(17, 22, 37, 0.19);
}

.impact-box::before,
.impact-box::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(60px);
}

.impact-box::before {
  width: 185px;
  height: 155px;
  background: #fff02c;
  left: -40px;
  top: -28px;
}

.impact-box::after {
  width: 245px;
  height: 150px;
  background: #ff6cd1;
  right: 0;
  top: -32px;
}

.impact-box h2 {
  font-size: 33px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -1px;
  margin: 0;
}

.stat-item strong {
  display: block;
  font-size: clamp(36px, 5vw, 49px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.stat-item span {
  color: #e8ebf2;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.purple-text { color: #9c6cff; }
.green-text { color: #5be8d1; }
.yellow-text { color: var(--yellow); }
.pink-text { color: #ff69b4; }
/* --- INDEX — Impact Section — END --- */

/* --- INDEX — Work Section — START --- */
.work-section {
  padding-top: 0;
}

.work-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
}

.work-swiper {
  flex: 1 1 auto;
  min-width: 0;
  padding-bottom: 36px;
  overflow: hidden;
}

.work-swiper .swiper-wrapper {
  align-items: stretch;
}

.work-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.slider-btn {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #f2eeff;
  color: var(--purple);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.slider-btn:hover,
.slider-btn:focus {
  background: var(--purple);
  color: #fff;
  outline: none;
}

.slider-btn.swiper-button-disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.work-slide-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 17px 42px rgba(25, 30, 45, 0.12);
  transition: transform 0.25s ease;
}

.work-slide-card:hover {
  transform: translateY(-6px);
}

.work-img-wrap {
  width: 100%;
  height: 220px;
  flex: 0 0 220px;
  overflow: hidden;
  border-radius: 16px;
  background: #f3f4f8;
}

.work-img {
  width: 100%;
  height: 100%;
  max-width: none;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
}
/* --- INDEX — Work Section — END --- */

/* =============================================
   ABOUTUS.HTML — START
   ============================================= */

/* --- ABOUT — Layout & Header — START --- */
.sw-header {
    padding: 24px 0 14px;
}
.sw-header .navbar-brand img {
    width: 116px;
    height: auto;
}
.sw-nav {
    display: flex;
    gap: 42px;
    align-items: center;
    list-style: none;
}
.sw-nav a {
    color: #070d1d;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    padding: 10px 0;
    display: block;
}
.sw-nav a.active {
    color: var(--purple);
    border-bottom: 3px solid var(--purple);
}
.dark-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: #080e1e;
    color: white;
    text-decoration: none;
    padding: 13px 22px;
    border-radius: 24px;
    font-weight: 700;
    font-size: 12px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .16);
}
/* --- ABOUT — Layout & Header — END --- */

/* --- ABOUT — Hero — START --- */
.about-page .hero-section {
    padding: 46px 0 20px;
}
.about-page .hero-copy {
    padding-top: 10px;
}
.about-page .pill {
    display: inline-block;
    color: var(--purple);
    border: 1.5px solid var(--purple);
    font-weight: 800;
    border-radius: 18px;
    padding: 5px 17px;
    font-size: 12px;
    margin-bottom: 20px;
}
.about-page .hero-copy h1 {
    font-weight: 800;
    font-size: 58px;
    line-height: 1.03;
    letter-spacing: -2.6px;
    margin: 0 0 18px;
}
.about-page .hero-copy h1 span, .who-copy h2 span {
    color: var(--purple);
}
.about-page .hero-copy p {
    font-size: 17px;
    line-height: 1.7;
    color: #252b3c;
    max-width: 405px;
    margin-bottom: 28px;
}
.about-page .hero-actions {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 32px;
}
.about-page .play-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--purple);
    color: white;
    text-decoration: none;
    font-size: 13px;
}
.hero-actions strong {
    display: block;
    font-size: 13px;
}
.hero-actions small {
    display: block;
    font-size: 11px;
}
.scribble {
    font-family: cursive;
    font-weight: 700;
    font-size: 19px;
    line-height: 1.25;
    margin-left: 42px;
    position: relative;
    transform: rotate(-3deg);
}
.scribble:before {
    content: '←';
    position: absolute;
    left: -48px;
    top: 4px;
    font-size: 32px;
    color: #111;
}
.scribble:after {
    content: '';
    height: 3px;
    background: var(--purple);
    width: 105px;
    position: absolute;
    left: 0;
    bottom: -10px;
    transform: rotate(-4deg);
}
.mini-card {
    width: 260px;
    background: white;
    border-radius: 14px;
    padding: 18px 19px;
    box-shadow: 0 10px 28px rgba(16, 24, 40, .1);
    display: flex;
    gap: 16px;
    align-items: center;
    color: #353b4b;
    font-size: 13px;
}
.mini-card span {
    min-width: 43px;
    height: 43px;
    background: #ffe8f4;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--pink);
    font-size: 20px;
}
.hero-art {
    position: relative;
    min-height: 445px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    overflow: visible;
}
.hero-img {
    width: 100%;
    max-width: 650px;
    display: block;
    object-fit: contain;
}
/* --- ABOUT — Hero — END --- */

/* --- ABOUT — Stats — START --- */
.stats-section {
    padding: 8px 0 36px;
}
.stats-bar {
    background: linear-gradient(180deg, #101829, #070d1b);
    border-radius: 18px;
    padding: 25px 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    box-shadow: 0 16px 35px rgba(8, 13, 30, .14);
}
.stats-bar div {
    min-height: 68px;
    display: grid;
    grid-template-columns: 40px auto;
    grid-template-rows: 38px 26px;
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, .24);
    padding: 0 28px;
}
.stats-bar div:last-child {
    border-right: 0;
}
.stats-bar i {
    font-size: 29px;
    grid-row: 1/3;
}
.stats-bar strong {
    color: white;
    font-size: 29px;
    font-weight: 800;
    line-height: 1;
}
.stats-bar span {
    grid-column: 2;
    color: white;
    font-size: 12px;
}
.gold {
    color: var(--gold);
}
.pink {
    color: #f44b98;
}
.purple {
    color: #8b55ff;
}
/* --- ABOUT — Stats — END --- */

/* --- ABOUT — Mission Vision Values — START --- */
.mvv-section {
    padding: 0 0 45px;
}
.center-title {
    text-align: center;
    font-weight: 800;
    font-size: 28px;
    margin-bottom: 26px;
}
.mvv-card {
    height: 235px;
    border-radius: 15px;
    padding: 32px 28px;
}
.lavender {
    background: linear-gradient(135deg, #f6efff, #f0eafd);
}
.cream {
    background: linear-gradient(135deg, #fff7dd, #fff3df);
}
.blush {
    background: linear-gradient(135deg, #ffeaf5, #fff3f8);
}
.mvv-head {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-bottom: 22px;
}
.mvv-head span {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(122, 76, 255, .15);
    color: var(--purple);
    font-size: 22px;
}
.cream .mvv-head span {
    background: #ffe3a7;
    color: #aa6d00;
}
.blush .mvv-head span {
    background: #ffd2e5;
    color: #e61b78;
}
.mvv-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin: 0;
}
.mvv-card p {
    font-size: 14px;
    color: #151c2d;
    max-width: 270px;
}
.mvv-card b {
    display: block;
    width: 62px;
    height: 3px;
    background: var(--purple);
    margin-top: 20px;
}
.cream b {
    background: var(--gold);
}
.blush b {
    background: var(--pink);
}
.mvv-card ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.mvv-card li {
    margin: 8px 0;
    font-size: 14px;
}
.mvv-card li:before {
    content: '✓';
    background: var(--pink);
    color: white;
    border-radius: 50%;
    font-size: 10px;
    padding: 2px 4px;
    margin-right: 10px;
}
/* --- ABOUT — Mission Vision Values — END --- */

/* --- ABOUT — Who We Are — START --- */
.who-section {
    padding: 5px 0 50px;
}
.eyebrow {
    display: block;
    color: var(--purple);
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 12px;
}
.who-copy h2, .section-title {
    font-weight: 800;
    letter-spacing: -.9px;
    font-size: 33px;
    line-height: 1.18;
    margin-bottom: 18px;
}
.who-copy p {
    font-size: 14px;
    color: #293040;
    margin-bottom: 24px;
    line-height: 1.65;
}
.feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin: 18px 0;
}
.feature i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #efe7ff;
    color: var(--purple);
    font-size: 19px;
}
.feature.green i {
    background: #dcfbf2;
    color: #25a681;
}
.feature.orange i {
    background: #fff0d9;
    color: #ff8a00;
}
.feature strong {
    display: block;
    font-size: 14px;
}
.feature small {
    display: block;
    font-size: 11px;
    color: #333b4c;
}
.who-image-wrap {
    position: relative;
}
.office-img {
    width: 100%;
    height: 405px;
    border-radius: 18px;
    object-fit: cover;
    display: block;
}
.rating-card {
    position: absolute;
    left: -20px;
    bottom: -32px;
    background: white;
    border-radius: 12px;
    width: 345px;
    padding: 17px 20px;
    box-shadow: 0 16px 36px rgba(10, 15, 25, .18);
}
.rating-card strong {
    font-size: 14px;
}
.stars {
    color: #ffae00;
    font-size: 17px;
    font-weight: 800;
    margin-top: 6px;
}
.stars span {
    color: #111827;
    font-size: 18px;
    margin-left: 8px;
}
.rating-card small {
    display: block;
    color: #6b7280;
    font-size: 10px;
}
.avatars {
    display: flex;
    align-items: center;
    margin-top: 10px;
}
.avatars em,
.avatar-img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2f6bff, #ff70ad);
    display: block;
    margin-right: -7px;
    border: 2px solid white;
    object-fit: cover;
    object-position: center top;
    flex-shrink: 0;
}
.avatars b {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--purple);
    color: #fff;
    display: grid;
    place-items: center;
    border: 2px solid white;
    margin-left: 3px;
}
/* --- ABOUT — Who We Are — END --- */

/* --- ABOUT — Team — START --- */
.team-section {
    padding: 20px 0 45px;
}
.arrows {
    display: flex;
    gap: 18px;
}
.arrows button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 0;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .13);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
}
.arrows button:hover,
.arrows button:focus {
    background: var(--purple);
    color: #fff;
    outline: none;
}
.arrows button.swiper-button-disabled {
    opacity: 0.45;
    cursor: not-allowed;
}
.sw-team-carousel {
    width: 100%;
    overflow: hidden;
}
.sw-team-swiper {
    width: 100%;
    overflow: hidden;
}
.sw-team-swiper .swiper-wrapper {
    align-items: stretch;
}
.sw-team-slide {
    height: auto;
    display: flex;
}
.sw-team-slide .team-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.team-card {
    position: relative;
    min-height: 282px;
    border-radius: 14px;
    padding: 0 20px 18px;
    overflow: hidden;
}
.team-card img {
    width: calc(100% + 40px);
    height: 142px;
    margin: 0 -20px 18px;
    object-fit: cover;
    display: block;
}
.team-card a {
    position: absolute;
    right: 15px;
    top: 112px;
    width: 24px;
    height: 24px;
    background: #1877bd;
    color: white;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 12px;
}
.team-card h4 {
    font-size: 14px;
    font-weight: 800;
    margin: 0 0 4px;
}
.team-card span {
    display: block;
    font-size: 12px;
    margin-bottom: 12px;
    color: #20283a;
}
.team-card p {
    font-size: 11.5px;
    color: #323a4c;
    line-height: 1.7;
    min-height: 52px;
}
.team-card .mail {
    font-size: 15px;
}
.t1 {
    background: #f4efff;
}
.t2 {
    background: #fff5dc;
}
.t3 {
    background: #ffeaf5;
}
.t4 {
    background: #eafff8;
}
.t5 {
    background: #e8f8ff;
}
/* --- ABOUT — Team — END --- */

/* --- ABOUT — Testimonial — START --- */
.testimonial-section {
    padding: 0 0 35px;
}
.testimonial-card {
    height: 210px;
    background: #fafafa;
    border-radius: 17px;
    box-shadow: 0 12px 35px rgba(14, 20, 35, .07);
    position: relative;
    overflow: hidden;
    padding: 38px 70px;
}
.quote-mark {
    font-family: Georgia, serif;
    font-size: 70px;
    line-height: .5;
    font-weight: 900;
}
.testimonial-card blockquote {
    font-size: 25px;
    line-height: 1.2;
    max-width: 455px;
    margin: -4px 0 20px;
}
.client {
    display: flex;
    gap: 14px;
    align-items: center;
}
.client span,
.client-avatar-img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #422e81, #f56aa3);
    display: block;
    object-fit: cover;
    object-position: center top;
    flex-shrink: 0;
}
.client strong {
    display: block;
    font-size: 13px;
}
.client small {
    display: block;
    font-size: 10px;
}
.testimonial-card img {
    position: absolute;
    right: 5px;
    bottom: 0;
    width: 314px;
    height: auto;
}
.client .client-avatar-img {
    position: static;
    width: 38px;
    height: 38px;
}
/* --- ABOUT — Testimonial — END --- */

/* --- ABOUT — CTA — START --- */
.cta-section {
    padding-bottom: 26px;
}
.cta-box {
    background: linear-gradient(90deg, #7244ff, #8e55ff);
    border-radius: 15px;
    min-height: 78px;
    display: flex;
    align-items: center;
    padding: 20px 72px;
    gap: 28px;
    color: white;
    overflow: hidden;
}
.cta-box span {
    width: 52px;
    height: 52px;
    background: white;
    color: var(--purple);
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 22px;
    transform: rotate(15deg);
}
.cta-box h3 {
    font-size: 20px;
    line-height: 1.35;
    margin: 0;
    font-weight: 800;
    flex: 1;
}
.cta-box .dark-btn {
    padding: 12px 27px;
}
/* --- ABOUT — CTA — END --- */

/* --- ABOUT — Footer — START --- */
.footer-section {
    padding: 0 0 18px;
}
.footer-logo {
    width: 105px;
    margin-bottom: 8px;
}
.footer-section p {
    font-size: 11px;
    color: #4b5563;
    margin: 0 0 18px;
}
.social {
    display: flex;
    gap: 18px;
    font-size: 14px;
}
.social a {
    color: #111827;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.footer-section h5 {
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 14px;
}
.footer-section a {
    display: block;
    font-size: 11px;
    color: #394151;
    text-decoration: none;
    margin: 5px 0;
}
.newsletter {
    border-radius: 14px;
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    padding: 22px;
}
.newsletter form {
    height: 45px;
    border: 1px solid #e5e7eb;
    border-radius: 23px;
    display: flex;
    align-items: center;
    padding-left: 16px;
}
.newsletter input {
    border: 0;
    outline: 0;
    flex: 1;
    font-size: 12px;
    min-width: 0;
}
.newsletter button {
    width: 31px;
    height: 31px;
    border: 0;
    border-radius: 50%;
    background: #e5fff6;
    color: #179b75;
    margin-right: 7px;
}
.foot-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 10px;
    color: #5a6270;
    margin-top: 28px;
}
/* --- ABOUT — Footer — END --- */

/* --- ABOUT — Shared Icons — START --- */
.stats-bar i,
.feature i,
.team-card a i,
.team-card .mail,
.mini-card span i,
.play-btn i,
.dark-btn i,
.cta-box span i,
.arrows button i,
.newsletter button i {
    display: inline-block;
    line-height: 1;
}
.mvv-head span i {
    font-size: 18px;
    line-height: 1;
}
/* --- ABOUT — Shared Icons — END --- */

/* =============================================
   SERVICES.HTML — START
   ============================================= */

/* --- SERVICES — Base & Container — START --- */
.services-page {
  font-size: 14px;
  color: var(--swx-ink);
}

/* --- SERVICES — Base & Container — END --- */

/* --- SERVICES — Header — START --- */
.swx-header {
    position: relative;
    z-index: 20;
    background: #fff;
}
.swx-navbar {
    padding: 26px 0 18px;
}
.swx-logo {
    display: inline-flex !important;
    flex-direction: column;
    gap: 0;
    line-height: 1;
}
.swx-logo-main {
    display: inline-flex;
    align-items: center;
    font-size: 27px;
    font-weight: 900;
    letter-spacing: -1.6px;
    color: #111423;
}
.swx-logo small {
    font-size: 7px;
    font-weight: 700;
    color: #1d2435;
    margin-top: -2px;
    letter-spacing: -0.15px;
}
.swx-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    display: inline-block;
    margin: 0 -1px;
}
.swx-d1 {
    background: #ef3e94;
}
.swx-d2 {
    background: #6a5cff;
}
.swx-d3 {
    background: #19c6f0;
}
.swx-d4 {
    background: #23d06f;
}
.swx-menu {
    gap: 35px;
}
.swx-menu .nav-link {
    font-size: 13px;
    font-weight: 600;
    color: #050b1d !important;
    padding: 7px 0 !important;
    position: relative;
}
.swx-menu .nav-link.active {
    color: var(--swx-purple) !important;
}
.swx-menu .nav-link.active:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 2px;
    background: var(--swx-purple);
    border-radius: 4px;
}
.swx-dark-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--swx-dark);
    color: #fff !important;
    font-size: 12px;
    font-weight: 700;
    border-radius: 999px;
    padding: 13px 22px;
    box-shadow: 0 12px 22px rgba(8, 16, 37, 0.18);
    white-space: nowrap;
}
.swx-large-btn {
    padding: 15px 25px;
}
.swx-small-btn {
    padding: 12px 18px;
    font-size: 11px;
}
.swx-dark-btn i {
    font-size: 14px;
}
.swx-toggler {
    border: 0;
    box-shadow: none !important;
}
/* --- SERVICES — Header — END --- */

/* --- SERVICES — Hero — START --- */
.swx-hero {
    padding: 44px 0 28px;
}
.swx-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--swx-purple);
    font-size: 10px;
    font-weight: 800;
    border: 1px solid #8e66ff;
    border-radius: 999px;
    padding: 5px 12px;
    letter-spacing: 0.02em;
    margin-bottom: 18px;
    background: #fff;
}
.swx-hero-title {
    font-size: 46px;
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -2.4px;
    margin: 0 0 20px;
    color: #10172a;
}
.swx-hero-title span,
.swx-process h2 span,
.swx-cases h2 span {
    color: var(--swx-purple);
}
.swx-hero-copy {
    font-size: 16px;
    line-height: 1.72;
    color: #353b4a;
    max-width: 360px;
    margin: 0 0 24px;
}
.swx-play-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 700;
    color: #11172a;
    position: relative;
    padding-bottom: 9px;
}
.swx-play-link span {
    width: 22px;
    height: 22px;
    border: 1px solid var(--swx-purple);
    color: var(--swx-purple);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}
.swx-play-link:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 108px;
    height: 2px;
    background: var(--swx-purple);
    transform: rotate(-3deg);
    border-radius: 5px;
}
.swx-hero-art {
    position: relative;
    margin-left: -5px;
}
.swx-hero-art img {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 18px 25px rgba(48, 22, 105, 0.08));
}
.swx-section-gap {
    padding: 32px 0 28px;
}
/* --- SERVICES — Hero — END --- */

/* --- SERVICES — Services Section — START --- */
.swx-center-head {
    max-width: 520px;
    margin: 0 auto 24px;
}
.swx-mini-title {
    display: block;
    font-size: 10px;
    font-weight: 800;
    color: var(--swx-purple);
    margin-bottom: 8px;
    text-transform: uppercase;
}
.swx-center-head h2,
.swx-process h2,
.swx-cases h2 {
    font-size: 31px;
    font-weight: 900;
    letter-spacing: -1.4px;
    line-height: 1.08;
    margin: 0 0 14px;
}
.swx-center-head p,
.swx-process p,
.swx-cases p {
    font-size: 13px;
    line-height: 1.7;
    color: #4e5669;
    margin: 0;
}
.swx-service-row {
    margin-top: 18px;
}
.swx-service-card {
    height: 100%;
    min-height: 210px;
    border-radius: 13px;
    padding: 24px 20px 18px;
    box-shadow: 0 15px 32px rgba(36, 26, 80, 0.06);
    transition: 0.25s ease;
}
.swx-service-card:hover {
    transform: translateY(-5px);
}
.swx-bg-purple {
    background: linear-gradient(135deg, #ede7ff, #f6f1ff);
}
.swx-bg-yellow {
    background: linear-gradient(135deg, #fff4c8, #fff8e9);
}
.swx-bg-pink {
    background: linear-gradient(135deg, #ffe4ee, #fff1f6);
}
.swx-bg-mint {
    background: linear-gradient(135deg, #dffcf6, #edfefa);
}
.swx-bg-blue {
    background: linear-gradient(135deg, #e4f2ff, #f2f8ff);
}
.swx-bg-lavender {
    background: linear-gradient(135deg, #ece8ff, #f8f4ff);
}
.swx-icon {
    width: 45px;
    height: 45px;
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 19px;
    color: #081025;
    font-size: 28px;
    border: 1px solid rgba(10, 10, 20, 0.04);
}
.swx-service-card h3 {
    font-size: 12px;
    font-weight: 900;
    margin: 0 0 16px;
    color: #0d1323;
    line-height: 1.25;
}
.swx-service-card p {
    font-size: 11px;
    line-height: 1.75;
    color: #2f3546;
    min-height: 58px;
    margin: 0 0 18px;
}
.swx-service-card a {
    font-size: 11px;
    font-weight: 900;
    color: #172037;
    border-bottom: 1px solid var(--swx-purple);
}
.swx-service-card a i {
    color: var(--swx-purple);
    margin-left: 5px;
}
/* --- SERVICES — Services Section — END --- */

/* --- SERVICES — Process — START --- */
.swx-process {
    padding-top: 46px;
}
.swx-process h2,
.swx-cases h2 {
    font-size: 29px;
    margin-bottom: 15px;
}
.swx-process .swx-pill,
.swx-cases .swx-pill {
    margin-bottom: 13px;
}
.swx-process .swx-dark-btn,
.swx-cases .swx-dark-btn {
    margin-top: 18px;
}
.swx-process-row {
    padding-top: 10px;
    position: relative;
}
.swx-process-card {
    text-align: center;
    position: relative;
    padding: 0 5px;
}
.swx-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 10px;
}
.swx-num-1,
.swx-num-5 {
    background: #7554ff;
}
.swx-num-2 {
    background: #fb6da2;
}
.swx-num-3 {
    background: #ffc21e;
    color: #10172a;
}
.swx-num-4 {
    background: #78ddcd;
    color: #10352f;
}
.swx-process-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 13px;
    border-radius: 16px;
    background: linear-gradient(135deg, #eee8ff, #f7f4ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 31px;
    color: #081025;
    box-shadow: 0 16px 30px rgba(91, 76, 197, 0.08);
}
.swx-pink-icon {
    background: linear-gradient(135deg, #ffdfee, #fff0f6);
}
.swx-yellow-icon {
    background: linear-gradient(135deg, #fff0c1, #fff7dd);
}
.swx-green-icon {
    background: linear-gradient(135deg, #d9fbf6, #eefdfb);
}
.swx-purple-icon {
    background: linear-gradient(135deg, #eee8ff, #f8f5ff);
}
.swx-process-card h3 {
    font-size: 12px;
    font-weight: 900;
    margin: 0 0 13px;
}
.swx-process-card p {
    font-size: 11px;
    line-height: 1.65;
    color: #4e5669;
    margin: 0 auto;
    max-width: 135px;
}
/* --- SERVICES — Process — END --- */

/* --- SERVICES — Stats — START --- */
.swx-stats-wrap {
    padding: 14px 0 40px;
}
.swx-stats {
    background: radial-gradient(circle at 0 50%, rgba(127, 75, 255, 0.3), transparent 23%),
        linear-gradient(135deg, #061021, #111134);
    border-radius: 22px;
    padding: 22px 18px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    box-shadow: 0 16px 35px rgba(11, 17, 46, 0.18);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.swx-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.32);
    min-height: 64px;
}
.swx-stat:last-child {
    border-right: 0;
}
.swx-stat i {
    font-size: 38px;
    color: var(--swx-purple);
}
.swx-stat:nth-child(2) i,
.swx-stat:nth-child(2) strong {
    color: var(--swx-green);
}
.swx-stat:nth-child(3) i,
.swx-stat:nth-child(3) strong {
    color: #ffdb20;
}
.swx-stat:nth-child(4) i,
.swx-stat:nth-child(4) strong {
    color: #ff5da5;
}
.swx-stat strong {
    display: block;
    font-size: 27px;
    line-height: 1;
    font-weight: 900;
    color: var(--swx-purple);
    margin-bottom: 6px;
}
.swx-stat span {
    display: block;
    font-size: 10px;
    line-height: 1.35;
    font-weight: 700;
    color: #fff;
}
/* --- SERVICES — Stats — END --- */

/* --- SERVICES — Case Studies (Real Results) — START --- */
.swx-cases {
    padding-top: 8px;
}
.swx-case-area {
    position: relative;
    padding: 0 2px;
}

.swx-case-carousel {
    position: relative;
    overflow: hidden;
}

.swx-case-swiper {
    overflow: hidden;
    padding-bottom: 38px;
}

.swx-case-swiper .swiper-slide {
    height: auto;
}

.swx-case-swiper .swx-case-card {
    height: 100%;
}

.swx-case-pagination {
    bottom: 0 !important;
}

.swx-case-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #dfe1e8;
    opacity: 1;
    transition: background 0.25s ease, transform 0.25s ease;
}

.swx-case-pagination .swiper-pagination-bullet-active {
    background: #7554ff;
    transform: scale(1.15);
}

.swx-case-card {
    background: #fff;
    border: 1px solid #eef0f5;
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(12, 17, 33, 0.08);
    overflow: hidden;
}
.swx-case-img {
    height: 125px;
    overflow: hidden;
}
.swx-case-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.swx-case-body {
    padding: 17px 18px 20px;
}
.swx-case-body > span {
    display: inline-flex;
    background: #fff;
    color: #6c4cff;
    border-radius: 999px;
    padding: 5px 12px;
    font-size: 8px;
    font-weight: 800;
    margin-top: -45px;
    margin-bottom: 28px;
    position: relative;
    box-shadow: 0 8px 20px rgba(34, 30, 70, 0.08);
}
.swx-case-body h3 {
    font-size: 13px;
    font-weight: 900;
    line-height: 1.3;
    margin: 0 0 14px;
}
.swx-case-body p {
    font-size: 11px;
    line-height: 1.65;
    color: #4e5669;
    margin: 0 0 15px;
}
.swx-case-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid #e8e9f2;
    padding-top: 14px;
}
.swx-case-metrics b {
    display: block;
    font-size: 15px;
    font-weight: 900;
    color: #11172a;
    border-right: 1px solid #e8e9f2;
    padding: 0 6px;
}
.swx-case-metrics b:last-child {
    border-right: 0;
}
.swx-case-metrics small {
    display: block;
    font-size: 7px;
    font-weight: 700;
    color: #596171;
    margin-top: 5px;
    line-height: 1.2;
}
.swx-arrow {
    position: absolute;
    top: 45%;
    z-index: 3;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #081025;
    box-shadow: 0 8px 24px rgba(16, 19, 37, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
}
.swx-left {
    left: -36px;
}
.swx-right {
    right: -36px;
}
.swx-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 18px;
}
.swx-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dfe1e8;
    display: block;
}
.swx-dots span.active {
    background: #7554ff;
}
/* --- SERVICES — Case Studies (Real Results) — END --- */

/* --- SERVICES — CTA — START --- */
.swx-cta-section {
    padding: 10px 0 26px;
}
.swx-cta {
    border-radius: 15px;
    background: linear-gradient(100deg, #5c28ff 0%, #7d3cff 45%, #ca65ff 100%);
    min-height: 125px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 34px;
    padding: 25px 54px;
    position: relative;
    overflow: hidden;
}
.swx-cta:before,
.swx-cta:after {
    content: "";
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.65);
    width: 65px;
    height: 24px;
    border-color: transparent transparent rgba(255, 255, 255, 0.65) transparent;
    border-radius: 50%;
    transform: rotate(15deg);
    right: 235px;
    top: 24px;
}
.swx-cta:after {
    right: 92px;
    top: 42px;
    transform: rotate(-18deg);
}
.swx-badge-shape {
    width: 75px;
    height: 75px;
    min-width: 75px;
    border-radius: 28px;
    background: #fff;
    color: var(--swx-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 33px;
    transform: rotate(-18deg);
    box-shadow: 0 16px 28px rgba(73, 36, 160, 0.2);
}
.swx-badge-shape i {
    transform: rotate(18deg);
}
.swx-cta h2 {
    font-size: 23px;
    font-weight: 900;
    line-height: 1.25;
    margin: 0 0 9px;
    letter-spacing: -0.6px;
}
.swx-cta p {
    font-size: 14px;
    margin: 0;
    color: #fff;
}
.swx-cta .swx-dark-btn {
    margin-left: auto;
    position: relative;
    z-index: 2;
}
/* --- SERVICES — CTA — END --- */

/* --- SERVICES — Footer — START --- */
.swx-footer {
    padding: 0 0 30px;
    background: #fff;
}
.swx-footer .row {
    padding: 0 12px 25px;
}
.swx-footer-logo {
    margin-bottom: 20px;
}
.swx-footer p {
    font-size: 12px;
    line-height: 1.7;
    color: #3f4656;
    margin: 0 0 20px;
}
.swx-social {
    display: flex;
    gap: 14px;
}
.swx-social a {
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background: #f3f4f7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #1e2636;
}
.swx-footer h3 {
    font-size: 12px;
    font-weight: 900;
    margin: 0 0 18px;
}
.swx-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.swx-footer li {
    font-size: 11px;
    color: #3c4354;
    margin-bottom: 10px;
}
.swx-newsletter {
    border: 1px solid #ebeef4;
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(12, 17, 33, 0.06);
    padding: 24px;
}
.swx-newsletter h3 {
    font-size: 13px;
    margin-bottom: 10px;
}
.swx-newsletter p {
    font-size: 11px;
    margin-bottom: 17px;
}
.swx-newsletter form {
    height: 42px;
    border: 1px solid #dfe3ea;
    border-radius: 999px;
    display: flex;
    align-items: center;
    padding: 0 5px 0 16px;
}
.swx-newsletter input {
    border: 0;
    outline: 0;
    flex: 1;
    min-width: 0;
    font-size: 11px;
    color: #596171;
}
.swx-newsletter button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #29b88b;
    background: #fff;
    color: #0a9c75;
    display: flex;
    align-items: center;
    justify-content: center;
}
.swx-footer-bottom {
    border-top: 1px solid #e6e9ef;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    font-size: 10px;
    color: #52596a;
}
.swx-footer-bottom a {
    margin-left: 36px;
    color: #52596a;
}
/* --- SERVICES — Footer — END --- */

/* --- SERVICES — Responsive — START --- */
@media (max-width: 1199.98px) {
  .swx-service-card {
    padding: 20px 16px;
  }

  .swx-left {
    left: -18px;
  }

  .swx-right {
    right: -18px;
  }
}

@media (max-width: 991.98px) {
  .swx-navbar {
    padding-top: 18px;
  }

  .swx-header .navbar-collapse {
    background: #fff;
    margin-top: 12px;
    padding: 16px 20px;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(17, 22, 37, 0.08);
  }

  .swx-menu {
    gap: 10px;
    padding: 18px 0;
  }

  .swx-hero {
    padding-top: 24px;
  }

  .swx-hero-title {
    font-size: 38px;
  }

  .swx-hero-copy {
    max-width: 100%;
  }

  .swx-hero-art {
    margin-left: 0;
    margin-top: 20px;
  }

  .swx-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .swx-stat {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .swx-stat:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .swx-case-area {
    padding: 0;
  }

  .swx-left,
  .swx-right {
    display: none;
  }

  .swx-cta {
    padding: 30px;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .swx-cta .swx-dark-btn {
    margin-left: 0;
  }
}

@media (max-width: 767.98px) {
  .swx-logo-main {
    font-size: 22px;
  }

  .swx-hero-title {
    font-size: 34px;
  }

  .swx-center-head h2,
  .swx-process h2,
  .swx-cases h2 {
    font-size: 27px;
  }

  .swx-service-card {
    min-height: auto;
  }

  .swx-process-card {
    padding-bottom: 16px;
  }

  .swx-stats {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .swx-stat {
    justify-content: flex-start;
    padding: 12px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .swx-stat:last-child {
    grid-column: auto;
  }

  .swx-case-img {
    height: 150px;
  }

  .swx-cta {
    border-radius: 14px;
    padding: 25px 20px;
  }

  .swx-cta h2 {
    font-size: 21px;
  }

  .swx-footer-bottom {
    flex-direction: column;
  }

  .swx-footer-bottom a {
    margin: 0 18px 0 0;
  }
}

@media (max-width: 575.98px) {
  .swx-hero-actions {
    gap: 16px !important;
  }

  .swx-dark-btn {
    width: 100%;
  }

  .swx-play-link {
    width: 100%;
  }

  .swx-case-metrics b {
    font-size: 13px;
  }

  .swx-newsletter {
    padding: 18px;
  }

  .swx-footer .row {
    padding-left: 0;
    padding-right: 0;
  }
}
/* --- SERVICES — Responsive — END --- */

/* =============================================
   SERVICES.HTML — END
   ============================================= */

/* --- ABOUT — Responsive — START --- */
@media (max-width: 991.98px) {
  .sw-header .navbar-collapse {
    background: #fff;
    margin-top: 12px;
    padding: 16px 20px;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(17, 22, 37, 0.08);
  }

  .sw-header .sw-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    margin-bottom: 14px;
  }

  .sw-header .sw-nav a {
    padding: 10px 0;
    width: 100%;
  }

  .sw-header .dark-btn {
    width: 100%;
    justify-content: center;
  }

  .about-page .hero-section {
    padding: 32px 0 16px;
  }

  .about-page .hero-copy h1 {
    font-size: 42px;
    letter-spacing: -2px;
  }

  .about-page .hero-copy p {
    font-size: 16px;
    max-width: 100%;
  }

  .about-page .hero-art {
    min-height: auto;
    justify-content: center;
  }

  .about-page .hero-img {
    max-width: 100%;
    margin: 0 auto;
  }

  .about-page .mini-card {
    width: 100%;
    max-width: 360px;
  }

  .stats-section {
    padding: 0 0 28px;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 16px;
  }

  .stats-bar div {
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .stats-bar div:nth-child(2) {
    border-right: 0;
  }

  .stats-bar div:nth-child(3),
  .stats-bar div:nth-child(4) {
    border-bottom: 0;
  }

  .mvv-section {
    padding-bottom: 36px;
  }

  .center-title {
    font-size: 26px;
    margin-bottom: 22px;
  }

  .mvv-card {
    height: auto;
    min-height: 210px;
  }

  .who-section {
    padding-bottom: 36px;
  }

  .who-copy h2,
  .team-section .section-title {
    font-size: 28px;
  }

  .office-img {
    height: 340px;
  }

  .rating-card {
    left: 16px;
    width: min(100%, 320px);
  }

  .team-section {
    padding-bottom: 36px;
  }

  .about-page .cta-box {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    padding: 24px 28px;
    gap: 18px;
  }

  .about-page .cta-box h3 {
    font-size: 18px;
    flex: 1 1 100%;
  }
}

/* --- ABOUT — Testimonial Tablet Fix (768px–1199px) — START --- */
@media (min-width: 768px) and (max-width: 1199.98px) {
  .about-page .testimonial-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) min(240px, 36%);
    grid-template-rows: auto auto auto;
    column-gap: 20px;
    height: auto;
    min-height: 220px;
    padding: 30px 28px 0;
    overflow: hidden;
    align-items: start;
  }

  .about-page .testimonial-card .quote-mark {
    grid-column: 1;
    grid-row: 1;
    font-size: 56px;
  }

  .about-page .testimonial-card blockquote {
    grid-column: 1;
    grid-row: 2;
    max-width: 100%;
    font-size: 21px;
    margin: 0 0 14px;
  }

  .about-page .testimonial-card .client {
    grid-column: 1;
    grid-row: 3;
    padding-bottom: 24px;
  }

  .about-page .testimonial-person-img {
    grid-column: 2;
    grid-row: 1 / span 3;
    position: relative;
    right: auto;
    bottom: auto;
    align-self: end;
    justify-self: end;
    width: 100%;
    max-width: 240px;
    height: auto;
    object-fit: contain;
    object-position: bottom right;
  }
}

@media (max-width: 767.98px) {
  .sw-header {
    padding: 16px 0 10px;
  }

  .navbar-brand img,
  .sw-header .site-logo {
    height: 36px;
    width: auto;
  }

  .about-page .hero-section {
    padding: 24px 0 12px;
  }

  .about-page .hero-copy h1 {
    font-size: 32px;
    letter-spacing: -1.6px;
    margin-bottom: 14px;
  }

  .about-page .hero-copy p {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .about-page .hero-actions {
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
  }

  .about-page .scribble {
    margin-left: 0;
    margin-top: 10px;
    font-size: 16px;
    width: 100%;
  }

  .about-page .scribble:before {
    display: none;
  }

  .about-page .mini-card {
    max-width: 100%;
    padding: 16px;
  }

  .about-page .stats-bar {
    grid-template-columns: 1fr;
    padding: 10px 14px;
  }

  .stats-bar div {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16) !important;
    padding: 14px 8px;
  }

  .stats-bar div:last-child {
    border-bottom: 0 !important;
  }

  .stats-bar strong {
    font-size: 26px;
  }

  .mvv-section,
  .who-section,
  .team-section {
    padding-bottom: 32px;
  }

  .center-title {
    font-size: 24px;
  }

  .who-copy h2,
  .team-section .section-title {
    font-size: 26px;
    margin-bottom: 14px;
  }

  .who-copy p {
    margin-bottom: 18px;
  }

  .office-img {
    height: 260px;
    border-radius: 14px;
  }

  .rating-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 14px;
  }

  .team-section .d-flex.justify-content-between {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 12px;
  }

  .team-section .arrows {
    align-self: flex-end;
  }

  .team-section .arrows button {
    width: 36px;
    height: 36px;
  }

  .team-card {
    min-height: 0;
  }

  .about-page .testimonial-section {
    padding-bottom: 28px;
  }

  .about-page .testimonial-card {
    padding: 28px 22px 0;
    border-radius: 14px;
    overflow: visible;
    height: auto;
  }

  .about-page .quote-mark {
    font-size: 52px;
  }

  .about-page .testimonial-card blockquote {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .about-page .testimonial-person-img {
    position: relative;
    right: auto;
    bottom: auto;
    display: block;
    width: min(260px, 100%);
    max-width: 100%;
    margin: 10px auto 0;
  }

  .about-page .cta-section {
    padding-bottom: 28px;
  }

  .about-page .cta-box {
    flex-direction: column;
    align-items: center;
    padding: 22px 20px;
    border-radius: 14px;
  }

  .about-page .cta-box h3 {
    font-size: 17px;
    line-height: 1.4;
  }

  .about-page .cta-box .dark-btn {
    width: 100%;
    max-width: 220px;
  }

  .foot-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    margin-top: 22px;
  }

  .newsletter {
    padding: 18px;
  }
}

@media (max-width: 575.98px) {
  .about-page .hero-section {
    padding: 20px 0 10px;
  }

  .about-page .hero-copy h1 {
    font-size: 28px;
    letter-spacing: -1.2px;
  }

  .about-page .hero-copy p {
    font-size: 14px;
  }

  .about-page .pill {
    font-size: 11px;
    margin-bottom: 14px;
  }

  .stats-bar strong {
    font-size: 24px;
  }

  .stats-bar span {
    font-size: 11px;
  }

  .center-title {
    font-size: 22px;
  }

  .who-copy h2,
  .team-section .section-title {
    font-size: 22px;
  }

  .mvv-card {
    padding: 24px 20px;
    min-height: 0;
  }

  .mvv-card h3 {
    font-size: 18px;
  }

  .office-img {
    height: 220px;
  }

  .feature {
    margin: 14px 0;
  }

  .testimonial-card {
    padding: 24px 18px 0;
  }

  .testimonial-card blockquote {
    font-size: 18px;
    line-height: 1.35;
  }

  .about-page .testimonial-person-img {
    width: 100%;
    max-width: 240px;
  }

  .about-page .cta-box {
    padding: 20px 16px;
  }

  .about-page .cta-box h3 {
    font-size: 16px;
  }

  .about-page .cta-box span {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }

  .footer-section .row {
    --bs-gutter-y: 20px;
  }
}
/* --- ABOUT — Testimonial Tablet Fix (768px–1199px) — END --- */
/* --- ABOUT — Responsive — END --- */

/* =============================================
   ABOUTUS.HTML — END
   ============================================= */

/* --- INDEX — Work Slider Extras — START --- */
@media (min-width: 768px) {
  .work-img-wrap {
    height: 260px;
    flex-basis: 260px;
  }
}

@media (min-width: 1200px) {
  .work-img-wrap {
    height: 320px;
    flex-basis: 320px;
  }
}

.work-slider-pagination {
  bottom: 0 !important;
}

.work-slider-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #d8d0f0;
  opacity: 1;
  transition: background 0.25s ease, transform 0.25s ease;
}

.work-slider-pagination .swiper-pagination-bullet-active {
  background: var(--purple);
  transform: scale(1.2);
}
/* --- INDEX — Work Slider Extras — END --- */

/* --- INDEX — Testimonial — START --- */
.testimonial-section {
  padding-top: 0;
}

.testimonial-box {
  background: #f8f8fa;
  border-radius: 28px;
  padding: 50px 58px 0 58px;
  overflow: hidden;
}

.quote-mark {
  font-size: 76px;
  line-height: .7;
  color: #111;
  font-weight: 900;
  margin-bottom: 15px;
}

.testimonial-copy {
  max-width: 650px;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: -0.7px;
  margin-bottom: 34px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 38px;
}

.client-avatar {
  width: 42px;
  height: 42px;
  display: inline-block;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff9bd2, var(--purple));
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
}

.client-info h6 {
  font-size: 14px;
  font-weight: 900;
  margin: 0 0 3px;
}

.client-info p {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  margin: 0;
}

.testimonial-img {
  max-width: 360px;
  width: 100%;
  display: inline-block;
}
/* --- INDEX — Testimonial — END --- */

/* --- INDEX — CTA — START --- */
.cta-section {
  padding: 0 0 52px;
}

.cta-box {
  background: var(--purple);
  color: #fff;
  border-radius: 26px;
  padding: 38px 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-left {
  display: flex;
  align-items: center;
  gap: 38px;
}

.cta-icon {
  width: 70px;
  height: 70px;
  border-radius: 24px;
  background: #fff;
  color: var(--purple);
  display: grid;
  place-items: center;
  font-size: 30px;
  transform: rotate(-12deg);
  flex: 0 0 auto;
}

.cta-box h2 {
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -0.8px;
  margin: 0;
}
/* --- INDEX — CTA — END --- */

/* --- INDEX — Footer — START --- */
.site-footer {
  padding: 0 0 34px;
}

.footer-logo {
  width: auto;
  height: 48px;
  max-width: 180px;
  object-fit: contain;
  image-rendering: auto;
  display: block;
  margin-bottom: 18px;
}

.site-footer .footer-logo {
  height: 64px;
  max-width: 240px;
}

.footer-note {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.social-links {
  display: flex;
  gap: 18px;
}

.social-links a {
  color: #111827;
  font-size: 18px;
}

.site-footer h5 {
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 17px;
}

.site-footer a:not(.social-links a) {
  display: block;
  color: #4b5563;
  font-size: 13px;
  margin-bottom: 11px;
}

.newsletter-card {
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 25px;
}

.newsletter-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.newsletter-card form {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 6px;
}

.newsletter-card input {
  border: 0;
  outline: 0;
  padding: 8px 10px;
  min-width: 0;
  flex: 1;
  font-size: 13px;
  background: transparent;
}

.newsletter-card button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #e7fff7;
  color: var(--dark);
  flex: 0 0 auto;
}

.footer-bottom {
  border-top: 1px solid #e5e7eb;
  margin-top: 44px;
  padding-top: 22px;
  color: #5b6170;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom a {
  display: inline-block !important;
  margin: 0 0 0 28px !important;
}
/* --- INDEX — Footer — END --- */

/* --- INDEX — Responsive — START --- */
@media (max-width: 1199.98px) {
  .navbar-nav .nav-link {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .hero-image {
    width: min(100%, 560px);
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #fff;
    margin-top: 16px;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(17, 22, 37, 0.08);
  }

  .navbar-nav .nav-link {
    padding: 10px 0 !important;
  }

  .navbar-nav .nav-link.active::after {
    left: 0;
    transform: none;
  }

  .hero-section {
    padding: 34px 0 0;
  }

  .services-section,
  .work-section,
  .testimonial-section {
    padding: 60px 0;
  }

  .impact-section {
    padding: 60px 0;
  }

  .cta-section {
    padding: 0 0 60px;
  }

  .hero-title {
    font-size: 34px;
    letter-spacing: -2px;
    margin-bottom: 20px;
  }

  .section-title,
  .impact-box h2,
  .cta-box h2 {
    font-size: 30px;
    margin-bottom: 18px;
  }

  .hero-copy,
  .section-copy {
    font-size: 16px;
    margin-bottom: 22px;
  }

  .btn-black {
    font-size: 15px;
    padding: 12px 22px;
  }

  .hero-image {
    width: 100%;
    max-width: 100%;
  }

  .main-nav .site-logo {
    height: 54px;
    max-width: 210px;
  }

  .site-footer .footer-logo {
    height: 54px;
    max-width: 210px;
  }

  .site-logo,
  .footer-logo {
    height: 42px;
  }

  .brand-strip {
    justify-content: center;
    text-align: center;
    margin-top: 18px;
    padding: 20px 24px;
    gap: 18px;
  }

  .hero-actions {
    gap: 20px;
  }

  .services-section .g-4,
  .services-section .g-5,
  .work-section .g-4,
  .work-section .g-5,
  .testimonial-section .g-4,
  .site-footer .g-5 {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
  }

  .impact-box,
  .testimonial-box,
  .cta-box {
    padding: 40px 28px;
  }

  .testimonial-box {
    padding-bottom: 0;
  }

  .testimonial-copy {
    font-size: 24px;
    margin-bottom: 22px;
  }

  .cta-box,
  .cta-left {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-bottom {
    margin-top: 32px;
  }
}

@media (max-width: 767.98px) {
  .main-nav {
    padding: 18px 0 14px;
  }

  .main-nav .site-logo {
    height: 46px;
    max-width: 190px;
  }

  .site-footer .footer-logo {
    height: 46px;
    max-width: 190px;
  }

  .site-logo,
  .footer-logo {
    height: 36px;
  }

  .hero-section {
    padding: 28px 0 0;
  }

  .services-section,
  .work-section,
  .testimonial-section {
    padding: 45px 0;
  }

  .impact-section {
    padding: 45px 0;
  }

  .cta-section {
    padding: 0 0 45px;
  }

  .hero-title {
    font-size: 28px;
    letter-spacing: -1.6px;
    margin-bottom: 16px;
  }

  .section-title,
  .impact-box h2,
  .cta-box h2 {
    font-size: 26px;
    letter-spacing: -1.2px;
    margin-bottom: 14px;
  }

  .hero-copy,
  .section-copy {
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 18px;
  }

  .btn-black {
    font-size: 15px;
    padding: 11px 20px;
  }

  .hero-actions {
    gap: 16px;
  }

  .magic-note {
    font-size: 16px;
  }

  .magic-note i {
    font-size: 22px;
  }

  .hero-image {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
  }

  .testimonial-img {
    width: 100%;
    max-width: 100%;
  }

  .brand-strip {
    margin-top: 16px;
    padding: 18px 20px;
    border-radius: 22px;
    gap: 14px;
  }

  .brand-name {
    font-size: 16px;
  }

  .services-section .g-4,
  .services-section .g-5,
  .work-section .g-4,
  .work-section .g-5,
  .testimonial-section .g-4,
  .site-footer .g-5 {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
  }

  .service-card {
    min-height: 0;
    padding: 22px 20px;
  }

  .service-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .impact-box {
    border-radius: 24px;
    padding: 32px 24px;
  }

  .impact-box h2 {
    margin-bottom: 10px;
  }

  .stat-item strong {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .testimonial-box {
    padding: 32px 24px 0;
    border-radius: 22px;
  }

  .quote-mark {
    font-size: 56px;
    margin-bottom: 10px;
  }

  .testimonial-copy {
    font-size: 22px;
    margin-bottom: 18px;
  }

  .client-info {
    margin-bottom: 16px;
  }

  .cta-box {
    padding: 28px 24px;
    border-radius: 22px;
    gap: 18px;
  }

  .cta-left {
    gap: 18px;
  }

  .cta-icon {
    width: 58px;
    height: 58px;
    font-size: 24px;
  }

  .work-carousel-wrap {
    gap: 12px;
  }

  .site-footer {
    padding-bottom: 28px;
  }

  .footer-bottom {
    margin-top: 28px;
    padding-top: 18px;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    padding: 24px 0 0;
  }

  .services-section,
  .work-section,
  .testimonial-section {
    padding: 35px 0;
  }

  .impact-section {
    padding: 35px 0;
  }

  .cta-section {
    padding: 0 0 35px;
  }

  .hero-title {
    font-size: 24px;
    letter-spacing: -1.2px;
    margin-bottom: 14px;
  }

  .section-title,
  .impact-box h2,
  .cta-box h2 {
    font-size: 22px;
    letter-spacing: -1px;
    margin-bottom: 12px;
  }

  .hero-copy,
  .section-copy {
    font-size: 15px;
    margin-bottom: 16px;
  }

  .btn-black {
    padding: 10px 18px;
    font-size: 14px;
    gap: 10px;
  }

  .hero-btn {
    padding: 10px 18px;
  }

  .hero-actions {
    gap: 14px;
  }

  .magic-note {
    font-size: 15px;
  }

  .brand-strip {
    padding: 16px;
    border-radius: 18px;
    gap: 12px;
  }

  .brand-helper {
    width: 100%;
    justify-content: center;
    font-size: 13px;
  }

  .brand-name {
    font-size: 15px;
  }

  .services-section .g-4,
  .work-section .g-4,
  .site-footer .g-5 {
    --bs-gutter-x: 18px;
    --bs-gutter-y: 18px;
  }

  .service-card {
    min-height: 0;
    padding: 20px 18px;
  }

  .service-card .icon {
    font-size: 30px;
    margin-bottom: 16px;
  }

  .service-card h3 {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .impact-box,
  .testimonial-box,
  .cta-box {
    padding-left: 18px;
    padding-right: 18px;
  }

  .impact-box {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .testimonial-box {
    padding-top: 28px;
  }

  .testimonial-copy {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 16px;
  }

  .cta-box {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .cta-icon {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }

  .footer-bottom a {
    margin-left: 0 !important;
    margin-right: 18px !important;
  }

  .work-carousel-wrap {
    gap: 10px;
  }

  .slider-btn {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }

  .newsletter-card {
    padding: 20px;
  }
}
/* --- INDEX — Responsive — END --- */

/* =============================================
   INDEX.HTML — END
   ============================================= */

/* =============================================
   WORK.HTML — START
   ============================================= */

/* --- WORK — Page & Header — START --- */
.swx-work-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 30% 8%, rgba(117, 69, 255, 0.06), transparent 20%),
    radial-gradient(circle at 70% 45%, rgba(255, 93, 153, 0.04), transparent 23%),
    #fff;
}

.swx-work-header {
  padding: 30px 0 20px;
}

.swx-work-page .swx-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.swx-work-page .swx-logo-link {
  display: block;
  flex-shrink: 0;
}

.swx-work-page img.swx-logo {
  width: auto;
  height: 48px;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

.swx-work-page .swx-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-left: 36px;
}

.swx-work-page .swx-nav a {
  text-decoration: none;
  color: #060b18;
  font-size: 12px;
  font-weight: 600;
  padding: 12px 0;
  position: relative;
}

.swx-work-page .swx-nav a.active {
  color: #6f39ff;
}

.swx-work-page .swx-nav a.active:after {
  content: "";
  height: 2px;
  width: 28px;
  background: #6f39ff;
  border-radius: 20px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 4px;
}


.swx-work-page .swx-dark-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  background: #081023;
  color: #fff;
  text-decoration: none;
  border-radius: 28px;
  padding: 13px 21px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(10, 16, 34, 0.18);
  white-space: nowrap;
}

.swx-work-page .swx-dark-btn span {
  font-size: 15px;
}

.swx-work-page .swx-small-btn {
  padding: 12px 18px;
}
/* --- WORK — Page & Header — END --- */

/* --- WORK — Hero — START --- */
.swx-work-page .swx-hero {
  padding: 18px 0;
}

.swx-work-page .swx-pill {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #714bff;
  border-radius: 22px;
  color: #7045ff;
  font-weight: 800;
  font-size: 10px;
  padding: 5px 12px;
  margin-bottom: 16px;
  line-height: 1;
  background: #fff;
}

.swx-work-page .swx-hero-title {
  font-size: 40px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -1.4px;
  margin: 0 0 18px;
}

.swx-work-page .swx-hero-title span,
.swx-work-page .swx-section-title span {
  color: #7247ff;
}

.swx-work-page .swx-hero-text {
  max-width: 335px;
  color: #303649;
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 24px;
}

.swx-work-page .swx-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.swx-work-page .swx-play-link {
  color: #101425;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  position: relative;
  padding-bottom: 9px;
  display: inline-flex;
  gap: 10px;
}

.swx-work-page .swx-play-link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 34px;
  width: 88px;
  height: 2px;
  background: #7444ff;
  transform: rotate(-3deg);
  border-radius: 10px;
}

.swx-work-page .swx-hero-img {
  width: 100%;
  max-width: 89%;
  height: auto;
  object-fit: contain;
  display: inline-block;
}
/* --- WORK — Hero — END --- */

/* --- WORK — Feature Strip — START --- */
.swx-feature-strip {
  padding: 10px 0 34px;
}

.swx-mini-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.swx-mini-icon {
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
}

.swx-mini-icon.purple {
  background: #efe7ff;
  color: #7247ff;
}

.swx-mini-icon.yellow {
  background: #ffeabd;
  color: #ffae00;
}

.swx-mini-icon.pink {
  background: #ffe3ee;
  color: #ff5d99;
}

.swx-mini-icon.mint {
  background: #dff8f3;
  color: #14aa91;
}

.swx-mini-feature h6 {
  font-size: 12px;
  font-weight: 900;
  margin: 0 0 6px;
}

.swx-mini-feature p {
  font-size: 11px;
  line-height: 1.5;
  color: #20283b;
  margin: 0;
  max-width: 155px;
}
/* --- WORK — Feature Strip — END --- */

/* --- WORK — Projects Grid — START --- */
.swx-projects {
  padding: 0 0 20px;
}

.swx-filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.swx-filters {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.swx-filters button,
.swx-sort {
  border: 0;
  background: #f5f6fa;
  color: #1e2638;
  border-radius: 22px;
  height: 26px;
  padding: 0 22px;
  font-size: 11px;
  font-weight: 600;
}

.swx-filters button.active {
  background: linear-gradient(135deg, #6d42ff, #8a49ff);
  color: #fff;
  box-shadow: 0 10px 18px rgba(112, 65, 255, 0.2);
}

.swx-sort {
  background: #fff;
  border: 1px solid #d9dce7;
  height: 31px;
  padding: 0 17px;
}

.swx-project-grid {
  position: relative;
}

.swx-project-grid:before,
.swx-project-grid:after {
  content: "";
  position: absolute;
  top: 46%;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.swx-project-grid:before {
  left: -48px;
}

.swx-project-grid:after {
  right: -48px;
}

.swx-project-card {
  background: #fff;
  border: 1px solid var(--swx-line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--swx-shadow);
  height: 100%;
}

.swx-card-head {
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  font-size: 11px;
  font-weight: 800;
}

.swx-card-head strong:before {
  content: "";
  width: 17px;
  height: 17px;
  display: inline-block;
  background: #ff2d75;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 7px;
}

.swx-project-card:nth-child(2) .swx-card-head strong:before {
  background: #e71841;
}

.swx-project-card:nth-child(3) .swx-card-head strong:before {
  background: #ff7f1c;
}

.swx-project-card:nth-child(4) .swx-card-head strong:before {
  background: #df1f2d;
}

.swx-project-card img {
  width: 100%;
  aspect-ratio: 5 / 3;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
}

.swx-card-body {
  padding: 15px 13px 17px;
}

.swx-card-body small {
  color: #6f41ff;
  font-weight: 800;
  font-size: 9px;
}

.swx-card-body h5 {
  font-size: 13px;
  font-weight: 900;
  margin: 10px 0 8px;
}

.swx-card-body p {
  font-size: 11px;
  line-height: 1.65;
  color: #2c3447;
  margin: 0 0 15px;
}

.swx-work-page .swx-project-card .swx-stats {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  grid-template-columns: none;
  background: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  color: inherit;
  border: 0;
}

.swx-work-page .swx-project-card .swx-stats span:first-child {
  color: #fb317a;
}
/* --- WORK — Projects Grid — END --- */

/* --- WORK — Metrics — START --- */
.swx-metrics {
  padding: 8px 0 34px;
}

.swx-metric-panel {
  background: linear-gradient(108deg, #081022, #121a36 55%, #211944);
  color: #fff;
  border-radius: 14px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1.1fr repeat(4, 1fr);
  align-items: center;
  gap: 22px;
  box-shadow: 0 20px 45px rgba(6, 11, 25, 0.13);
  min-height: 115px;
}

.swx-metric-title {
  font-size: 22px;
  line-height: 1.28;
  font-weight: 900;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.swx-metric-title span {
  color: #8555ff;
}

.swx-metric {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  min-height: 70px;
  display: grid;
  grid-template-columns: 45px 1fr;
  column-gap: 8px;
  align-items: center;
}

.swx-metric:last-child {
  border-right: 0;
}

.swx-metric b {
  font-size: 31px;
  grid-row: span 2;
  line-height: 1;
}

.swx-metric strong {
  font-size: 23px;
  color: #8b62ff;
  line-height: 1;
  font-weight: 900;
}

.swx-metric:nth-child(3) strong {
  color: #32e4ad;
}

.swx-metric:nth-child(4) strong {
  color: #ffd132;
}

.swx-metric:nth-child(5) strong {
  color: #ff5d99;
}

.swx-metric span {
  font-size: 10px;
  line-height: 1.35;
  font-weight: 700;
}
/* --- WORK — Metrics — END --- */

/* --- WORK — Case Studies — START --- */
.swx-case-section {
  padding: 8px 0 32px;
}

.swx-work-page .swx-section-title {
  font-size: 27px;
  line-height: 1.14;
  font-weight: 900;
  letter-spacing: -0.4px;
  margin: 8px 0 20px;
}

.swx-section-text {
  font-size: 12px;
  line-height: 1.75;
  color: #32394b;
  margin-bottom: 24px;
  max-width: 175px;
}

.swx-work-page .swx-case-card {
  background: #fff;
  border: 1px solid var(--swx-line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--swx-shadow);
  height: 100%;
}

.swx-work-page .swx-case-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
}

.swx-work-page .swx-case-card div {
  padding: 14px;
}

.swx-work-page .swx-case-card h5 {
  font-size: 12px;
  font-weight: 900;
  margin: 0 0 9px;
}

.swx-work-page .swx-case-card p {
  font-size: 11px;
  line-height: 1.55;
  color: #2d3548;
  margin: 0 0 13px;
}

.swx-work-page .swx-case-card a {
  font-size: 11px;
  color: #6f41ff;
  font-weight: 900;
  text-decoration: underline;
}
/* --- WORK — Case Studies — END --- */

/* --- WORK — Testimonials — START --- */
.swx-testimonials {
  padding: 0 0 25px;
}

.swx-quote {
  height: 100%;
  border-radius: 10px;
  padding: 18px 18px 16px;
  min-height: 135px;
}

.swx-quote.purple {
  background: #eee8ff;
}

.swx-quote.peach {
  background: #fff0db;
}

.swx-quote.pink {
  background: #ffe9f1;
}

.swx-qmark {
  font-size: 34px;
  font-weight: 900;
  line-height: 0.7;
}

.swx-quote p {
  font-size: 11px;
  line-height: 1.55;
  color: #151d31;
  margin: 5px 0 16px;
}

.swx-person {
  display: flex;
  align-items: center;
  gap: 9px;
}

.swx-person span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swx-person b {
  display: block;
  font-size: 10px;
  font-weight: 900;
}

.swx-person small {
  font-size: 8.5px;
  color: #697083;
  display: block;
}
/* --- WORK — Testimonials — END --- */

/* --- WORK — CTA — START --- */
.swx-cta-wrap {
  padding: 0 0 18px;
}

.swx-cta-panel {
  background: linear-gradient(100deg, #7242ff 0%, #8b4dff 56%, #6f3dff 100%);
  border-radius: 12px;
  color: #fff;
  min-height: 72px;
  padding: 21px 38px;
  display: flex;
  align-items: center;
  gap: 28px;
  box-shadow: 0 15px 34px rgba(112, 65, 255, 0.22);
}

.swx-badge-star {
  background: #fff;
  color: #7444ff;
  border-radius: 20px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  transform: rotate(-12deg);
  font-weight: 900;
  flex-shrink: 0;
}

.swx-cta-panel h3 {
  font-weight: 900;
  font-size: 21px;
  margin: 0 0 3px;
}

.swx-cta-panel p {
  margin: 0;
  font-size: 13px;
}

.swx-cta-panel .swx-dark-btn {
  margin-left: auto;
}
/* --- WORK — CTA — END --- */

/* --- WORK — Footer — START --- */
.swx-work-page .swx-footer {
  padding: 0 0 28px;
  background: #fff;
}

.swx-work-page .swx-footer-logo {
  width: auto;
  height: 48px;
  max-width: 180px;
  object-fit: contain;
  margin-bottom: 13px;
}

.swx-work-page .swx-footer p {
  font-size: 11px;
  color: #50586c;
  margin-bottom: 18px;
}

.swx-socials {
  display: flex;
  gap: 13px;
}

.swx-socials span {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: #f2f4f8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 900;
}

.swx-work-page .swx-footer h6 {
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 13px;
}

.swx-work-page .swx-footer a {
  display: block;
  color: #263044;
  text-decoration: none;
  font-size: 11px;
  line-height: 1.85;
}

.swx-work-page .swx-newsletter {
  background: #fff;
  border: 1px solid var(--swx-line);
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--swx-shadow);
}

.swx-work-page .swx-newsletter p {
  line-height: 1.6;
}

.swx-work-page .swx-newsletter div {
  position: relative;
}

.swx-work-page .swx-newsletter input {
  height: 36px;
  border: 1px solid #e2e6ef;
  border-radius: 22px;
  width: 100%;
  padding: 0 40px 0 15px;
  font-size: 11px;
  outline: 0;
}

.swx-work-page .swx-newsletter button {
  position: absolute;
  right: 3px;
  top: 3px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #1daf8c;
  background: #f7fffc;
  color: #0c9276;
  font-weight: 900;
}
/* --- WORK — Footer — END --- */

/* --- WORK — Responsive — START --- */
@media (max-width: 991.98px) {
  .swx-work-page .swx-header-inner {
    gap: 16px;
  }

  .swx-work-page .swx-nav {
    gap: 24px;
    margin-left: 0;
  }

  .swx-work-page .swx-hero-title {
    font-size: 36px;
  }

  .swx-filter-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .swx-filters {
    gap: 10px;
  }

  .swx-metric-panel {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .swx-metric-title {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 16px;
    grid-column: span 2;
  }

  .swx-metric {
    border-right: 0;
  }

  .swx-cta-panel {
    padding: 22px;
    flex-wrap: wrap;
  }

  .swx-cta-panel .swx-dark-btn {
    margin-left: 0;
  }
}

@media (max-width: 767.98px) {
  .swx-work-header {
    padding: 20px 0;
  }

  .swx-work-page .swx-hero {
    padding: 10px 0 24px;
  }

  .swx-work-page .swx-hero-title {
    font-size: 38px;
  }

  .swx-work-page .swx-hero-text {
    max-width: none;
  }

  .swx-work-page .swx-hero-img {
    max-width: 100%;
  }

  .swx-feature-strip {
    padding-bottom: 24px;
  }

  .swx-mini-feature p {
    max-width: none;
  }


  .swx-metric-panel {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .swx-metric-title {
    grid-column: span 1;
  }

  .swx-metric {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding-bottom: 14px;
  }

  .swx-metric:last-child {
    border-bottom: 0;
  }

  .swx-section-text {
    max-width: none;
  }


  .swx-cta-panel {
    justify-content: center;
    text-align: center;
  }

  .swx-badge-star {
    margin: auto;
  }

  .swx-work-page .swx-footer {
    padding-bottom: 38px;
  }

  .swx-filter-bar .swx-sort {
    align-self: flex-start;
  }

  .swx-project-grid:before,
  .swx-project-grid:after {
    display: none;
  }
}

@media (max-width: 480px) {
  .swx-work-page .swx-shell {
    padding-left: 14px;
    padding-right: 14px;
  }

  .swx-work-page .swx-header-inner {
    align-items: flex-start;
  }

  .swx-work-page img.swx-logo {
    height: 42px;
  }

  .swx-work-page .swx-small-btn {
    padding: 10px 14px;
  }

  .swx-work-page .swx-hero-title {
    font-size: 34px;
  }

  .swx-work-page .swx-actions {
    gap: 16px;
  }

  .swx-work-page .swx-dark-btn {
    width: auto;
    padding: 12px 17px;
  }

  .swx-filters button {
    padding: 0 14px;
  }

  .swx-cta-panel h3 {
    font-size: 19px;
  }
}
/* --- WORK — Responsive — END --- */

/* =============================================
   WORK.HTML — END
   ============================================= */

/* =============================================
   RESOURCES.HTML — START
   ============================================= */

/* --- RESOURCES — Variables & Base — START --- */
.resources-page {
  --swr2-ink: #071023;
  --swr2-muted: #4e5668;
  --swr2-purple: #6d38ff;
  --swr2-purple2: #8148ff;
  --swr2-soft: #f6f6f9;
  --swr2-line: #e9e9f1;
  --swr2-shadow: 0 14px 32px rgba(12, 18, 36, 0.08);
  margin: 0;
  background: #fff;
  font-family: Inter, Arial, sans-serif;
  color: var(--swr2-ink);
  font-size: 14px;
  line-height: 1.55;
}

.resources-page section a {
  text-decoration: none;
  color: inherit;
}
/* --- RESOURCES — Variables & Base — END --- */

/* --- RESOURCES — Header & Hero (services layout) — START --- */
.resources-page .swx-hero .swx-hero-copy {
  max-width: 460px;
  margin-bottom: 22px;
}

.resources-page .swx-hero .swr2-search {
  width: 386px;
  max-width: 100%;
  height: 57px;
  border: 1px solid #d9dbe5;
  border-radius: 18px;
  display: flex;
  align-items: center;
  background: #fff;
  box-shadow: 0 7px 18px rgba(10, 15, 30, 0.04);
  overflow: hidden;
}

.resources-page .swx-hero .swr2-search input {
  flex: 1;
  border: 0;
  outline: 0;
  height: 100%;
  padding: 0 20px;
  color: #6b7280;
  font-size: 13px;
  background: #fff;
}

.resources-page .swx-hero .swr2-search button {
  width: 54px;
  height: 100%;
  border: 0;
  background: #fff;
  color: #6832ff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.resources-page .swx-hero .swx-hero-art img {
  object-fit: contain;
  object-position: center;
}
/* --- RESOURCES — Header & Hero (services layout) — END --- */

/* --- RESOURCES — Filter Bar — START --- */
.resources-page .swr2-filterbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: nowrap;
  padding: 13px 0 30px;
}

.resources-page .swr2-filterbar a {
  flex: 1;
  min-width: 0;
  height: 40px;
  padding: 0 14px;
  border-radius: 22px;
  background: #f5f5f8;
  color: #586071;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.resources-page .swr2-filterbar .swr2-filter-active {
  background: linear-gradient(135deg, #7b3dff, #6731f6);
  color: #fff;
  box-shadow: 0 10px 22px rgba(105, 52, 255, 0.23);
}
/* --- RESOURCES — Filter Bar — END --- */

/* --- RESOURCES — Featured & Topics — START --- */
.resources-page .swr2-feature-wrap {
  padding: 0 0 43px;
}

.resources-page .swr2-feature-row {
  --bs-gutter-x: 32px;
  --bs-gutter-y: 24px;
}

.resources-page .swr2-feature-card {
  height: 505px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(105deg, #fff, #f8f2ff);
  box-shadow: var(--swr2-shadow);
}

.resources-page .swr2-feature-img {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: #784bff;
}

.resources-page .swr2-feature-img span {
  position: absolute;
  z-index: 2;
  left: 27px;
  top: 24px;
  background: #fff;
  color: #6832ff;
  border-radius: 7px;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 900;
}

.resources-page .swr2-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.resources-page .swr2-feature-text {
  height: 100%;
  padding: 108px 46px 45px;
}

.resources-page .swr2-mini-tag {
  display: inline-flex;
  background: #f1eaff;
  color: #6632ff;
  border-radius: 7px;
  font-size: 10px;
  font-weight: 900;
  padding: 6px 12px;
  margin-bottom: 24px;
}

.resources-page .swr2-feature-text h2 {
  font-size: 33px;
  line-height: 1.25;
  letter-spacing: -0.9px;
  font-weight: 900;
  margin: 0 0 27px;
}

.resources-page .swr2-feature-text p {
  font-size: 14px;
  line-height: 1.9;
  color: #3a4254;
  max-width: 460px;
  margin: 0 0 34px;
}

.resources-page .swr2-author {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 31px;
}

.resources-page .swr2-face {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: inline-block;
  object-fit: cover;
  flex-shrink: 0;
}

.resources-page .swr2-face-b {
  margin-left: -14px;
}

.resources-page .swr2-author strong {
  display: block;
  font-size: 12.5px;
}

.resources-page .swr2-author small {
  display: block;
  font-size: 12px;
  color: #606879;
}

.resources-page .swr2-purple-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #7040ff;
  color: #fff !important;
  border-radius: 24px;
  padding: 13px 22px;
  font-size: 13px;
  font-weight: 900;
}

.resources-page .swr2-topics {
  height: 100%;
  background: #fff;
  border: 1px solid #e7e8ef;
  border-radius: 14px;
  box-shadow: var(--swr2-shadow);
  padding: 24px 0 17px;
}

.resources-page .swr2-topics h3 {
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.4px;
  margin: 0 24px 22px;
}

.resources-page .swr2-topics a:not(.swr2-topic-more) {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid #ececf2;
  padding: 17px 22px;
  color: #0c1226;
}

.resources-page .swr2-topics a:nth-last-of-type(2) {
  border-bottom: 1px solid #ececf2;
}

.resources-page .swr2-topics i {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: #f0e9ff;
  color: #6731ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-size: 20px;
  flex: 0 0 44px;
}

.resources-page .swr2-topics a:nth-of-type(2) i {
  background: #fff1cf;
  color: #efaa00;
}

.resources-page .swr2-topics a:nth-of-type(3) i {
  background: #ffe1ec;
  color: #ff5b91;
}

.resources-page .swr2-topics a:nth-of-type(4) i {
  background: #dffbf7;
  color: #24ab98;
}

.resources-page .swr2-topics a:nth-of-type(5) i {
  background: #ffe2ed;
  color: #e64786;
}

.resources-page .swr2-topics b {
  display: block;
  font-size: 13px;
  font-weight: 900;
}

.resources-page .swr2-topics small {
  display: block;
  margin-top: 2px;
  color: #606879;
  font-size: 11px;
}

.resources-page .swr2-topics em {
  font-style: normal;
  margin-left: auto;
  font-size: 16px;
  color: #6532ff;
}

.resources-page .swr2-topic-more {
  display: inline-flex;
  margin: 17px 24px 0;
  color: #6332ff !important;
  font-size: 12px;
  font-weight: 900;
  gap: 8px;
}
/* --- RESOURCES — Featured & Topics — END --- */

/* --- RESOURCES — Latest Cards — START --- */
.resources-page .swr2-latest {
  padding: 0 0 48px;
}

.resources-page .swr2-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 31px;
}

.resources-page .swr2-section-title h2 {
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.4px;
  margin: 0;
}

.resources-page .swr2-section-title a {
  font-size: 12px;
  font-weight: 900;
  color: #6632ff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.resources-page .swr2-latest-row {
  --bs-gutter-x: 27px;
  --bs-gutter-y: 24px;
}

.resources-page .swr2-card {
  height: 100%;
  background: #fff;
  border: 1px solid #e6e7ee;
  border-radius: 13px;
  box-shadow: var(--swr2-shadow);
  overflow: hidden;
}

.resources-page .swr2-card-img {
  height: 169px;
  position: relative;
  overflow: hidden;
  background: #f7f7fb;
}

.resources-page .swr2-card-img span {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  background: #fff;
  color: #6532ff;
  border-radius: 7px;
  padding: 6px 10px;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.2;
}

.resources-page .swr2-card-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.resources-page .swr2-card-body {
  padding: 20px 19px 17px;
}

.resources-page .swr2-card-body h3 {
  font-size: 19px;
  line-height: 1.28;
  letter-spacing: -0.35px;
  font-weight: 900;
  margin: 0 0 15px;
}

.resources-page .swr2-card-body p {
  font-size: 13px;
  line-height: 1.72;
  color: #303848;
  margin: 0 0 38px;
}

.resources-page .swr2-card-body div {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #6f7585;
}

.resources-page .swr2-card-body small {
  font-size: 12px;
}

.resources-page .swr2-card-body b {
  margin-left: auto;
  color: #152035;
  font-size: 18px;
  font-weight: 500;
}
/* --- RESOURCES — Latest Cards — END --- */

/* --- RESOURCES — Newsletter — START --- */
.resources-page .swr2-newsletter {
  padding: 0 0 54px;
}

.resources-page .swr2-news-box {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  border-radius: 20px;
  background: linear-gradient(135deg, #6d36ff 0%, #7a45ff 54%, #9d43f5 100%);
  box-shadow: 0 16px 34px rgba(112, 64, 255, 0.22);
  display: flex;
  align-items: center;
  padding: 36px 275px 32px 210px;
  color: #fff;
}

.resources-page .swr2-news-envelope {
  position: absolute;
  left: 18px;
  bottom: 4px;
  width: 176px;
  height: auto;
  object-fit: contain;
  object-position: left bottom;
  pointer-events: none;
  z-index: 1;
}

.resources-page .swr2-news-person {
  position: absolute;
  right: 8px;
  bottom: -12px;
  width: 253px;
  height: auto;
  object-fit: contain;
  object-position: right bottom;
  pointer-events: none;
  z-index: 1;
}

.resources-page .swr2-news-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.resources-page .swr2-news-content > span {
  display: inline-flex;
  background: #fff;
  color: #7040ff;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 10px;
  font-weight: 900;
  margin-bottom: 12px;
}

.resources-page .swr2-news-content h2 {
  font-size: 31px;
  line-height: 1.28;
  letter-spacing: -0.5px;
  font-weight: 900;
  margin: 0 0 18px;
}

.resources-page .swr2-news-content form {
  height: 54px;
  width: 460px;
  max-width: 100%;
  display: flex;
  align-items: stretch;
  border-radius: 28px;
  overflow: hidden;
  margin-bottom: 10px;
  background: #fff;
}

.resources-page .swr2-news-content input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 20px;
  font-size: 13px;
  color: #4b5563;
  background: #fff;
}

.resources-page .swr2-news-content button {
  border: 0;
  background: #071023;
  color: #fff;
  padding: 0 26px;
  font-size: 13px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  white-space: nowrap;
}

.resources-page .swr2-news-content small {
  font-size: 12px;
  font-weight: 700;
  opacity: 0.95;
}
/* --- RESOURCES — Newsletter — END --- */

/* --- RESOURCES — Dive Deeper — START --- */
.resources-page .swr2-deeper {
  padding: 0 0 62px;
}

.resources-page .swr2-deeper > h2 {
  text-align: center;
  font-size: 27px;
  font-weight: 900;
  letter-spacing: -0.45px;
  margin: 0 0 34px;
}

.resources-page .swr2-deep-row {
  --bs-gutter-x: 31px;
  --bs-gutter-y: 24px;
}

.resources-page .swr2-deep {
  height: 100%;
  min-height: 185px;
  border-radius: 14px;
  padding: 31px 25px;
  background: #f8f8fb;
}

.resources-page .swr2-deep i {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-size: 24px;
  margin-bottom: 20px;
}

.resources-page .swr2-deep h3 {
  font-size: 18px;
  font-weight: 900;
  margin: 0 0 11px;
}

.resources-page .swr2-deep p {
  font-size: 13px;
  line-height: 1.72;
  color: #3d4354;
  min-height: 66px;
  margin: 0 0 12px;
}

.resources-page .swr2-deep a {
  font-size: 12px;
  font-weight: 900;
  color: #6632ff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.resources-page .swr2-deep-pink {
  background: #fff0f6;
}

.resources-page .swr2-deep-pink i {
  background: #ffd6e7;
  color: #ff4c8b;
}

.resources-page .swr2-deep-mint {
  background: #edfcfb;
}

.resources-page .swr2-deep-mint i {
  background: #c8f7ef;
  color: #149b88;
}

.resources-page .swr2-deep-violet {
  background: #f6f2ff;
}

.resources-page .swr2-deep-violet i {
  background: #e7dcff;
  color: #6332ff;
}

.resources-page .swr2-deep-gray {
  background: #f7f7fa;
}

.resources-page .swr2-deep-gray i {
  background: #ece8ff;
  color: #6332ff;
}
/* --- RESOURCES — Dive Deeper — END --- */

/* --- RESOURCES — Footer — START --- */
.resources-page .swr2-footer {
  border-top: 1px solid #e6e8ef;
  background: #fff;
  padding: 45px 0 29px;
}

.resources-page .swr2-footer-row {
  --bs-gutter-x: 42px;
  --bs-gutter-y: 30px;
}

.resources-page .swr2-footer-logo {
  width: auto;
  height: 48px;
  max-width: 180px;
  object-fit: contain;
  margin-bottom: 23px;
}

.resources-page .swr2-footer p {
  font-size: 14px;
  line-height: 1.8;
  color: #2f3747;
  margin: 0;
}

.resources-page .swr2-social {
  display: flex;
  gap: 17px;
  margin-top: 22px;
}

.resources-page .swr2-social a {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #071023;
}

.resources-page .swr2-footer h4 {
  font-size: 14px;
  font-weight: 900;
  margin: 0 0 15px;
}

.resources-page .swr2-footer .col-lg-2 a {
  display: block;
  color: #263044;
  font-size: 13px;
  margin-bottom: 8px;
}

.resources-page .swr2-foot-news {
  border: 1px solid #e5e6ec;
  border-radius: 16px;
  box-shadow: var(--swr2-shadow);
  padding: 25px 26px;
}

.resources-page .swr2-foot-news p {
  font-size: 13px;
  margin-bottom: 18px;
}

.resources-page .swr2-foot-news form {
  height: 50px;
  border: 1px solid #d9dce5;
  border-radius: 13px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.resources-page .swr2-foot-news input {
  flex: 1;
  height: 100%;
  border: 0;
  outline: 0;
  padding: 0 17px;
  font-size: 13px;
}

.resources-page .swr2-foot-news button {
  width: 38px;
  height: 38px;
  border: 1px solid #0a9f82;
  background: #fff;
  border-radius: 50%;
  color: #0a9f82;
  margin-right: 7px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.resources-page .swr2-copy {
  border-top: 1px solid #e8e9ef;
  margin-top: 39px;
  padding-top: 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #525a6b;
  font-size: 12px;
}

.resources-page .swr2-copy div {
  display: flex;
  gap: 55px;
}

.resources-page .swr2-copy a {
  color: #525a6b;
}
/* --- RESOURCES — Footer — END --- */

/* --- RESOURCES — Responsive — START --- */
@media (max-width: 1199px) {
  .resources-page .swr2-feature-text {
    padding: 70px 34px 35px;
  }

  .resources-page .swr2-news-box {
    padding: 32px 240px 30px 190px;
  }

  .resources-page .swr2-news-envelope {
    left: 18px;
    bottom: 4px;
    width: 150px;
  }

  .resources-page .swr2-news-person {
    right: 8px;
    bottom: -12px;
    width: 220px;
  }
}

@media (max-width: 991px) {
  .resources-page .swx-hero {
    text-align: center;
  }

  .resources-page .swx-hero .swx-pill,
  .resources-page .swx-hero .swr2-search {
    margin-inline: auto;
  }

  .resources-page .swx-hero .swx-hero-copy {
    margin-inline: auto;
  }

  .resources-page .swr2-filterbar {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 12px;
    padding-bottom: 24px;
  }

  .resources-page .swr2-filterbar a {
    flex: 0 0 auto;
    min-width: 128px;
  }

  .resources-page .swr2-feature-card {
    height: auto;
  }

  .resources-page .swr2-feature-img {
    height: 390px;
  }

  .resources-page .swr2-feature-text {
    padding: 45px 30px;
  }

  .resources-page .swr2-topics {
    height: auto;
  }

  .resources-page .swr2-news-box {
    display: block;
    padding: 30px 24px 210px;
    min-height: 0;
  }

  .resources-page .swr2-news-content {
    max-width: none;
  }

  .resources-page .swr2-news-envelope {
    width: 130px;
    left: 12px;
    bottom: 4px;
  }

  .resources-page .swr2-news-person {
    width: 200px;
    right: 6px;
    bottom: -8px;
  }

  .resources-page .swr2-news-content form {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    border-radius: 16px;
    overflow: hidden;
  }

  .resources-page .swr2-news-content input[type="email"] {
    flex: 0 0 auto;
    width: 100%;
    min-height: 56px;
    height: 56px;
    padding: 0 18px;
    font-size: 14px;
    line-height: 1.2;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
  }

  .resources-page .swr2-news-content button {
    flex: 0 0 auto;
    width: 100%;
    min-height: 48px;
    height: 48px;
  }

  .resources-page .swr2-copy {
    gap: 15px;
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .resources-page .swr2-footer-logo {
    height: 42px;
  }

  .resources-page .swx-hero .swr2-search {
    height: 50px;
    border-radius: 15px;
  }

  .resources-page .swr2-feature-img {
    height: 320px;
  }

  .resources-page .swr2-feature-text h2 {
    font-size: 27px;
  }

  .resources-page .swr2-section-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .resources-page .swr2-card-img {
    height: 190px;
  }

  .resources-page .swr2-news-box {
    padding-bottom: 220px;
  }

  .resources-page .swr2-news-content h2 {
    font-size: 25px;
  }

  .resources-page .swr2-news-content input[type="email"] {
    min-height: 58px;
    height: 58px;
    padding: 0 16px;
    font-size: 15px;
  }

  .resources-page .swr2-news-content button {
    min-height: 50px;
    height: 50px;
  }

  .resources-page .swr2-news-envelope {
    width: 110px;
    left: 10px;
    bottom: 4px;
  }

  .resources-page .swr2-news-person {
    width: 175px;
    right: 4px;
    bottom: -6px;
  }

  .resources-page .swr2-copy div {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
/* --- RESOURCES — Responsive — END --- */

/* =============================================
   RESOURCES.HTML — END
   ============================================= */

/* =============================================
   CONTACTUS.HTML — START
   ============================================= */

body.contact-page {
  background: var(--swc2-bg);
  color: var(--swc2-text);
  overflow-x: hidden;
}

.contact-page .swc2-header {
  padding-top: 20px;
}

.contact-page .swc2-navbar {
  padding: 0;
}

.contact-page .swc2-logo img {
  width: 140px;
  height: auto;
  display: block;
}

.contact-page .swc2-menu {
  gap: 42px;
}

.contact-page .swc2-link {
  font-size: 15px;
  font-weight: 700;
  color: #0b1024 !important;
  padding: 15px 0 !important;
  position: relative;
}

.contact-page .swc2-link-active {
  color: var(--swc2-purple) !important;
}

.contact-page .swc2-link-active:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  width: 45px;
  height: 3px;
  margin: auto;
  background: var(--swc2-purple);
  border-radius: 30px;
}

.contact-page .swc2-main-btn {
  background: #0e142e;
  color: #fff !important;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(9, 13, 32, 0.14);
}

.contact-page .swc2-toggler {
  border: 0;
  box-shadow: none !important;
}

.contact-page .swc2-hero {
  padding: 70px 0 24px;
}

.contact-page .swc2-hero-row {
  min-height: 650px;
}

.contact-page .swc2-eyebrow {
  display: inline-block;
  color: var(--swc2-purple);
  font-size: 13px;
  font-weight: 800;
  border: 2px solid rgba(105, 66, 255, 0.35);
  border-radius: 999px;
  padding: 6px 14px;
  background: #fff;
  margin-bottom: 24px;
}

.contact-page .swc2-hero-title {
  font-size: 62px;
  line-height: 1.08;
  letter-spacing: -0.052em;
  color: var(--swc2-dark);
  font-weight: 900;
  margin: 0 0 20px;
  max-width: 570px;
}

.contact-page .swc2-hero-title span {
  display: block;
  color: var(--swc2-purple);
}

.contact-page .swc2-squiggle {
  width: 86px;
  height: 14px;
  margin: 0 0 36px;
  position: relative;
}

.contact-page .swc2-squiggle:before {
  content: "";
  display: block;
  height: 4px;
  width: 86px;
  background: var(--swc2-purple);
  border-radius: 50%;
  transform: skewX(-40deg);
}

.contact-page .swc2-hero-copy {
  font-size: 21px;
  line-height: 1.55;
  color: #12172c;
  margin: 0 0 14px;
  font-weight: 600;
}

.contact-page .swc2-hero-img {
  width: 100%;
  max-width: 635px;
  height: auto;
  display: inline-block;
  margin-top: -8px;
}

.contact-page .swc2-trio {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 565px;
  background: #fff;
  border: 1px solid rgba(234, 234, 244, 0.95);
  border-radius: 24px;
  box-shadow: var(--swc2-shadow);
  margin-top: 54px;
  overflow: hidden;
}

.contact-page .swc2-trio-card {
  padding: 30px 26px 28px;
  border-right: 1px solid var(--swc2-border);
}

.contact-page .swc2-trio-card:last-child {
  border-right: 0;
}

.contact-page .swc2-round {
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.contact-page .swc2-round i {
  display: block;
  line-height: 1;
}

.contact-page .swc2-round-purple {
  background: #6744f7;
  color: #fff;
}

.contact-page .swc2-round-mint {
  background: #8ce7d6;
  color: #0d2230;
}

.contact-page .swc2-round-orange {
  background: #ff9d08;
  color: #fff;
}

.contact-page .swc2-round-yellow {
  background: #ffc307;
  color: #11172c;
}

.contact-page .swc2-round-pink {
  background: #ff4c9f;
  color: #fff;
}

.contact-page .swc2-trio h3 {
  font-size: 14px;
  line-height: 1.25;
  font-weight: 900;
  color: var(--swc2-dark);
  margin: 0 0 13px;
}

.contact-page .swc2-trio p {
  font-size: 14px;
  line-height: 1.7;
  color: #52586d;
  margin: 0;
  font-weight: 500;
}

.contact-page .swc2-quick {
  padding: 2px 0 42px;
}

.contact-page .swc2-quick-box {
  background: #f4f3ff;
  border: 1px solid rgba(235, 233, 252, 0.95);
  border-radius: 26px;
  padding: 24px 50px 25px;
}

.contact-page .swc2-title-center {
  text-align: center;
}

.contact-page .swc2-title-center h2 {
  font-size: 28px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--swc2-dark);
  margin: 0;
}

.contact-page .swc2-title-center span {
  display: block;
  width: 38px;
  height: 3px;
  border-radius: 20px;
  background: var(--swc2-purple);
  margin: 10px auto 0;
}

.contact-page .swc2-quick-row {
  margin-top: 28px;
}

.contact-page .swc2-quick-card {
  display: flex;
  align-items: flex-start;
  gap: 19px;
  padding: 26px 38px 24px 0;
  border-right: 1px solid var(--swc2-border);
  min-height: 135px;
}

.contact-page .swc2-quick-card .swc2-round {
  flex: 0 0 52px;
  margin-bottom: 0;
  margin-top: 4px;
}

.contact-page .swc2-quick-card > div {
  flex: 1;
  min-width: 0;
}

.contact-page .swc2-quick-card-last {
  border-right: 0;
}

.contact-page .swc2-quick-card h3 {
  font-size: 23px;
  line-height: 1.1;
  font-weight: 900;
  color: var(--swc2-dark);
  margin: 6px 0 14px;
}

.contact-page .swc2-quick-card a,
.contact-page .swc2-quick-card strong {
  font-size: 14px;
  line-height: 1.3;
  color: var(--swc2-purple);
  font-weight: 800;
  display: block;
  margin-bottom: 10px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-page .swc2-quick-card strong {
  color: #10162d;
}

.contact-page .swc2-quick-card p {
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
  color: #2f3548;
  font-weight: 500;
}

.contact-page .swc2-offices {
  padding: 40px 0 34px;
}

.contact-page .swc2-title-office {
  margin-bottom: 35px;
}

.contact-page .swc2-office-row {
  --bs-gutter-x: 50px;
}

.contact-page .swc2-map {
  width: 100%;
  max-width: 445px;
  display: block;
  margin-top: 26px;
}

.contact-page .swc2-office-cards {
  --bs-gutter-x: 34px;
}

.contact-page .swc2-office-card {
  background: #fff;
  border: 1px solid rgba(230, 230, 240, 0.95);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 13px 32px rgba(25, 25, 55, 0.08);
}

.contact-page .swc2-office-media {
  height: 170px;
  position: relative;
  overflow: hidden;
}

.contact-page .swc2-office-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-page .swc2-office-media span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  width: 45px;
  height: 45px;
  background: #6844ff;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 10px 20px rgba(104, 68, 255, 0.3);
}

.contact-page .swc2-office-body {
  padding: 22px 20px 20px;
}

.contact-page .swc2-office-body h3 {
  font-size: 25px;
  line-height: 1.1;
  color: var(--swc2-dark);
  font-weight: 900;
  margin: 0 0 12px;
}

.contact-page .swc2-office-body p {
  font-size: 13px;
  line-height: 1.65;
  color: #151b2f;
  margin: 0 0 16px;
  font-weight: 600;
}

.contact-page .swc2-office-body a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #10162d;
  border: 1px solid var(--swc2-border);
  border-radius: 999px;
  background: #fff;
  padding: 10px 15px;
  font-size: 13px;
  font-weight: 900;
}

.contact-page .swc2-faq {
  padding: 18px 0 36px;
}

.contact-page .swc2-faq-head {
  position: relative;
  margin-bottom: 28px;
}

.contact-page .swc2-faq-head > a {
  position: absolute;
  right: 0;
  bottom: 3px;
  color: var(--swc2-purple);
  font-size: 16px;
  font-weight: 900;
}

.contact-page .swc2-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-page .swc2-acc-item {
  border: 1px solid var(--swc2-border) !important;
  border-radius: 12px !important;
  background: #fff;
  overflow: hidden;
}

.contact-page .swc2-acc-open {
  border-color: rgba(105, 66, 255, 0.38) !important;
  box-shadow: 0 10px 20px rgba(105, 66, 255, 0.05);
}

.contact-page .swc2-acc-btn {
  box-shadow: none !important;
  background: #fff !important;
  color: #10162d !important;
  font-size: 17px;
  font-weight: 900;
  padding: 17px 22px;
  text-align: left;
  white-space: normal;
}

.contact-page .swc2-acc-btn:not(.collapsed):before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: var(--swc2-purple);
  display: inline-block;
  margin-right: 14px;
}

.contact-page .swc2-acc-body {
  font-size: 14px;
  line-height: 1.6;
  color: #687084;
  padding: 0 22px 18px 56px;
}

.contact-page .swc2-message {
  padding: 0 0 56px;
}

.contact-page .swc2-message-box {
  border-radius: 22px;
  background: linear-gradient(90deg, #5e2df6, #6d38ff 48%, #744aff);
  box-shadow: 0 16px 38px rgba(83, 52, 225, 0.18);
  padding: 34px 54px;
  overflow: hidden;
  position: relative;
}

.contact-page .swc2-message-box:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 70%, rgba(255, 255, 255, 0.12), transparent 22%),
    radial-gradient(circle at 58% 30%, rgba(255, 255, 255, 0.08), transparent 22%);
}

.contact-page .swc2-message-box > .row {
  position: relative;
  z-index: 1;
}

.contact-page .swc2-message-pill {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 22px;
}

.contact-page .swc2-message h2 {
  font-size: 42px;
  line-height: 1.1;
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.035em;
  margin: 0 0 18px;
}

.contact-page .swc2-message h2 em {
  font-family: cursive;
  font-style: normal;
  color: #ffbf13;
}

.contact-page .swc2-message p {
  font-size: 21px;
  line-height: 1.5;
  color: #fff;
  margin: 0;
  max-width: 410px;
  font-weight: 500;
}

.contact-page .swc2-form-doodle {
  width: 115px;
  height: 28px;
  border-bottom: 2px solid #ffd55a;
  border-radius: 0 0 50% 50%;
  margin-top: 28px;
  opacity: 0.9;
}

.contact-page .swc2-form input,
.contact-page .swc2-form select,
.contact-page .swc2-form textarea {
  width: 100%;
  border: 0;
  outline: 0;
  background: #fff;
  border-radius: 9px;
  height: 52px;
  font-size: 14px;
  font-weight: 600;
  color: #555d72;
  padding: 0 16px;
  box-shadow: 0 4px 18px rgba(25, 25, 60, 0.04);
}

.contact-page .swc2-field {
  position: relative;
}

.contact-page .swc2-field i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #7c8293;
}

.contact-page .swc2-field input {
  padding-left: 46px;
}

.contact-page .swc2-form textarea {
  height: 115px;
  padding-top: 16px;
  resize: none;
}

.contact-page .swc2-form-action {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: flex-end;
}

.contact-page .swc2-form-action button {
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: #ffc013;
  color: #11172c;
  font-size: 15px;
  font-weight: 900;
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact-page .swc2-form-action small {
  font-size: 13px;
  color: #fff;
  font-weight: 700;
  margin-top: 18px;
}

.contact-page .swc2-footer {
  padding: 22px 0 18px;
}

.contact-page .swc2-footer-logo {
  width: 135px;
  margin-bottom: 22px;
}

.contact-page .swc2-footer p {
  font-size: 15px;
  line-height: 1.8;
  color: #40465a;
  margin: 0 0 20px;
  font-weight: 500;
}

.contact-page .swc2-social {
  display: flex;
  gap: 14px;
}

.contact-page .swc2-social a {
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid var(--swc2-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #11172c;
  font-size: 14px;
}

.contact-page .swc2-footer h4 {
  font-size: 15px;
  font-weight: 900;
  color: #11172c;
  margin: 12px 0 18px;
}

.contact-page .swc2-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-page .swc2-footer li {
  font-size: 14px;
  color: #40465a;
  margin-bottom: 11px;
  font-weight: 500;
}

.contact-page .swc2-news {
  background: #fff;
  border: 1px solid rgba(234, 234, 244, 0.95);
  border-radius: 20px;
  box-shadow: var(--swc2-shadow);
  padding: 25px;
}

.contact-page .swc2-news h4 {
  font-size: 20px;
  margin-top: 0;
}

.contact-page .swc2-news p {
  font-size: 15px;
}

.contact-page .swc2-news div {
  height: 46px;
  border: 1px solid var(--swc2-border);
  border-radius: 999px;
  background: #fafafd;
  display: flex;
  align-items: center;
  padding-left: 16px;
}

.contact-page .swc2-news input {
  border: 0;
  background: transparent;
  outline: 0;
  font-size: 13px;
  flex: 1;
  min-width: 0;
}

.contact-page .swc2-news button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0;
  background: var(--swc2-purple);
  color: #fff;
  margin-right: 4px;
}

.contact-page .swc2-bottom {
  margin-top: 30px;
  border-top: 1px solid var(--swc2-border);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #5e6475;
  font-size: 13px;
}

.contact-page .swc2-bottom a {
  color: #5e6475;
  margin-left: 48px;
}

/* --- CONTACT — Responsive — START --- */
@media (max-width: 1199.98px) {
  .contact-page .swc2-menu {
    gap: 24px;
  }

  .contact-page .swc2-hero-title {
    font-size: 54px;
  }

  .contact-page .swc2-hero-img {
    width: 100%;
    max-width: 520px;
  }

  .contact-page .swc2-quick-box {
    padding-left: 28px;
    padding-right: 28px;
  }

  .contact-page .swc2-quick-card {
    padding: 22px 24px;
    min-height: 0;
  }

  .contact-page .swc2-quick-row > .col-lg-6:nth-child(odd) .swc2-quick-card {
    border-right: 1px solid var(--swc2-border);
  }

  .contact-page .swc2-quick-row > .col-lg-6:nth-child(2n) .swc2-quick-card,
  .contact-page .swc2-quick-card-last {
    border-right: 0;
  }

  .contact-page .swc2-quick-row > .col-lg-6:nth-child(-n + 2) .swc2-quick-card {
    border-bottom: 1px solid var(--swc2-border);
  }

  .contact-page .swc2-quick-card h3 {
    font-size: 20px;
  }

  .contact-page .swc2-office-row {
    --bs-gutter-x: 28px;
  }

  .contact-page .swc2-message-box {
    padding: 32px;
  }
}

@media (max-width: 991.98px) {
  .contact-page .swc2-header .navbar-collapse {
    background: #fff;
    margin-top: 12px;
    padding: 16px 20px;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(17, 22, 37, 0.08);
  }

  .contact-page .swc2-menu {
    gap: 10px;
    padding: 18px 0;
    align-items: flex-start;
  }

  .contact-page .swc2-link {
    padding: 10px 0 !important;
  }

  .contact-page .swc2-main-btn {
    margin-top: 12px;
    width: 100%;
    justify-content: center;
  }

  .contact-page .swc2-hero {
    padding-top: 40px;
    text-align: center;
  }

  .contact-page .swc2-hero-row {
    min-height: auto;
  }

  .contact-page .swc2-hero-title {
    font-size: 48px;
    max-width: 100%;
    margin-inline: auto;
  }

  .contact-page .swc2-squiggle {
    margin-inline: auto;
  }

  .contact-page .swc2-hero-img {
    width: 100%;
    max-width: 420px;
    margin-top: 24px;
  }

  .contact-page .swc2-trio {
    margin: 30px auto 0;
    max-width: 100%;
    grid-template-columns: 1fr;
  }

  .contact-page .swc2-trio-card {
    border-right: 0;
    border-bottom: 1px solid var(--swc2-border);
    text-align: left;
  }

  .contact-page .swc2-trio-card:last-child {
    border-bottom: 0;
  }

  .contact-page .swc2-quick-card {
    padding: 22px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--swc2-border);
    align-items: flex-start;
  }

  .contact-page .swc2-quick-card .swc2-round {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    font-size: 22px;
    margin-top: 2px;
  }

  .contact-page .swc2-quick-row > .col-md-6:nth-last-child(-n + 2) .swc2-quick-card {
    border-bottom: 0;
  }

  .contact-page .swc2-map {
    margin: 0 auto 30px;
  }

  .contact-page .swc2-faq-head {
    text-align: center;
  }

  .contact-page .swc2-faq-head > a {
    position: static;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
  }

  .contact-page .swc2-acc-btn {
    font-size: 15px;
    line-height: 1.35;
    padding: 14px 16px;
  }

  .contact-page .swc2-acc-body {
    padding: 0 16px 16px;
  }

  .contact-page .swc2-message-box .col-lg-4 {
    text-align: center;
  }

  .contact-page .swc2-message h2 {
    font-size: 38px;
  }

  .contact-page .swc2-message p {
    max-width: none;
    margin-inline: auto;
  }

  .contact-page .swc2-form-doodle {
    margin-inline: auto;
  }

  .contact-page .swc2-form-action {
    align-items: stretch;
  }

  .contact-page .swc2-form-action button {
    width: 100%;
    justify-content: center;
  }

  .contact-page .swc2-form-action small {
    text-align: center;
  }

  .contact-page .swc2-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .contact-page .swc2-bottom a {
    margin-left: 0;
    margin-right: 24px;
  }

  .contact-page .swc2-news {
    margin-top: 8px;
  }
}

@media (max-width: 767.98px) {
  .contact-page .swc2-logo img {
    width: 116px;
  }

  .contact-page .swc2-hero {
    padding-top: 28px;
  }

  .contact-page .swc2-hero-title {
    font-size: 38px;
  }

  .contact-page .swc2-hero-copy {
    font-size: 17px;
  }

  .contact-page .swc2-hero-img {
    max-width: 340px;
  }

  .contact-page .swc2-trio {
    margin-top: 24px;
  }

  .contact-page .swc2-title-center h2 {
    font-size: 25px;
  }

  .contact-page .swc2-quick-box {
    padding: 22px 18px;
  }

  .contact-page .swc2-quick-row > .col-md-6:nth-last-child(-n + 2) .swc2-quick-card {
    border-bottom: 1px solid var(--swc2-border);
  }

  .contact-page .swc2-quick-row > .col-md-6:last-child .swc2-quick-card {
    border-bottom: 0;
  }

  .contact-page .swc2-office-media {
    height: 190px;
  }

  .contact-page .swc2-office-body h3 {
    font-size: 22px;
  }

  .contact-page .swc2-message {
    padding-bottom: 40px;
  }

  .contact-page .swc2-message-box {
    padding: 26px 18px;
  }

  .contact-page .swc2-message h2 {
    font-size: 32px;
  }

  .contact-page .swc2-message p {
    font-size: 17px;
  }

  .contact-page .swc2-form input,
  .contact-page .swc2-form select,
  .contact-page .swc2-form textarea {
    height: 50px;
    min-height: 50px;
  }

  .contact-page .swc2-form textarea {
    height: 110px;
    min-height: 110px;
  }

  .contact-page .swc2-form-action button {
    min-height: 50px;
  }

  .contact-page .swc2-footer-logo {
    width: 120px;
  }

  .contact-page .swc2-acc-btn {
    font-size: 14px;
    padding: 12px 14px;
  }

  .contact-page .swc2-acc-btn:not(.collapsed):before {
    width: 14px;
    height: 14px;
    margin-right: 10px;
  }
}

@media (max-width: 575.98px) {
  .contact-page .swc2-hero-title {
    font-size: 32px;
    letter-spacing: -0.03em;
  }

  .contact-page .swc2-hero-copy {
    font-size: 16px;
  }

  .contact-page .swc2-hero-img {
    max-width: 300px;
  }

  .contact-page .swc2-quick-card h3 {
    font-size: 18px;
  }

  .contact-page .swc2-quick-card {
    padding: 20px 16px;
    min-height: 0;
    gap: 16px;
  }

  .contact-page .swc2-quick-card .swc2-round {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    min-width: 46px;
    min-height: 46px;
    font-size: 20px;
  }

  .contact-page .swc2-title-center h2 {
    font-size: 22px;
  }

  .contact-page .swc2-message h2 {
    font-size: 28px;
  }

  .contact-page .swc2-message p {
    font-size: 16px;
  }

  .contact-page .swc2-bottom span:last-child {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
  }
}
/* --- CONTACT — Responsive — END --- */

/* =============================================
   CONTACTUS.HTML — END
   ============================================= */
