:root {
  --primary-orange: radial-gradient(circle at bottom right, rgba(242, 139, 40, 0.6), transparent 50%),
    linear-gradient(135deg, #f27228, #f27e28);
  --primary-blue: #4fc3f7;
  --dark-blue: #1565c0;
  --bg-light: #f5f5f5;
  --text-dark: #333333;
  --text-gray: #666;
  --border-radius: 12px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "SVN Gilroy", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}

.vox-link-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  width: 100%;
}

/* --- Hero Section --- */
.hero {
  background: linear-gradient(to bottom, #001529, #003366);
  color: white;
  padding: 0;
  position: relative;
  overflow: hidden;
  text-align: left;
  min-height: 650px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(to right,
      rgba(0, 21, 41, 0.85) 0%,
      rgba(0, 21, 41, 0.6) 30%,
      rgba(0, 21, 41, 0.2) 60%,
      transparent 100%);

  z-index: 2;
}

.hero-bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-logo {
  width: 500px;
  max-width: 100%;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: 120px;
  margin-left: -50px;
  height: 100%;
}

/* ===== HERO BUTTON ===== */
.hero-btn-consult {
  background: var(--primary-orange);
  color: #fff !important;
  border: none !important;

  padding: 14px 32px;
  margin-left: 80px;
  border-radius: 12px;

  font-weight: 600;
  font-size: 16px;

  display: inline-flex;
  align-items: center;
  gap: 12px;

  cursor: pointer;

  position: relative;
  bottom: 100px;
  left: 85px;

  box-shadow: 0 10px 25px rgba(242, 114, 40, 0.35);
  transition: all 0.3s ease;
}

/* ===== ARROW ===== */
.hero-btn-consult .arrow {
  display: flex;
  align-items: center;
}

/* SVG */
.hero-btn-consult .arrow svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  stroke-width: 2.2;
  fill: none;
  transition: transform 0.3s ease;
}

/* ===== HOVER ===== */
.hero-btn-consult:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(242, 114, 40, 0.45);
}

.hero-btn-consult:hover .arrow svg {
  transform: translateX(6px);
}

/* ===== DEFAULT BUTTON ===== */
.btn-consult {
  background: var(--primary-orange);
  color: #fff;
  border: none;

  padding: 12px 26px;
  border-radius: 12px;

  font-weight: 500;
  font-size: 15px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  cursor: pointer;

  box-shadow: 0 8px 20px rgba(242, 114, 40, 0.25);
  transition: all 0.3s ease;
}

/* ARROW */
.btn-consult .arrow {
  display: flex;
  align-items: center;
}

.btn-consult .arrow svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  stroke-width: 2.2;
  fill: none;
  transition: transform 0.3s ease;
}

/* HOVER */
.btn-consult:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(242, 114, 40, 0.35);
}

.btn-consult:hover .arrow svg {
  transform: translateX(5px);
}

/* --- Header Text Section --- */
.section-wrapper {
  background: #f1efef;
  padding: 20px 20px 40px;
}

.section-inner {
  padding: 20px 40px 40px;
}

.section-inner h1 {
  margin-top: 0;
}

.header-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.main-title {
  flex: 1;
}

.main-title h1 {
  font-size: 2.2rem;
  color: var(--primary-orange);
  font-weight: 700;
  margin-bottom: 10px;
  white-space: nowrap;
}

.main-title h2 {
  font-size: 2rem;
  color: var(--text-dark);
  font-weight: 300;
  line-height: 1.3;
}

.main-title h1,
.main-title h2 {
  margin: 0;
}

.desc-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.desc-icon {
  position: absolute;
  left: 0;
  width: 80px;
  height: 130px;
  transform: translateY(-50%);
  top: 50%;
  margin-left: -10px;
}

.desc-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/sbc-voxlink/icon_1.png") no-repeat center;
  background-size: 65px;
  opacity: 0.6;
}

.desc-box {
  position: relative;
  z-index: 1;
  margin-left: 60px;
  padding: 20px 25px;
  border: 1px solid #cfcfcf;
  border-left: none;
  border-radius: 0 16px 16px 0;
  background: transparent;
}

/* --- Grid Cards Section --- */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 40px;
  margin-top: 30px;
  margin-bottom: 20px;
}

.card {
  background: #ffffff;
  color: var(--text-dark);
  border-radius: 20px;
  padding: 25px 20px;
  font-weight: bold;
  text-align: left;
  min-height: 160px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.card-icon {
  position: absolute;
  bottom: -8px;
  right: -4px;
}

.card-icon img {
  width: 170px;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: 0.3s;
}

.card[data-tab="1"] .card-icon img {
  filter: brightness(0.7);
  /* 🔥 làm tối lại */
  opacity: 0.7;
}

.card[data-tab="2"] .card-icon img {
  filter: brightness(0.1);
  opacity: 0.7;
}

/* ===== Banner Details Section ===== */
.banner-container {
  margin-top: 20px;
}

.banner-item {
  height: 0;
  transition: height 0.35s ease;
  overflow: hidden;
  margin-bottom: 0;
}

.banner-item.active {
  margin-bottom: 20px;
}

/* ===== BANNER CORE ===== */
.banner {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 40px 50px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.35s ease;
}

.banner.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== BACKGROUND IMAGE + OVERLAY ===== */
.banner-blue,
.banner-dark {
  position: relative;
}

.banner[data-content="1"] {
  background:
    linear-gradient(90deg, #0f5bd7, #1e88ff),
    url("../images/sbc-voxlink/image_1.png");
  background-size: cover;
  background-position: right center;
  background-blend-mode: overlay;
}

.banner[data-content="2"] {
  background:
    linear-gradient(90deg, #141e30, #243b55),
    url("../images/sbc-voxlink/image_2.jpg");
  background-size: cover;
  background-position: right center;
  background-blend-mode: overlay;
}

.banner[data-content="3"] {
  background:
    linear-gradient(90deg,
      rgba(15, 91, 215, 0.95) 0%,
      rgba(30, 136, 255, 0.85) 40%,
      rgba(30, 136, 255, 0.4) 65%,
      rgba(30, 136, 255, 0) 100%),
    url("../images/sbc-voxlink/image_3.jpg");

  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
}

.banner[data-content="4"] {
  background:
    linear-gradient(90deg,
      rgba(20, 30, 48, 0.95) 0%,
      rgba(36, 59, 85, 0.85) 40%,
      rgba(36, 59, 85, 0.4) 65%,
      rgba(36, 59, 85, 0) 100%),
    url("../images/sbc-voxlink/image_4.jpg");

  background-size: contain;
  background-position: right center;
  background-repeat: repeat-y;
}

.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.card, .banner {
  opacity: 0;
  transform: translateY(30px);
}

.card.show, .banner.show {
  opacity: 1;
  transform: translateY(0);
  transition: 0.6s ease;
}

/* ===== CONTENT ===== */
.voxlink .banner-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.voxlink .banner-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.voxlink .banner-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.voxlink .banner-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.banner-list li::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  background-size: contain;
  background-repeat: no-repeat;
}

.banner[data-content="1"] li::before {
  content: "";
  width: 18px;
  height: 18px;
  display: inline-block;
  margin-right: 8px;

  background: url("../images/sbc-voxlink/icon-shield.svg") no-repeat center;
  background-size: contain;
}

.banner[data-content="2"] li::before {
  content: "";
  width: 18px;
  height: 18px;
  display: inline-block;
  margin-right: 8px;

  background-image: url("../images/sbc-voxlink/icon-puzzle.svg");
  background-size: contain;
}

.banner[data-content="3"] li::before {
  content: "";
  width: 18px;
  height: 18px;
  display: inline-block;
  margin-right: 8px;

  background-image: url("../images/sbc-voxlink/icon-check.svg");
  background-size: contain;
}

.banner[data-content="4"] li::before {
  content: "";
  width: 18px;
  height: 18px;
  display: inline-block;
  margin-right: 8px;

  background-image: url("../images/sbc-voxlink/icon-eye.svg");
  background-size: contain;
}

.voxlink .banner-graphic {
  width: 260px;
  height: 200px;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  flex-shrink: 0;

  position: relative;
  z-index: 2;
}

.voxlink .graphic-1 {
  background-image: url("../images/services/sbc-voxlink/Images/image_6.png");
}

.voxlink .graphic-2 {
  background-image: url("../images/services/sbc-voxlink/Images/image_3.jpg");
}

.voxlink .graphic-3 {
  background-image: url("../images/services/sbc-voxlink/Images/image_4.jpg");
}

.voxlink .graphic-4 {
  background-image: url("../images/services/sbc-voxlink/Images/image_2.jpg");
}

.voxlink .banner-graphic::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(0, 200, 255, 0.25), transparent 70%);
  z-index: -1;
}

.voxlink .banner.active {
  transform: translateY(0);
  opacity: 1;
}

/* --- Teams Section --- */
.section-title {
  text-align: center;
  font-size: 2rem;
  color: var(--primary-orange);
  font-weight: 600;
  margin: 40px 0;
}

.teams-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.teams-image {
  grid-column: 1;
  grid-row: 1 / span 2;
  position: relative;
}

.teams-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.teams-logo {
  position: absolute;
  top: 70px;
  right: -60px;
  transform: translateY(-45%);
  width: 120px;
  height: 120px;
  background: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid transparent;
  background-image:
    linear-gradient(white, white),
    linear-gradient(135deg, #5b5fff, #00c896);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.teams-logo img {
  width: 70px;
  height: auto;
}

.teams-header {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  margin-top: 20px;
}

.teams-heading {
  font-size: 1.3rem;
  color: var(--text-dark);
  line-height: 1.4;
  margin-left: 36px;
}

.teams-heading .light {
  display: block;
  font-weight: 400;
}

.teams-heading .bold {
  display: block;
  font-weight: 700;
}

.teams-features {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  padding: 22px 24px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.feature-item img {
  width: 65px;
  height: 65px;
}

.feature-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-gray);
}

/* --- Amazon SECTION OVERRIDE --- */
.section-wrapper--white {
  background: #ffffff;
  padding: 50px 20px;
}

.section-wrapper--white .teams-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  position: relative;
}

.section-wrapper--white .teams-image {
  grid-column: 2;
  grid-row: 1 / span 2;
  position: relative;
}

.section-wrapper--white .teams-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.section-wrapper--white .teams-content {
  grid-column: 1;
  grid-row: 1 / span 2;

  display: flex;
  flex-direction: column;
  gap: 20px;

  padding-top: 0;
}

.section-wrapper--white .teams-header {
  position: static;
  text-align: left;
}

.section-wrapper--white .teams-heading {
  margin-left: 170px;
  margin-top: -40px;
  text-align: right;
}

.section-wrapper--white .teams-features {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
  margin-top: 30px;
}

.section-wrapper--white .feature-item {
  display: flex;
  gap: 16px;
  align-items: center;

  background: #ffffff;
  padding: 20px;
  border-radius: 14px;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.section-wrapper--white .feature-item img {
  width: 60px;
  height: 60px;
}

.section-wrapper--white .teams-logo {
  position: absolute;
  top: -40px;
  left: calc(50% - 60px);
  transform: none;
  width: 120px;
  height: 120px;
  background: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid transparent;
  background-image:
    linear-gradient(white, white),
    linear-gradient(135deg, #5b5fff, #00c896);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.section-wrapper--white .teams-logo img {
  width: 90px;
}

.section-special {
  background: #f3f3f3;
}

.section-special .section-inner {
  padding: 80px 40px;
}

.special-banner {
  background: linear-gradient(90deg, #36c0fc, #33b4f7);
  padding: 30px 40px;
  margin-bottom: 60px;
}

.banner-inner {
  padding: 0 40px 20px;
}

.special-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.special-banner h2 {
  color: #ffffff;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.4;
}

.special-banner img {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  height: 200px;
}

.special-cards {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 120px;
  margin-bottom: 50px;
}

.special-card {
  text-align: center;
  max-width: 140px;
}

.icon-box {
  width: 110px;
  height: 110px;
  background: #ffffff;
  border-radius: 20px;
  border: 2px solid transparent;
  background-image:
    linear-gradient(white, white), linear-gradient(135deg, #5b5fff, #00c896);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 0 15px 35px rgba(0, 150, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.icon-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.special-card p {
  font-size: 0.95rem;
  color: #333333;
  margin-top: 16px;
  line-height: 1.4;
  font-weight: 700;
}

.special-btn {
  text-align: center;
}

.btn-consult {
  background: var(--primary-orange);

  color: #fff;
  border: none;

  padding: 14px 60px;
  border-radius: 10px;

  font-weight: 600;
  font-size: 1rem;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  cursor: pointer;

  box-shadow: 0 10px 25px rgba(242, 114, 40, 0.35);
  transition: all 0.25s ease;
}

.btn-consult .arrow {
  display: inline-flex;
  gap: 4px;
  margin-left: 6px;
}

.btn-consult .arrow::before,
.btn-consult .arrow::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(45deg);
}

.btn-consult .arrow::before {
  opacity: 0.6;
  transform: rotate(45deg) scale(0.8);
}

.btn-consult .arrow::after {
  transform: rotate(45deg) scale(1.1);
}

.arrow-small {
  font-size: 14px;
  opacity: 0.7;
}

.arrow-big {
  font-size: 18px;
  font-weight: 700;
}

.btn-consult:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(242, 114, 40, 0.45);
}

.btn-consult:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(255, 100, 0, 0.4);
}

.section-diagram {
  background: #ffffff;
  padding: 20px 20px;
}

.diagram-card {
  max-width: 600px;
  margin: 0 auto;
  padding: 30px 20px 40px;
  border-radius: 18px;
  background: white;
  border: 1px solid transparent;
  background-image: linear-gradient(white, white), linear-gradient(135deg, #5b5fff, #00c896);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.diagram-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px;
}

.diagram-header h2 {
  color: var(--primary-orange);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.diagram-header p {
  font-size: 1.3rem;
  color: #555;
  margin: 0;
  margin-top: 10px;
  line-height: 2;
  width: 100%;
}

.diagram-image {
  display: flex;
  justify-content: center;
}

.diagram-image img {
  width: 100%;
  max-width: 700px;
  height: auto;
  object-fit: contain;
}

.voxlink .footer-voxlink {
  background: var(--primary-orange);
  color: #fff;
  padding: 30px 20px;
}

.voxlink .footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.voxlink .footer-left {
  flex: 0 0 auto;
}

.voxlink .footer-left p {
  font-size: 16px;
  margin: 0 0 10px;
  opacity: 0.9;
}

.voxlink .footer-left img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.voxlink .footer-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1;
}

.voxlink .footer-center img {
  height: 165px;
  width: auto;
  object-fit: contain;
  display: block;
}

.voxlink .footer-right {
  max-width: 520px;
}

.footer-right p {
  line-height: 1.6;
  margin: 0;
}

.voxlink .footer-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
  text-align: center;
}

.voxlink .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 10px;
}

.voxlink .stat-number {
  font-size: 64px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #ffffbf;
}

.voxlink .stat-number img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.voxlink .stat-label {
  font-size: 18px;
  line-height: 1.5;
  margin-top: 10px;
  color: #ffffff;
  opacity: 0.95;
}

.voxlink .section-cta {
  max-width: 650px;
  margin: 50px auto 20px;
  text-align: center;
}

.voxlink .cta-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  white-space: normal;
}

.contact-section {
  padding: 60px 20px;
}

.contact-card {
  background: var(--primary-orange);
  max-width: 520px;
  margin: 0 auto;
  padding: 30px 30px;
  border-radius: 24px;
  color: #fff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);

  text-align: center;
}

.contact-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.wpforms-container {
  background: none !important;
  text-align: center;
}

.wpforms-field-text .wpforms-field-label,
.wpforms-field-email .wpforms-field-label,
.wpforms-field-phone .wpforms-field-label,
.wpforms-field-textarea .wpforms-field-label {
  display: none !important;
}

.contact-form .wpforms-field-radio .wpforms-field-label {
  color: #ffffff !important;
  font-size: 24px !important;
  font-weight: 100;
  margin-bottom: 24px;
  text-align: center;
}

.wpforms-container .wpforms-field {
  margin-bottom: 16px !important;
}

.wpforms-container .wpforms-one-half {
  width: 100% !important;
  float: none !important;
}

.contact-form .wpforms-container-full {
  display: flex;
  justify-content: center;
}

.contact-form .wpforms-container-full .wpforms-form {
  width: 100% !important;
  max-width: 520px !important;
  margin: 0 auto !important;
}

.contact-form .wpforms-field {
  width: 100% !important;
  margin-bottom: 10px !important;
  padding: 0 !important;
}

.contact-form .wpforms-field input,
.contact-form .wpforms-field textarea {
  width: 100%;
  padding: 10px 14px;
  margin-bottom: 10px;
  display: block;

  border: 1.5px solid #ffffff !important;
  background: #f3933e;
  color: #fff;

  border-radius: 12px;
  font-size: 1rem;
  outline: none;
  border-radius: 8px;
}

.contact-form .wpforms-field input[type="text"],
.contact-form .wpforms-field input[type="email"],
.contact-form .wpforms-field input[type="tel"],
.contact-form textarea {
  background: #f3933e !important;
  border-radius: 10px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.9);
}

.contact-form .wpforms-field-radio ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}

.contact-form .wpforms-field-radio li {
  list-style: none;
  width: 100%;
  max-width: 520px;
}

.contact-form .wpforms-field-radio input {
  display: none;
}

.contact-form .wpforms-field-radio label {
  display: block;
  width: 100%;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 12px;
  background: #f3933e;
  cursor: pointer;
  color: #fff;
  text-align: left;
  transition: 0.2s;
}

.contact-form .wpforms-field-radio label:hover {
  background: #f49b52;
}

.contact-form .wpforms-field-radio input:checked+label {
  background: #fff;
  color: var(--primary-orange) !important;
  font-weight: 600;
}

.contact-form textarea {
  min-height: 80px;
  resize: none;
}

.contact-form .wpforms-submit {
  margin-top: 20px;
  padding: 10px 24px;

  border: none;
  border-radius: 8px;

  font-size: 0.9rem;
  font-weight: 600;

  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: 0.2s;
}

.contact-form .wpforms-submit:hover {
  transform: translateY(-2px);
}

.contact-form .wpforms-submit-container button,
.contact-form .wpforms-submit {
  padding: 10px 24px;
  border-radius: 8px;

  border: none;
  font-weight: 600;

  display: inline-block;
}

.contact-form .wpforms-submit-container {
  text-align: center;
}

.contact-form .wpforms-container-full .wpforms-form button[type="submit"],
.contact-form .wpforms-container-full .wpforms-form button[type="submit"]:hover,
.contact-form .wpforms-container-full .wpforms-form button[type="submit"]:focus,
.contact-form .wpforms-container-full .wpforms-form button[type="submit"]:active {
  background-color: #ffffff !important;
  color: #333333 !important;
}

.contact-form .wpforms-submit,
.contact-form .wpforms-container-full .wpforms-form button[type="submit"] {
  color: #333333 !important;
}

.contact-form .wpforms-field-radio input:checked+label {
  background: #fff;
  color: #f27d28 !important;
}

.contact-form .wpforms-container-full .wpforms-form button[type="submit"] {
  width: auto !important;
  display: inline-block !important;

  padding: 12px 40px !important;
  font-size: 0.9rem;

  border-radius: 8px;

  text-align: center;
  line-height: normal;
}

.contact-form .wpforms-field input:focus,
.contact-form .wpforms-field textarea:focus {
  border-color: #ffffff !important;
  outline: none !important;

  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.contact-form .wpforms-field-radio input[type="radio"] {
  display: none;
}

.contact-form,
.contact-form * {
  color: #ffffff !important;
}

.contact-form .wpforms-confirmation-container-full {
  background: rgba(255, 255, 255, 0.15) !important;
  border: 1px solid #ffffff !important;
  color: #ffffff !important;
  padding: 16px 20px;
  border-radius: 12px;
  text-align: center;
  font-size: 15px;
}

.contact-form .wpforms-form {
  max-width: 100%;
}

.contact-form .wpforms-form input[type="text"],
.contact-form .wpforms-form input[type="email"],
.contact-form .wpforms-form input[type="tel"],
.contact-form .wpforms-form textarea,
.contact-form .wpforms-form select {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
}

.contact-form .wpforms-field {
  width: 100%;
}

.contact-form .wpforms-field-radio ul,
.contact-form .wpforms-field-checkbox ul {
  padding: 0;
}

.contact-form .wpforms-field-radio li,
.contact-form .wpforms-field-checkbox li {
  width: 100%;
}

.contact-form .wpforms-field-radio li label,
.contact-form .wpforms-field-checkbox li label {
  display: block;
  width: 100%;
}

.contact-form .wpforms-form input,
.contact-form .wpforms-form textarea {
  color: #fff !important;
}

.contact-form .wpforms-form input::placeholder,
.contact-form .wpforms-form textarea::placeholder {
  color: #ffffff !important;
}

.contact-form .wpforms-form select {
  color: #fff !important;
}

.contact-form .wpforms-form option {
  color: #000;
}

.contact-form .wpforms-form input:focus,
.contact-form .wpforms-form textarea:focus {
  color: #fff !important;
  outline: none;
}

@media (max-width: 1024px) {
  .hero-content {
    margin-top: 60px;
    margin-left: 0;
  }
}

/* Responsive basics */
@media (max-width: 768px) {

  .hero-content,
  .teams-content,
  .teams-header {
    margin: 0 !important;
    left: unset !important;
    right: unset !important;
    top: unset !important;
    bottom: unset !important;
    position: relative !important;
    transform: none !important;
  }

  body {
    background: #ffffff;
  }

  .vox-link-container {
    padding: 0 16px;
  }

  .section-inner {
    padding: 16px 0;
  }

  section {
    margin-bottom: 32px;
  }

  .hero {
    min-height: auto;
    padding: 60px 16px 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
  }

  .hero::before {
    background: linear-gradient(to bottom,
        rgba(0, 21, 41, 0.55),
        rgba(0, 21, 41, 0.25));
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    max-width: 260px;
    margin-left: 16px;
  }

  .hero-logo {
    width: 150px;
  }

  .hero-btn-consult {
    position: static;
    padding: 12px 18px;
    font-size: 14px;
    border-radius: 10px;
    align-self: flex-start;
    box-shadow: 0 8px 20px rgba(242, 114, 40, 0.35);
    margin-left: 0 !important;
    margin: 0;
    left: unset !important;
  }

  /* ===== HEADER (CARD STYLE) ===== */
  .section-wrapper {
    margin-top: -30px;
  }

  .header-section {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 16px;
  }

  .main-title {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .main-title h1 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 6px;
  }

  .main-title h2 {
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.4;
  }

  .main-title h1 span {
    display: block;
  }

  .desc-wrapper {
    flex: 2;
    display: flex;
  }

  .desc-box {
    padding: 12px;
    font-size: 0.85rem;
  }

  .card-icon img {
    width: 140px;
    opacity: 0.85;
    filter: grayscale(20%) brightness(0.9);
    transition: 0.3s;
  }

  .grid-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .teams-wrapper {
    display: grid !important;
    grid-template-columns: 2fr 1fr !important;
    grid-template-areas:
      "image header"
      "features features";
    gap: 16px;
  }

  .teams-image {
    grid-area: image;
    position: relative;
  }

  .teams-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .teams-logo {
    position: absolute !important;
    top: 15px;
    right: -45px;
    left: auto !important;
    transform: none;
    width: 90px;
    height: 90px;
    z-index: 10;
  }

  .teams-logo img {
    width: 65px;
    height: auto;
    transform: scale(0.95);
  }

  .teams-header {
    grid-area: header !important;
    position: static !important;
    margin-top: 120px !important;
    align-self: start !important;
  }

  .teams-heading {
    font-size: 1.2rem !important;
    color: var(--text-dark);
    line-height: 1.4 !important;
    margin-left: 0 !important;
  }

  .teams-features {
    grid-area: features !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column;
    gap: 16px !important;
  }

  .feature-item {
    padding: 16px 18px;
    gap: 12px;
    border-radius: 12px;
  }

  .feature-item img {
    width: 50px;
    height: 50px;
  }

  .feature-item p {
    font-size: 1.2rem;
    line-height: 1.5;
  }

  .section-wrapper--white {
    padding: 12px 20px !important;
  }

  .section-wrapper--white .section-inner {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .section-wrapper--white .teams-wrapper {
    display: grid !important;
    grid-template-columns: 1fr 2fr !important;
    grid-template-areas:
      "header image"
      "features features";
    gap: 8px;
  }

  .section-wrapper--white .teams-content {
    display: contents;
  }

  .section-wrapper--white .teams-image {
    grid-area: image;
    position: relative;
    margin-bottom: 0;
  }

  .section-wrapper--white .teams-image img {
    width: 100%;
    aspect-ratio: 249 / 373;
    object-fit: cover;
    border-radius: 12px;
  }

  .section-wrapper--white .teams-logo {
    position: absolute !important;
    top: -20px;
    right: 208px !important;
    width: 90px;
    height: 90px;
    z-index: 10;
  }

  .section-wrapper--white .teams-header {
    grid-area: header;
    margin-top: 80px;
  }

  .section-wrapper--white .teams-features {
    grid-area: features;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 0;
  }

  .section-wrapper--white .feature-item {
    padding: 14px 16px;
    gap: 12px;
    border-radius: 12px;
  }

  .section-wrapper--white .feature-item img {
    width: 48px;
    height: 48px;
  }

  .section-wrapper--white .feature-item p {
    font-size: 1.2rem;
    line-height: 1.4;
  }

  /* ===== SPECIAL FINAL FIX ===== */
  .section-special {
    margin-top: 0 !important;
    padding-top: 36px;
    padding-bottom: 10px !important;
    margin-bottom: 0 !important;
  }

  .section-special .vox-link-container {
    padding-bottom: 20px !important;
  }

  .special-banner {
    padding: 30px 16px;
    margin-bottom: 0 !important;
  }

  .banner-inner {
    display: flex;
    justify-content: center;
  }

  .special-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 600px;
    gap: 20px;
  }

  .special-banner h2 {
    font-size: 1.5rem;
    margin: 0;
    line-height: 1.4;
    text-align: left;
    flex: 1;
  }

  .special-banner img {
    position: absolute !important;
    height: 140px;
    width: auto;
    right: 0;
    flex-shrink: 0;
  }

  .special-cards {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 16px;
  }

  .special-card {
    flex: 1;
    margin-bottom: 0 !important;
    text-align: center;
  }

  .special-btn {
    margin-top: -30px !important;
    text-align: center;
  }

  .icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 12px;
  }

  .icon-box img {
    width: 60px;
    height: 60px;
  }

  .special-card p {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
  }

  /* ===== DIAGRAM ===== */
  .section-diagram {
    margin-top: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 20px !important;
    margin-bottom: 0 !important;
  }

  .diagram-card {
    padding: 18px;
    border-radius: 14px;
  }

  .diagram-header h2 {
    font-size: 1.1rem;
  }

  .diagram-header p {
    font-size: 0.9rem;
  }

  /* ===== FOOTER ===== */
  .voxlink .footer-voxlink {
    padding: 30px 16px !important;
  }

  .voxlink .footer-voxlink .vox-link-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .voxlink .footer-top {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .voxlink .footer-main {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .voxlink .footer-center img {
    width: 160px;
    height: auto;
  }

  .voxlink .footer-right p {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: center;
  }

  .voxlink .footer-left p {
    font-size: 1.2rem;
  }

  .voxlink .footer-left img {
    width: 120px;
    height: auto;
  }

  .voxlink .footer-stats {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 8px;
  }

  .voxlink .stat-number {
    font-size: 28px;
    margin-bottom: 4px;
  }

  .voxlink .stat-label {
    font-size: 13px;
  }

  .cta-title {
    font-size: 1.1rem;
    line-height: 1.4;
  }

  .section-cta {
    padding-top: 20px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .contact-section {
    padding-top: 40px !important;
    margin-top: 0 !important;
    padding-bottom: 20px !important;
    margin-bottom: 0 !important;
  }

  .contact-section .section-inner {
    padding-bottom: 20px !important;
  }

  footer {
    margin-top: 0 !important;
  }
}

@media (hover: hover) {
  .card:hover {
    background: #33b5f8;
    color: white;
    transform: translateY(-5px);
  }

  .card:hover .card-icon img {
    opacity: 1;
    filter: none;
  }
}

.card.active {
  background: #33b5f8;
  color: #fff;
}

.ripple {
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.6s linear;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}