/* ── Global: Prevent horizontal overflow ─────────────────── */
html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

/* ==== SECTION: Onboard & Onramp Anywhere Used in: services/account-launch-setup.php ====== */

#onramp-section {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

.onramp-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Heading */
.onramp-heading {
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 700;
  color: #2E3138;
  line-height: 1.15;
  margin-bottom: 16px;
}

.onramp-heading em {
  font-style: italic;
  color: #00377a;
  font-family: 'Georgia', 'Times New Roman', serif;
}

.onramp-sub {
  color: #7D7D7D;
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* ── Tabs ───────────────────────────────────────────────── */
.onramp-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}

.onramp-tab {
  height: 40px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid #E9E9E9;
  background: #fff;
  color: #555;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  outline: none;
  white-space: nowrap;
}

.onramp-tab:hover {
  background: #EEF3FF;
  border-color: #00377a;
  color: #00377a;
}

.onramp-tab.active {
  background: #EEF3FF;
  border-color: #00377a;
  color: #00377a;
}

.onramp-tab:focus-visible {
  box-shadow: 0 0 0 3px rgba(0, 55, 122, 0.25);
}

/* ── Grid ───────────────────────────────────────────────── */
.onramp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

@media (max-width: 1024px) {
  .onramp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .onramp-grid {
    grid-template-columns: 1fr;
  }

  .onramp-container {
    padding: 0 16px;
  }
}

/* ── Cards ──────────────────────────────────────────────── */
.onramp-card {
  background: #fff;
  border-radius: 32px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  padding: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.onramp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 55, 122, 0.12);
  border-color: rgba(0, 55, 122, 0.25);
}

.onramp-card:hover .onramp-dot {
  transform: scale(1.35);
}

.onramp-card.hidden-card {
  display: none;
}

.onramp-card.fade-enter {
  animation: cardFadeIn 0.35s ease forwards;
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ── Card Header ────────────────────────────────────────── */
.onramp-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.onramp-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #888;
  background: #F4F4F4;
  border-radius: 999px;
  padding: 4px 12px;
  text-transform: uppercase;
}

.onramp-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

/* ── Card Body ──────────────────────────────────────────── */
.onramp-card-title {
  font-size: 34px;
  font-weight: 700;
  color: #2E3138;
  margin-bottom: 14px;
  line-height: 1.2;
}

.onramp-card-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}

/* ── Scroll Animations ──────────────────────────────────── */
.onramp-fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.onramp-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Walking Boy ─────────────────────────────────────────── */

/* Fixed strip at bottom — clips the boy so it's ONLY visible here */
.walking-boy-wrapper {
  position: relative;
  width: 100%;
  height: 110px;
  background: #E3F8F8;
  overflow: hidden;
  /* Boy invisible outside this strip */
  pointer-events: none;
}

/* Boy animates inside the wrapper using absolute positioning */
.walking-boy {
  position: absolute;
  bottom: 12px;
  left: -220px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: walkPos 20s linear infinite;
}

/* White background removed on GIF + flip animation */
.walking-boy img {
  width: 100px;
  background: transparent;
  border-radius: 4px;
  animation: imgFlip 20s linear infinite;
}

.walking-boy span {
  font-size: 18px;
  font-weight: 700;
  color: #00377a;
  font-family: 'Plus Jakarta Sans', Poppins, sans-serif;
  letter-spacing: 3px;
  white-space: nowrap;
  animation: textSwitch 20s linear infinite;
}

/* ── Position: left → right → left (ping-pong) ──────────── */
@keyframes walkPos {
  0% {
    left: -220px;
  }

  45% {
    left: 110%;
  }

  50% {
    left: 110%;
  }

  95% {
    left: -220px;
  }

  100% {
    left: -220px;
  }
}

/* ── Flip image when returning left ─────────────────────── */
@keyframes imgFlip {
  0% {
    transform: scaleX(1);
  }

  44.9% {
    transform: scaleX(1);
  }

  50% {
    transform: scaleX(-1);
  }

  94.9% {
    transform: scaleX(-1);
  }

  95% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleX(1);
  }
}

/* ── Text fade in/out while on screen ───────────────────── */
@keyframes textSwitch {
  0% {
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  44% {
    opacity: 1;
  }

  46% {
    opacity: 0;
  }

  50% {
    opacity: 0;
  }

  55% {
    opacity: 1;
  }

  94% {
    opacity: 1;
  }

  96% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/* ============================================================
   SECTION: Knowledge Hub
   ============================================================ */
#knowledge-hub {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow */
.kh-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.08) 0%, rgba(248, 247, 243, 0) 70%);
  border-radius: 50%;
  top: -200px;
  left: -200px;
  z-index: 0;
  animation: khGlowMove 15s ease-in-out infinite alternate;
}

.kh-glow-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, rgba(248, 247, 243, 0) 70%);
  border-radius: 50%;
  bottom: -150px;
  right: -100px;
  z-index: 0;
  animation: khGlowMove2 12s ease-in-out infinite alternate;
}

@keyframes khGlowMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(150px, 100px);
  }
}

@keyframes khGlowMove2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-100px, -150px);
  }
}

.kh-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 32px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 1024px) {
  .kh-container {
    grid-template-columns: 1fr;
    gap: 64px;
    padding: 80px 32px;
  }
}

@media (max-width: 640px) {
  .kh-container {
    padding: 60px 16px;
  }
}

/* Left Content */
.kh-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 6px;
  color: #4A90E2;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}

.kh-heading {
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 700;
  color: #1F2937;
  line-height: 1.15;
  margin-bottom: 24px;
}

.kh-heading em {
  font-style: italic;
  color: #2563EB;
  font-family: 'Georgia', 'Times New Roman', serif;
}

.kh-desc {
  font-size: 18px;
  color: #6B7280;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 540px;
}

.kh-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  color: #1F2937;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.kh-btn:hover {
  background: #2563EB;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.2);
  border-color: #2563EB;
}

.kh-btn-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  background: #F3F4F6;
  border-radius: 50%;
  color: #2563EB;
  transition: all 0.3s ease;
}

.kh-btn:hover .kh-btn-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

/* Right Content - Cards */
.kh-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.kh-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border-radius: 26px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  cursor: pointer;
}

@media (max-width: 640px) {
  .kh-card {
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
  }
}

.kh-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.15);
}

.kh-card-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #2563EB;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 999px;
  padding: 6px 14px;
  display: inline-block;
  margin-bottom: 16px;
}

.kh-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 0;
  line-height: 1.3;
  transition: all 0.3s ease;
}

.kh-card-desc {
  font-size: 16px;
  color: #6B7280;
  line-height: 1.6;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 0;
}

.kh-card.active .kh-card-desc {
  max-height: 250px;
  opacity: 1;
  margin-top: 12px;
}

.kh-card-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1F2937;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

@media (max-width: 640px) {
  .kh-card-arrow {
    align-self: flex-end;
  }
}

.kh-card:hover .kh-card-arrow {
  background: #2563EB;
  color: #FFFFFF;
  border-color: #2563EB;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.kh-card.active .kh-card-arrow {
  background: #2563EB;
  color: #FFFFFF;
  border-color: #2563EB;
  transform: rotate(180deg);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

/* Animations */
.kh-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.kh-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.kh-slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 1024px) {
  .kh-slide-right {
    transform: translateY(40px);
  }
}

.kh-slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 1024px) {
  .kh-slide-right.visible {
    transform: translateY(0);
  }
}

.growth-section {
  padding: 90px 0;
  background: #F0F4FF;
  position: relative;
  overflow: hidden;
}

.growth-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 145, 0, .08);
  top: -180px;
  left: -200px;
  filter: blur(90px);
}

.growth-section::after {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: rgba(255, 145, 0, .05);
  right: -220px;
  bottom: -220px;
  filter: blur(100px);
}

/*==========================
 HEADING
==========================*/

.section-heading {
  margin-bottom: 60px;
}

.section-heading h2 {
  font-size: 62px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
}

.dark-title {
  color: #262b35;
}

.highlight-title {
  color: #2563EB;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
}

.section-heading p {
  font-size: 19px;
  color: #777;
  max-width: 720px;
  line-height: 1.8;
}

/*==========================
 GRID
==========================*/

.growth-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/*==========================
 CARD
==========================*/

.growth-card {

  background: #fff;

  border: 1px solid rgba(0, 0, 0, .05);

  border-radius: 32px;

  padding: 38px;

  transition: .35s;

  box-shadow: 0 8px 30px rgba(0, 0, 0, .04);

  position: relative;

}

.growth-card:hover {

  transform: translateY(-12px);

  box-shadow: 0 25px 60px rgba(0, 0, 0, .10);

}

.growth-card.active {

  border: 1px solid #2563EB;

}

.card-number {

  color: #2563EB;

  font-size: 22px;

  font-weight: 700;

  display: block;

  margin-bottom: 22px;

}

.growth-card h3 {

  font-size: 32px;

  font-weight: 700;

  color: #2b2b2b;

  margin-bottom: 18px;

  line-height: 1.3;

}

.growth-card p {

  color: #777;

  line-height: 1.9;

  font-size: 17px;

}

/*==========================
 RESPONSIVE
==========================*/

@media(max-width:1100px) {

  .growth-grid {

    grid-template-columns: repeat(2, 1fr);

  }

  .section-heading h2 {

    font-size: 48px;

  }

}

@media(max-width:768px) {

  .growth-grid {

    grid-template-columns: 1fr;

  }

  .section-heading h2 {

    font-size: 38px;

  }

  .section-heading p {

    font-size: 16px;

  }

  .growth-card {

    padding: 30px;

  }

  .growth-card h3 {

    font-size: 26px;

  }

}

.choice-section {

  padding: 90px 0;

  background: #ffffff;

  position: relative;

  overflow: hidden;

}

.choice-section::before,
.choice-section::after {
  display: none;
}

/*===== Perfect Choice For E-Commerce Sellers ====*/

.section-title {

  margin-bottom: 70px;

}

.section-title h2 {

  font-size: 64px;

  line-height: 1.15;

  margin-bottom: 18px;

}

.dark {

  color: #2d313b;

  font-weight: 800;

}

.orange {

  color: #2563EB;

  font-family: 'Cormorant Garamond', serif;

  font-style: italic;

  font-weight: 600;

}

.section-title p {

  color: #7c7c7c;

  font-size: 18px;

  line-height: 1.8;

  max-width: 700px;

}

.choice-grid {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 34px;

}

.choice-card {

  position: relative;

  background: #fff;

  border-radius: 32px;

  padding: 34px;

  border: 1px solid rgba(0, 0, 0, .05);

  box-shadow: 0 10px 35px rgba(0, 0, 0, .04);

  transition: .35s ease;

  min-height: 260px;

}

.choice-card:hover {

  transform: translateY(-10px);

  box-shadow: 0 25px 60px rgba(0, 0, 0, .10);

}

.choice-card.active {

  border: 1px solid rgba(255, 122, 0, .45);

}


.icon-box {

  width: 48px;

  height: 48px;

  border-radius: 16px;

  background: #FFFFFF;

  border: 1px solid rgba(255, 122, 0, .25);

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 22px;

  margin-bottom: 24px;

  box-shadow: 0 8px 20px rgba(255, 122, 0, .15);

}

/* Orange Dot */

.dot {

  width: 12px;

  height: 12px;

  background: #ff7a00;

  border-radius: 50%;

  position: absolute;

  top: 34px;

  left: 85px;

}

.choice-card h3 {

  font-size: 28px;

  color: #2d313b;

  margin-bottom: 18px;

  font-weight: 700;

  line-height: 1.3;

}

.choice-card p {

  color: #7d7d7d;

  font-size: 16px;

  line-height: 1.9;

}

/* ============================================================
   SECTION: Perfect Choice — pc-grid Cards
   ============================================================ */

/* 4 col → 2 col → 1 col */
.pc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1100px) {
  .pc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pc-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Base Card ───────────────────────────────────────────── */
.pc-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease;
  position: relative;
  overflow: hidden;
  cursor: default;
}

/* Top accent line on hover */
.pc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2563EB, #4A90E2);
  border-radius: 24px 24px 0 0;
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.pc-card:hover::before {
  transform: scaleX(1);
}

.pc-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.2);
}

/* ── Featured Card ───────────────────────────────────────── */
.pc-card--featured {
  background: linear-gradient(145deg, #EFF6FF 0%, #DBEAFE 100%);
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.12);
}

.pc-card--featured::before {
  transform: scaleX(1);
}

.pc-card--featured:hover {
  box-shadow: 0 24px 60px rgba(37, 99, 235, 0.18);
}

.pc-card--featured .pc-stat {
  color: #1D4ED8;
}

/* ── Icon ────────────────────────────────────────────────── */
.pc-icon {
  font-size: 32px;
  width: 56px;
  height: 56px;
  background: rgba(37, 99, 235, 0.07);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.pc-card:hover .pc-icon {
  transform: scale(1.12);
  background: rgba(37, 99, 235, 0.13);
}

/* ── Stat Number ─────────────────────────────────────────── */
.pc-stat {
  font-size: 38px;
  font-weight: 800;
  color: #2563EB;
  line-height: 1;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  letter-spacing: -1px;
}

.pc-title {
  font-size: 17px;
  font-weight: 700;
  color: #1F2937;
  line-height: 1.3;
}

.pc-desc {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.7;
  margin: 0;
}

/* Why Advertisement Management */

.advertisement-section {
  padding: 90px 0;
  background: #F0F4FF;
  position: relative;
  overflow: hidden;
}



.section-heading {
  margin-bottom: 60px;
}

.section-heading h2 {
  font-size: 62px;
  line-height: 1.2;
  margin-bottom: 15px;
}

.dark-title {
  color: #2d313b;
  font-weight: 800;
}

.orange-title {
  color: #2563EB;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
}

.subtitle {
  color: #2563EB;
  font-size: 22px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

.advertisement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.advertisement-card {
  background: #fff;
  border-radius: 30px;
  padding: 35px;
  border: 1px solid rgba(0, 0, 0, .05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
  min-height: 260px;
  position: relative;
  transition: .4s ease;
}

.advertisement-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, .10);
  border-color: #2563EB;
}

.advertisement-card.active {
  border: 1px solid #2563EB;
}

.icon-box {
  width: 52px;
  height: 52px;
  border-radius: 16px;

  border: 1px solid #2563EB;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  color: #2563EB;
  margin-bottom: 25px;
  transition: .4s;
  box-shadow: 0 6px 18px rgba(255, 122, 0, .15);
}

.advertisement-card:hover .icon-box {
  background: #2563EB;
  color: #fff;
  transform: rotate(8deg) scale(1.08);
}

.dot {
  width: 12px;
  height: 12px;
  background: #2563EB;
  border-radius: 50%;
  position: absolute;
  left: 135px;
  top: 42px;
}

.advertisement-card h3 {
  font-size: 30px;
  color: #2d313b;
  margin-bottom: 18px;
  line-height: 1.3;
  transition: .3s;
}

.advertisement-card:hover h3 {
  color: #2563EB;
}

.advertisement-card p {
  font-size: 16px;
  color: #777;
  line-height: 1.9;
}

.advertisement-card {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUp .8s forwards;
}

.advertisement-card:nth-child(1) {
  animation-delay: .1s;
}

.advertisement-card:nth-child(2) {
  animation-delay: .2s;
}

.advertisement-card:nth-child(3) {
  animation-delay: .3s;
}

.advertisement-card:nth-child(4) {
  animation-delay: .4s;
}

.advertisement-card:nth-child(5) {
  animation-delay: .5s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media(max-width:1100px) {
  .advertisement-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading h2 {
    font-size: 48px;
  }
}

@media(max-width:768px) {
  .advertisement-section {
    padding: 70px 0;
  }

  .advertisement-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .section-heading h2 {
    font-size: 38px;
  }

  .subtitle {
    font-size: 18px;
  }

  .advertisement-card {
    padding: 28px;
    min-height: auto;
  }

  .advertisement-card h3 {
    font-size: 24px;
  }

  .dot {
    left: 95px;
  }
}

/* Build Brand Awareness */
.brand-awareness-section {
  padding: 90px 0;
  background: #F0F4FF;
  position: relative;
  overflow: hidden;
}

.brand-awareness-section::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: rgba(37, 99, 235, .05);
  border-radius: 50%;
  top: -250px;
  left: -250px;
  filter: blur(90px);
}

.brand-awareness-section::after {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: rgba(37, 99, 235, .04);
  border-radius: 50%;
  right: -250px;
  bottom: -250px;
  filter: blur(100px);
}

.brand-awareness-section .container {
  width: 90%;
  max-width: 1320px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.section-title {
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 62px;
  font-weight: 800;
  line-height: 1.2;
}

.dark-title {
  color: #2d313b;
}

.orange-title {
  color: #2563EB;
  font-family: 'Georgia', serif;
  font-style: italic;
  font-weight: 600;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.brand-card {
  position: relative;
  background: #fff;
  padding: 38px;
  border-radius: 32px;
  border: 1px solid rgba(0, 0, 0, .05);
  min-height: 255px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .04);
  transition: .4s ease;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUp .8s forwards;
}

.brand-card:nth-child(1) {
  animation-delay: .1s;
}

.brand-card:nth-child(2) {
  animation-delay: .2s;
}

.brand-card:nth-child(3) {
  animation-delay: .3s;
}

.brand-card:nth-child(4) {
  animation-delay: .4s;
}

.brand-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(37, 99, 235, .12);
  border-color: #2563EB;
}

.brand-card.active {
  border: 1px solid rgba(37, 99, 235, .45);
}

.icon-box {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: #EFF6FF;
  border: 1px solid rgba(37, 99, 235, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #2563EB;
  margin-bottom: 25px;
  transition: .35s;
  box-shadow: 0 8px 20px rgba(37, 99, 235, .15);
}

.brand-card:hover .icon-box {
  background: #2563EB;
  color: #fff;
  transform: rotate(8deg) scale(1.08);
}

.dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #2563EB;
  border-radius: 50%;
  top: 28px;
  right: 55px;
}

.brand-card h3 {
  font-size: 30px;
  font-weight: 700;
  color: #2d313b;
  margin-bottom: 18px;
  line-height: 1.35;
  transition: .3s;
}

.brand-card:hover h3 {
  color: #2563EB;
}

.brand-card p {
  font-size: 16px;
  color: #777;
  line-height: 1.9;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media(max-width:1200px) {

  .brand-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-title h2 {
    font-size: 50px;
  }

}

@media(max-width:992px) {

  .brand-grid {
    grid-template-columns: 1fr;
  }

  .brand-card {
    min-height: auto;
  }

}

@media(max-width:768px) {

  .brand-awareness-section {
    padding: 70px 0;
  }

  .section-title {
    margin-bottom: 40px;
  }

  .section-title h2 {
    font-size: 38px;
    line-height: 1.3;
  }

  .orange-title {
    display: block;
    margin-top: 5px;
  }

  .brand-grid {
    gap: 25px;
  }

  .brand-card {
    padding: 30px;
    border-radius: 24px;
  }

  .brand-card h3 {
    font-size: 24px;
  }

  .brand-card p {
    font-size: 15px;
    line-height: 1.8;
  }

  .icon-box {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .dot {
    right: 35px;
    top: 25px;
  }

}

@media(max-width:480px) {

  .brand-awareness-section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .brand-card {
    padding: 25px;
  }

  .brand-card h3 {
    font-size: 21px;
  }

  .brand-card p {
    font-size: 14px;
  }

}

/* Our Listing & Cataloging Standards */

.catalog-section {
  padding: 90px 0;
  background: #F0F4FF;
  position: relative;
  overflow: hidden;
}

.catalog-section::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: rgba(37, 99, 235, .05);
  border-radius: 50%;
  top: -250px;
  left: -250px;
  filter: blur(90px);
}

.catalog-section::after {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: rgba(37, 99, 235, .04);
  border-radius: 50%;
  right: -250px;
  bottom: -250px;
  filter: blur(100px);
}

.catalog-section .container {
  width: 90%;
  max-width: 1350px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.section-heading {
  margin-bottom: 60px;
}

.section-heading h2 {
  font-size: 64px;
  line-height: 1.2;
  font-weight: 800;
}

.dark-title {
  color: #2d313b;
}

.orange-title {
  display: block;
  color: #2563EB;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

.catalog-card {
  position: relative;
  background: #fff;
  border-radius: 30px;
  padding: 35px;
  min-height: 210px;
  border: 1px solid rgba(0, 0, 0, .05);
  box-shadow: 0 10px 35px rgba(0, 0, 0, .04);
  transition: .4s;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUp .8s forwards;
}

.catalog-card:nth-child(1) {
  animation-delay: .1s;
}

.catalog-card:nth-child(2) {
  animation-delay: .2s;
}

.catalog-card:nth-child(3) {
  animation-delay: .3s;
}

.catalog-card:nth-child(4) {
  animation-delay: .4s;
}

.catalog-card:nth-child(5) {
  animation-delay: .5s;
}

.catalog-card:nth-child(6) {
  animation-delay: .6s;
}

.catalog-card:nth-child(7) {
  animation-delay: .7s;
}

.catalog-card:nth-child(8) {
  animation-delay: .8s;
}

.catalog-card:hover {
  transform: translateY(-10px);
  border-color: #2563EB;
  box-shadow: 0 25px 60px rgba(37, 99, 235, .15);
}

.catalog-card.active {
  border: 1px solid rgba(37, 99, 235, .45);
}

.check-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #EFF6FF;
  color: #2563EB;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  transition: .35s;
  border: 1px solid rgba(37, 99, 235, .20);
  box-shadow: 0 6px 18px rgba(37, 99, 235, .12);
}

.catalog-card:hover .check-icon {
  background: #2563EB;
  color: #fff;
  transform: scale(1.08) rotate(10deg);
}

.dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #2563EB;
  border-radius: 50%;
  top: 45px;
  right: 35px;
}

.catalog-card h3 {
  font-size: 28px;
  color: #2d313b;
  margin-bottom: 16px;
  line-height: 1.3;
  transition: .3s;
}

.catalog-card:hover h3 {
  color: #2563EB;
}

.catalog-card p {
  color: #777;
  font-size: 16px;
  line-height: 1.8;
}

@keyframes fadeUp {

  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}

@media(max-width:1200px) {

  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading h2 {
    font-size: 50px;
  }

}

@media(max-width:768px) {

  .catalog-section {
    padding: 70px 0;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading h2 {
    font-size: 38px;
    line-height: 1.3;
  }

  .catalog-card {
    padding: 28px;
    min-height: auto;
  }

  .catalog-card h3 {
    font-size: 23px;
  }

  .catalog-card p {
    font-size: 15px;
  }

  .check-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .dot {
    top: 38px;
    right: 28px;
  }

}

@media(max-width:480px) {

  .catalog-section {
    padding: 60px 0;
  }

  .section-heading h2 {
    font-size: 32px;
  }

  .catalog-card {
    padding: 24px;
    border-radius: 24px;
  }

  .catalog-card h3 {
    font-size: 21px;
  }

  .catalog-card p {
    font-size: 14px;
  }

  .orange-title {
    display: block;
    margin-top: 5px;
  }

}

/* Our Professional Photoshoot Services */
.photoshoot-section {
  padding: 90px 0;
  background: #F0F4FF;
  position: relative;
  overflow: hidden;
}

.photoshoot-section::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: rgba(37, 99, 235, .05);
  border-radius: 50%;
  top: -250px;
  left: -250px;
  filter: blur(90px);
}

.photoshoot-section::after {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: rgba(37, 99, 235, .04);
  border-radius: 50%;
  right: -250px;
  bottom: -250px;
  filter: blur(100px);
}

.photoshoot-section .container {
  width: 90%;
  max-width: 1350px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.section-title {
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.2;
}

.dark-title {
  color: #2d313b;
}

.orange-title {
  color: #2563EB;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
}

.photoshoot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.photoshoot-card {
  position: relative;
  background: #fff;
  border-radius: 28px;
  padding: 30px;
  border: 1px solid rgba(0, 0, 0, .05);
  min-height: 250px;
  transition: .4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUp .8s forwards;
}

.photoshoot-card:nth-child(1) {
  animation-delay: .1s;
}

.photoshoot-card:nth-child(2) {
  animation-delay: .2s;
}

.photoshoot-card:nth-child(3) {
  animation-delay: .3s;
}

.photoshoot-card:nth-child(4) {
  animation-delay: .4s;
}

.photoshoot-card:nth-child(5) {
  animation-delay: .5s;
}

.photoshoot-card:nth-child(6) {
  animation-delay: .6s;
}

.photoshoot-card:nth-child(7) {
  animation-delay: .7s;
}

.photoshoot-card:nth-child(8) {
  animation-delay: .8s;
}

.photoshoot-card:nth-child(9) {
  animation-delay: .9s;
}

.photoshoot-card:nth-child(10) {
  animation-delay: 1s;
}

.photoshoot-card:hover {
  transform: translateY(-10px);
  border-color: #2563EB;
  box-shadow: 0 25px 60px rgba(37, 99, 235, .18);
}

.photoshoot-card.active {
  border: 1px solid rgba(37, 99, 235, .45);
}

.icon-box {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #EFF6FF;
  color: #2563EB;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  margin-bottom: 22px;
  border: 1px solid rgba(37, 99, 235, .18);
  transition: .35s;
  box-shadow: 0 8px 20px rgba(37, 99, 235, .12);
}

.photoshoot-card:hover .icon-box {
  background: #2563EB;
  color: #fff;
  transform: rotate(10deg) scale(1.08);
}

.dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #2563EB;
  border-radius: 50%;
  top: 35px;
  right: 35px;
}

.photoshoot-card h3 {
  font-size: 24px;
  color: #2d313b;
  margin-bottom: 18px;
  line-height: 1.35;
  transition: .3s;
}

.photoshoot-card:hover h3 {
  color: #2563EB;
}

.photoshoot-card p {
  color: #777;
  font-size: 15px;
  line-height: 1.8;
}

@keyframes fadeUp {

  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }

}

@media(max-width:1200px) {

  .photoshoot-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section-title h2 {
    font-size: 50px;
  }

}

@media(max-width:992px) {

  .photoshoot-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media(max-width:768px) {

  .photoshoot-section {
    padding: 70px 0;
  }

  .section-title {
    margin-bottom: 40px;
  }

  .section-title h2 {
    font-size: 38px;
    line-height: 1.3;
  }

  .orange-title {
    display: block;
    margin-top: 5px;
  }

  .photoshoot-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .photoshoot-card {
    padding: 28px;
    min-height: auto;
  }

  .photoshoot-card h3 {
    font-size: 22px;
  }

  .photoshoot-card p {
    font-size: 14px;
  }

  .icon-box {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .dot {
    top: 30px;
    right: 28px;
  }

}

@media(max-width:480px) {

  .photoshoot-section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .photoshoot-card {
    padding: 24px;
    border-radius: 24px;
  }

  .photoshoot-card h3 {
    font-size: 20px;
  }

  .photoshoot-card p {
    font-size: 14px;
  }

}


@media (max-width:992px) {

  .consulting-header {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }

  .left-content,
  .right-content {
    max-width: 100%;
  }

  .consulting-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .left-content h2 {
    font-size: 44px;
  }

}

@media (max-width:768px) {

  .consulting-section {
    padding: 60px 0;
  }

  .consulting-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
  }

  .top-title {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .left-content h2 {
    font-size: 34px;
    line-height: 1.25;
  }

  .right-content p {
    font-size: 15px;
    line-height: 1.8;
  }

  .consulting-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .consulting-card {
    padding: 25px;
    border-radius: 22px;
  }

  .card-top {
    margin-bottom: 18px;
  }

  .icon-box {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }

  .consulting-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .consulting-card p {
    font-size: 14px;
    line-height: 1.8;
  }

  .consulting-card h5 {
    font-size: 11px;
    margin-bottom: 12px;
  }

  .consulting-card ul li {
    font-size: 14px;
    margin-bottom: 10px;
  }

}

@media (max-width:480px) {

  .container {
    width: 92%;
  }

  .consulting-section {
    padding: 50px 0;
  }

  .left-content h2 {
    font-size: 28px;
  }

  .top-title {
    font-size: 10px;
  }

  .right-content p {
    font-size: 14px;
  }

  .consulting-card {
    padding: 20px;
    border-radius: 20px;
  }

  .icon-box {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .card-top span {
    font-size: 11px;
  }

  .consulting-card h3 {
    font-size: 20px;
  }

  .consulting-card p {
    font-size: 13px;
  }

  .consulting-card ul li {
    font-size: 13px;
    padding-left: 20px;
  }

  .divider {
    margin: 20px 0;
  }

}

/* E-Commerce Consulting */
.consulting-section {
  padding: 90px 0;
  background: #faf7f2;
  position: relative;
  overflow: hidden;
}

.consulting-section::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: rgba(37, 99, 235, .05);
  border-radius: 50%;
  top: -250px;
  left: -250px;
  filter: blur(100px);
}

.consulting-section::after {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: rgba(37, 99, 235, .04);
  border-radius: 50%;
  bottom: -250px;
  right: -250px;
  filter: blur(100px);
}

.consulting-section .container {
  width: 90%;
  max-width: 1350px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.consulting-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 60px;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 25px;
}

.left-content {
  max-width: 55%;
}

.top-title {
  display: block;
  color: #2563EB;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.left-content h2 {
  font-size: 58px;
  color: #2d313b;
  line-height: 1.15;
  font-weight: 800;
}

.right-content {
  max-width: 420px;
}

.right-content p {
  color: #777;
  line-height: 1.8;
  font-size: 16px;
}

.consulting-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.consulting-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 28px;
  padding: 35px;
  transition: .35s;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp .8s forwards;
}

.consulting-card:nth-child(1) {
  animation-delay: .1s;
}

.consulting-card:nth-child(2) {
  animation-delay: .2s;
}

.consulting-card:nth-child(3) {
  animation-delay: .3s;
}

.consulting-card:nth-child(4) {
  animation-delay: .4s;
}

.consulting-card:nth-child(5) {
  animation-delay: .5s;
}

.consulting-card:nth-child(6) {
  animation-delay: .6s;
}

.consulting-card:hover {
  transform: translateY(-10px);
  border-color: #2563EB;
  box-shadow: 0 25px 60px rgba(37, 99, 235, .15);
}

.consulting-card.active {
  border: 1px solid rgba(37, 99, 235, .45);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.card-top span {
  font-size: 13px;
  font-weight: 600;
  color: #999;
}

.icon-box {
  width: 52px;
  height: 52px;
  background: #EFF6FF;
  border: 1px solid rgba(37, 99, 235, .25);
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #2563EB;
  font-size: 22px;
  transition: .35s;
}

.consulting-card:hover .icon-box {
  background: #2563EB;
  color: #fff;
  transform: rotate(10deg) scale(1.08);
}

.consulting-card h3 {
  font-size: 28px;
  margin-bottom: 18px;
  color: #2d313b;
  line-height: 1.3;
  transition: .3s;
}

.consulting-card:hover h3 {
  color: #2563EB;
}

.consulting-card p {
  color: #777;
  line-height: 1.9;
  font-size: 15px;
}

.divider {
  width: 100%;
  height: 1px;
  background: #ececec;
  margin: 28px 0;
}

.consulting-card h5 {
  color: #2563EB;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-weight: 700;
}

.consulting-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.consulting-card ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

.consulting-card ul li::before {
  content: "○";
  position: absolute;
  left: 0;
  color: #2563EB;
  font-size: 13px;
}

@keyframes fadeUp {

  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }

}

@media(max-width:1200px) {

  .consulting-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .left-content h2 {
    font-size: 48px;
  }

}

@media(max-width:992px) {

  .consulting-header {
    flex-direction: column;
    gap: 25px;
  }

  .left-content,
  .right-content {
    max-width: 100%;
  }

}

@media(max-width:768px) {

  .consulting-section {
    padding: 70px 0;
  }

  .consulting-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .left-content h2 {
    font-size: 38px;
  }

  .consulting-card {
    padding: 28px;
  }

  .consulting-card h3 {
    font-size: 24px;
  }

  .consulting-card p,
  .consulting-card ul li {
    font-size: 14px;
  }

}

@media(max-width:480px) {

  .consulting-section {
    padding: 60px 0;
  }

  .left-content h2 {
    font-size: 32px;
  }

  .consulting-card {
    padding: 24px;
    border-radius: 22px;
  }

  .icon-box {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }

  .top-title {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .right-content p {
    font-size: 14px;
  }

}

/* Roles & Responsibilities SECTIONS  */

.roles-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.roles-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1550px;
  margin: 0 auto;
}

.roles-heading {
  display: flex;
  align-items: baseline;
  gap: 17px;
  margin-bottom: 75px;
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  max-width: 1450px;
  margin: 0 auto;
}

.role-card {
  position: relative;
  min-height: 325px;
  padding: 40px 42px;
  overflow: hidden;
  border: 1px solid #FFFFFF;
  border-radius: 34px;
  background: #FFFFFF;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 15px 40px rgba(70, 50, 30, 0.045),
    inset 0 1px 0 #FFFFFF;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.role-card:hover {
  transform: translateY(-7px);
  background: #FFFFFF;
  box-shadow:
    0 25px 55px #FFFFFF,
    inset 0 1px 0 #FFFFFF;
}

.role-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 38px;
  width: 4px;
  height: 60px;
  border-radius: 0 8px 8px 0;
  background: #2563EB;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
}

.role-card:hover::before {
  transform: scaleY(1);
}

.role-number {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 25px;
  color: #2563EB;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.role-number span {
  opacity: 0.5;
}

.role-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 30px;
  color: #2d3038;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.8px;
}

.role-card ul {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 17px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.role-card li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #77767a;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.role-card li:hover {
  color: #30323a;
  transform: translateX(4px);
}

.check {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 1px;
}

.check::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 3px;
  width: 11px;
  height: 6px;
  border-left: 2px solid #2563EB;
  border-bottom: 2px solid #2563EB;
  transform: rotate(-45deg);
}

@media (max-width: 1200px) {
  .roles-section {
    padding: 65px 30px 75px;
  }

  .roles-grid {
    gap: 28px;
  }

  .role-card {
    padding: 38px 34px;
  }
}

@media (max-width: 1000px) {
  .roles-heading {
    margin-bottom: 60px;
  }

  .roles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 900px;
  }

  .role-card:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 700px) {
  .roles-section {
    padding: 55px 20px 65px;
  }

  .roles-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    margin-bottom: 45px;
  }

  .roles-heading h2 {
    font-size: 43px;
    letter-spacing: -2px;
  }

  .roles-heading span {
    font-size: 39px;
    letter-spacing: -1px;
  }

  .roles-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .role-card,
  .role-card:last-child {
    grid-column: auto;
    min-height: 295px;
    padding: 34px 29px;
    border-radius: 28px;
  }

  .role-card::before {
    top: 32px;
    height: 55px;
  }

  .role-number {
    margin-bottom: 22px;
    font-size: 12px;
  }

  .role-card h3 {
    margin-bottom: 27px;
    font-size: 23px;
  }

  .role-card ul {
    gap: 15px;
  }

  .role-card li {
    font-size: 14px;
  }

  .role-bg-number {
    font-size: 70px;
  }
}

@media (max-width: 420px) {
  .roles-section {
    padding: 45px 16px 55px;
  }

  .roles-heading h2 {
    font-size: 37px;
  }

  .roles-heading span {
    font-size: 34px;
  }

  .role-card,
  .role-card:last-child {
    padding: 30px 24px;
    min-height: 285px;
  }

  .role-card h3 {
    font-size: 22px;
  }

  .role-card li {
    font-size: 13.5px;
  }
}

.accounting-section {
  width: 100%;
  padding: 24px 3%;
}

.intro-card,
.info-card {
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 36px;
  box-shadow: 0 8px 30px rgba(40, 40, 40, 0.025);
}

.intro-card {
  padding: 48px 50px;
  margin-bottom: 22px;
}

.eyebrow {
  display: block;
  color: #2563EB;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.intro-card h1 {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 22px;
  color: #292d35;
}

.intro-card p,
.info-card p {
  color: #7a7d84;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 400;
  max-width: 920px;
}

.accounting-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.info-card {
  padding: 38px 32px;
  min-height: 240px;
}

.info-card .eyebrow {
  margin-bottom: 20px;
}

.info-card h2 {
  color: #292d35;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 700;
  margin-bottom: 22px;
}

.info-card p {
  max-width: 100%;
  font-size: 13.5px;
  line-height: 1.75;
}

.intro-card:hover,
.info-card:hover {
  transform: translateY(-3px);
  transition: all 0.3s ease;
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.06);
}

@media (max-width: 768px) {
  .accounting-section {
    padding: 18px 4%;
  }

  .intro-card {
    padding: 32px 25px;
    border-radius: 28px;
  }

  .intro-card h1 {
    font-size: 28px;
  }

  .intro-card p {
    font-size: 13px;
  }

  .accounting-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .info-card {
    padding: 30px 25px;
    border-radius: 28px;
  }

  .info-card h2 {
    font-size: 18px;
  }
}


.services-section {
  width: 100%;
  padding: 55px 3%;
  background: #ffffff;
}

.services-header {
  max-width: 1050px;
  margin-bottom: 62px;
}

.services-header h1 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -1.8px;
  color: #292d35;
}

.services-header h1 span {
  color: #2563EB;
  font-family: Georgia, serif;
  font-size: 39px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -1px;
}

.services-header p {
  margin-top: 30px;
  font-size: 14px;
  line-height: 1.7;
  color: #858891;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 32px;
}

.service-card {
  min-height: 74px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 22px;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: #2563EB;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.08);
}

.check-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #2563EB;
  font-size: 18px;
  font-weight: 600;
}

.service-card h3 {
  font-size: 12px;
  line-height: 1.4;
  font-weight: 600;
  color: #343841;
}

@media (max-width: 992px) {
  .services-header h1 {
    font-size: 40px;
  }

  .services-header h1 span {
    font-size: 34px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-section {
    padding: 40px 20px;
  }

  .services-header {
    margin-bottom: 40px;
  }

  .services-header h1 {
    font-size: 32px;
    line-height: 1.25;
    letter-spacing: -1px;
  }

  .services-header h1 span {
    font-size: 28px;
  }

  .services-header p {
    font-size: 13px;
    margin-top: 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    min-height: 68px;
    border-radius: 18px;
  }
}

.ecommerce-section {
  width: 100%;
  min-height: 100vh;
  padding: 55px 4.5%;
  background: #F0F4FF;
}

.ecommerce-header {
  max-width: 720px;
  margin-bottom: 65px;
}

.ecommerce-header h1 {
  font-size: 46px;
  line-height: 1.28;
  font-weight: 700;
  letter-spacing: -1.8px;
  color: #292d35;
}

.ecommerce-header h1 span {
  color: #2563EB;
  font-family: Georgia, serif;
  font-size: 43px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -1px;
}

.ecommerce-header p {
  margin-top: 28px;
  color: #7d8491;
  font-size: 14px;
  line-height: 1.7;
}

.ecommerce-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 32px;
}

.feature-card {
  min-height: 195px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 28px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: #ffffff;
  border-color: #dbe5ff;
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.09);
}

.feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 13px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #2563EB;
  font-size: 20px;
  font-weight: 500;
  box-shadow: 0 3px 8px rgba(37, 99, 235, 0.08);
}

.feature-card h3 {
  margin-bottom: 15px;
  color: #30343d;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
}

.feature-card p {
  color: #858b96;
  font-size: 11.5px;
  line-height: 1.7;
  font-weight: 400;
}

@media (max-width: 1100px) {
  .ecommerce-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .ecommerce-section {
    padding: 40px 20px;
  }

  .ecommerce-header {
    margin-bottom: 40px;
  }

  .ecommerce-header h1 {
    font-size: 34px;
  }

  .ecommerce-header h1 span {
    font-size: 32px;
  }

  .ecommerce-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-card {
    min-height: auto;
  }
}

.reputation-section {
  width: 100%;
  min-height: 100vh;
  padding: 10px 3.3% 55px;
  background: #F0F4FF;
  position: relative;
  overflow: hidden;
}

.reputation-section::before {
  content: "";
  position: absolute;
  width: 900px;
  height: 900px;
  border: 1px solid rgba(37, 99, 235, 0.08);
  border-radius: 50%;
  top: -450px;
  left: 10%;
  pointer-events: none;
}

.reputation-section::after {
  content: "";
  position: absolute;
  width: 1050px;
  height: 1050px;
  border: 1px solid rgba(37, 99, 235, 0.06);
  border-radius: 50%;
  top: -500px;
  right: -150px;
  pointer-events: none;
}

.reputation-header {
  position: relative;
  z-index: 2;
  margin-bottom: 66px;
}

.reputation-header h1 {
  color: #292d35;
  font-size: 46px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -1.8px;
}

.reputation-header h1 span {
  color: #2563EB;
  font-family: Georgia, serif;
  font-size: 43px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -1px;
}

.reputation-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.reputation-card {
  min-height: 225px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 28px;
  transition: all 0.3s ease;
}

.reputation-card:hover {
  transform: translateY(-6px);
  background: #ffffff;
  border-color: #dbe5ff;
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.09);
}

.reputation-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 13px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #2563EB;
  font-size: 21px;
  box-shadow: 0 3px 8px rgba(37, 99, 235, 0.08);
}

.reputation-card h3 {
  margin-bottom: 17px;
  color: #30343d;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
}

.reputation-card p {
  color: #858b96;
  font-size: 12px;
  line-height: 1.7;
  font-weight: 400;
  max-width: 290px;
}

.reputation-card:nth-child(4) {
  grid-column: 1;
}

.reputation-card:nth-child(5) {
  grid-column: 2;
}

@media (max-width: 1000px) {
  .reputation-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reputation-card:nth-child(4),
  .reputation-card:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 650px) {
  .reputation-section {
    padding: 35px 20px 45px;
  }

  .reputation-header {
    margin-bottom: 40px;
  }

  .reputation-header h1 {
    font-size: 34px;
  }

  .reputation-header h1 span {
    font-size: 32px;
  }

  .reputation-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .reputation-card {
    min-height: auto;
    padding: 26px;
  }
}

.reputation-management {
  width: 100%;
  min-height: 100vh;
  padding: 10px 6% 50px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.reputation-management::before {
  content: "";
  position: absolute;
  width: 850px;
  height: 850px;
  border: 1px solid rgba(37, 99, 235, 0.06);
  border-radius: 50%;
  top: -470px;
  left: 18%;
  pointer-events: none;
}

.reputation-management::after {
  content: "";
  position: absolute;
  width: 1000px;
  height: 1000px;
  border: 1px solid rgba(37, 99, 235, 0.05);
  border-radius: 50%;
  top: -580px;
  right: -100px;
  pointer-events: none;
}

.rm-header {
  position: relative;
  z-index: 2;
  margin-bottom: 62px;
}

.rm-header h1 {
  color: #292d35;
  font-size: 46px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -1.8px;
}

.rm-header h1 span {
  color: #2563EB;
  font-family: Plus Jakarta Sans;
  font-size: 43px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -1px;
}

.rm-header p {
  margin-top: 27px;
  color: #7d8491;
  font-size: 13px;
  line-height: 1.7;
}

.rm-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.rm-card {
  min-height: 230px;
  padding: 25px;
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 27px;
  transition: all 0.3s ease;
}

.rm-card:hover {
  transform: translateY(-6px);
  background: #ffffff;
  border-color: #bfdbfe;
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.10);
}

.rm-icon {
  width: 41px;
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 19px;
  border-radius: 13px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #2563EB;
  font-size: 20px;
  font-weight: 500;
  box-shadow: 0 3px 8px rgba(37, 99, 235, 0.08);
  transition: all 0.3s ease;
}

.rm-card:hover .rm-icon {
  background: #2563EB;
  color: #ffffff;
  border-color: #2563EB;
  transform: scale(1.05);
}

.rm-card h3 {
  margin-bottom: 16px;
  color: #30343d;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.rm-card p {
  color: #858b96;
  font-size: 11.5px;
  line-height: 1.7;
  font-weight: 400;
}

@media (max-width: 1200px) {
  .reputation-management {
    padding: 35px 4%;
  }

  .rm-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .reputation-management {
    padding: 35px 25px 45px;
  }

  .rm-header {
    margin-bottom: 40px;
  }

  .rm-header h1 {
    font-size: 36px;
    letter-spacing: -1.2px;
  }

  .rm-header h1 span {
    font-size: 34px;
  }

  .rm-header p {
    font-size: 12px;
  }

  .rm-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .rm-card {
    min-height: auto;
    padding: 25px;
    border-radius: 22px;
  }
}

@media (max-width: 480px) {
  .reputation-management {
    padding: 30px 18px 40px;
  }

  .rm-header h1 {
    font-size: 30px;
  }

  .rm-header h1 span {
    font-size: 29px;
  }

  .rm-header p {
    margin-top: 18px;
    font-size: 11.5px;
  }

  .rm-card {
    padding: 22px;
  }

  .rm-icon {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .rm-card h3 {
    font-size: 13px;
  }

  .rm-card p {
    font-size: 11.5px;
  }
}

.tech-section {
  width: 100%;
  min-height: 100vh;

  padding: 45px 5% 55px;

  background: #FFFFFF;

  position: relative;
  overflow: hidden;
}

/* Decorative Background */

.tech-section::before {
  content: "";

  position: absolute;

  width: 800px;
  height: 800px;

  border: 1px solid rgba(37, 99, 235, 0.04);

  border-radius: 50%;

  top: -500px;
  right: -150px;

  pointer-events: none;
}

.tech-section::after {
  content: "";

  position: absolute;

  width: 700px;
  height: 700px;

  border: 1px solid rgba(37, 99, 235, 0.035);

  border-radius: 50%;

  bottom: -480px;
  left: -100px;

  pointer-events: none;
}

/* =========================
   HEADER
========================= */

.tech-header {
  position: relative;
  z-index: 2;

  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  gap: 40px;

  padding-bottom: 18px;

  margin-bottom: 30px;

  border-bottom: 1px solid #E5E7EB;
}

.tech-label {
  display: block;

  margin-bottom: 7px;

  color: #2563EB;

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;
}

.tech-header h1 {
  color: #292D35;

  font-size: 30px;

  line-height: 1.2;

  font-weight: 700;

  letter-spacing: -1px;
}

.tech-header p {
  max-width: 380px;

  color: #858B96;

  font-size: 10px;

  line-height: 1.7;
}

/* =========================
   GRID
========================= */

.tech-grid {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 18px;

  max-width: 1000px;

  margin: 0 auto;
}

/* =========================
   CARD
========================= */

.tech-card {
  min-height: 285px;

  padding: 24px;

  background: #FFFFFF;

  border: 1px solid #E5E7EB;

  border-radius: 22px;

  transition: all 0.3s ease;
}

.tech-card:hover {
  transform: translateY(-5px);

  border-color: #BFDBFE;

  box-shadow:
    0 15px 35px rgba(37, 99, 235, 0.08);
}

/* =========================
   CARD TOP
========================= */

.card-top {
  display: flex;

  align-items: center;
  justify-content: space-between;

  margin-bottom: 20px;
}

/* =========================
   ICON
========================= */

.tech-icon {
  width: 38px;
  height: 38px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #EFF6FF;

  border: 1px solid #BFDBFE;

  color: #2563EB;

  font-size: 14px;

  font-weight: 600;

  transition: all 0.3s ease;
}

.tech-card:hover .tech-icon {
  background: #2563EB;

  color: #FFFFFF;

  border-color: #2563EB;

  transform: scale(1.05);
}

/* =========================
   NUMBER
========================= */

.card-number {
  color: #9CA3AF;

  font-size: 8px;

  font-weight: 500;
}

/* =========================
   TITLE
========================= */

.tech-card h3 {
  margin-bottom: 12px;

  color: #30343D;

  font-size: 13px;

  line-height: 1.4;

  font-weight: 700;
}

/* =========================
   DESCRIPTION
========================= */

.tech-card>p {
  color: #858B96;

  font-size: 9.5px;

  line-height: 1.7;
}

/* =========================
   DIVIDER
========================= */

.card-divider {
  width: 100%;

  height: 1px;

  margin: 16px 0 13px;

  background: #E5E7EB;
}

/* =========================
   CAPABILITY
========================= */

.capability-title {
  display: block;

  margin-bottom: 9px;

  color: #2563EB;

  font-size: 6px;

  font-weight: 700;

  letter-spacing: 1.2px;
}

/* =========================
   LIST
========================= */

.tech-card ul {
  list-style: none;

  display: flex;

  flex-direction: column;

  gap: 6px;
}

.tech-card li {
  position: relative;

  padding-left: 13px;

  color: #737985;

  font-size: 7.5px;

  line-height: 1.4;
}

.tech-card li::before {
  content: "";

  position: absolute;

  width: 6px;
  height: 6px;

  left: 0;
  top: 3px;

  border: 1px solid #2563EB;

  border-radius: 50%;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1000px) {

  .tech-section {
    padding: 40px 4%;
  }

  .tech-header {
    flex-direction: column;

    align-items: flex-start;

    gap: 15px;
  }

  .tech-header p {
    max-width: 600px;
  }

  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 650px) {

  .tech-section {
    padding: 35px 20px 45px;
  }

  .tech-header {
    margin-bottom: 22px;
  }

  .tech-header h1 {
    font-size: 25px;
  }

  .tech-header p {
    font-size: 9px;
  }

  .tech-grid {
    grid-template-columns: 1fr;

    gap: 16px;
  }

  .tech-card {
    min-height: auto;

    padding: 22px;

    border-radius: 20px;
  }

  .tech-card h3 {
    font-size: 13px;
  }

  .tech-card>p {
    font-size: 9.5px;
  }

  .tech-card li {
    font-size: 8px;
  }
}

.ecommerce-consulting {
  width: 100%;
  min-height: 100vh;
  padding: 45px 3.5% 60px;
  background: #F0F4FF;
  position: relative;
  overflow: hidden;
}

/* Background Decorative Shapes */
.ecommerce-consulting::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(37, 99, 235, 0.05);
  border-radius: 50%;
  top: -430px;
  right: -80px;
  pointer-events: none;
}

.ecommerce-consulting::after {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(37, 99, 235, 0.04);
  border-radius: 50%;
  bottom: -430px;
  left: 20%;
  pointer-events: none;
}

/* Header */
.consulting-header {
  position: relative;
  z-index: 2;

  display: flex;
  justify-content: space-between;
  align-items: flex-end;

  gap: 40px;

  padding-bottom: 18px;
  margin-bottom: 20px;

  border-bottom: 1px solid #dfe5ef;
}

.section-label {
  display: block;

  margin-bottom: 7px;

  color: #2563EB;

  font-size: 8px;
  font-weight: 700;

  letter-spacing: 2px;
  text-transform: uppercase;
}

.consulting-header h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #191b21;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.7px;
}

.consulting-header>p {
  max-width: 410px;

  color: #737b88;

  font-size: 9px;
  line-height: 1.65;

  text-align: left;
}

/* Cards Grid */
.consulting-grid {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 14px;
}

/* Card */
.consulting-card {
  min-height: 222px;

  padding: 17px;

  background: #ffffff;

  border: 1px solid #e3e8f0;

  border-radius: 18px;

  transition: all 0.3s ease;
}

.consulting-card:hover {
  transform: translateY(-5px);

  border-color: #bfdbfe;

  box-shadow:
    0 15px 35px rgba(37, 99, 235, 0.09);
}

/* Card Top */
.card-top {
  display: flex;

  align-items: center;
  justify-content: space-between;

  margin-bottom: 15px;
}

/* Icon */
.card-icon {
  width: 34px;
  height: 34px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #EFF6FF;

  border: 1px solid #BFDBFE;

  color: #2563EB;

  font-size: 13px;
  font-weight: 600;

  transition: all 0.3s ease;
}

.consulting-card:hover .card-icon {
  background: #2563EB;
  color: #ffffff;
  border-color: #2563EB;

  transform: scale(1.05);
}

/* Card Number */
.card-number {
  color: #9aa2ae;

  font-size: 7px;
  font-weight: 500;
}

/* Card Heading */
.consulting-card h3 {
  margin-bottom: 9px;

  color: #30343d;

  font-size: 11.5px;
  line-height: 1.4;

  font-weight: 700;
}

/* Card Description */
.consulting-card>p {
  color: #858b96;

  font-size: 8.5px;
  line-height: 1.65;

  font-weight: 400;
}

/* Divider */
.card-line {
  width: 100%;
  height: 1px;

  margin: 11px 0 10px;

  background: #e6e9ee;
}

/* Capability Title */
.capability-title {
  display: block;

  margin-bottom: 7px;

  color: #2563EB;

  font-size: 5.5px;
  line-height: 1;

  font-weight: 700;

  letter-spacing: 1.1px;
}

/* List */
.consulting-card ul {
  list-style: none;

  display: flex;

  flex-direction: column;

  gap: 4px;
}

.consulting-card li {
  position: relative;

  padding-left: 10px;

  color: #737985;

  font-size: 7px;
  line-height: 1.35;
}

.consulting-card li::before {
  content: "";

  position: absolute;

  width: 5px;
  height: 5px;

  left: 0;
  top: 3px;

  border: 1px solid #2563EB;

  border-radius: 50%;
}

/* Tablet */
@media (max-width: 1000px) {

  .ecommerce-consulting {
    padding: 40px 4%;
  }

  .consulting-header {
    flex-direction: column;

    align-items: flex-start;

    gap: 14px;
  }

  .consulting-header>p {
    max-width: 600px;
  }

  .consulting-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 650px) {

  .ecommerce-consulting {
    padding: 35px 20px 45px;
  }

  .consulting-header {
    margin-bottom: 18px;
  }

  .consulting-header h1 {
    font-size: 32px;
  }

  .consulting-header>p {
    font-size: 9px;
  }

  .consulting-grid {
    grid-template-columns: 1fr;

    gap: 16px;
  }

  .consulting-card {
    min-height: auto;

    padding: 20px;

    border-radius: 20px;
  }

  .consulting-card h3 {
    font-size: 13px;
  }

  .consulting-card>p {
    font-size: 9.5px;
  }

  .consulting-card li {
    font-size: 8px;
  }
}

.marketing-support {
  width: 100%;
  min-height: 100vh;
  padding: 40px 7% 55px;
  background: #F0F4FF;
  position: relative;
  overflow: hidden;
}

/* Background Decorative Circles */

.marketing-support::before {
  content: "";
  position: absolute;
  width: 850px;
  height: 850px;
  border: 1px solid rgba(37, 99, 235, 0.05);
  border-radius: 50%;
  top: -500px;
  right: -100px;
  pointer-events: none;
}

.marketing-support::after {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(37, 99, 235, 0.04);
  border-radius: 50%;
  bottom: -450px;
  left: 25%;
  pointer-events: none;
}

/* ================================
   HEADER
================================ */

.ms-header {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 50px;

  padding-bottom: 25px;
  margin-bottom: 35px;

  border-bottom: 1px solid #dfe5ef;
}

.ms-label {
  display: block;
  margin-bottom: 9px;

  color: #2563EB;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.ms-header h1 {
  color: #292d35;

  font-size: 42px;
  line-height: 1.15;

  font-weight: 700;

  letter-spacing: -1.6px;
}

.ms-header>p {
  max-width: 420px;

  color: #858b96;

  font-size: 12px;
  line-height: 1.7;
}

/* ================================
   GRID
================================ */

.ms-grid {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 26px;

  max-width: 1000px;

  margin: 0 auto;
}

/* ================================
   MEDIUM CARD
================================ */

.ms-card {
  min-height: 410px;

  padding: 30px;

  background: #ffffff;

  border: 1px solid #e2e6ed;

  border-radius: 30px;

  transition: all 0.3s ease;
}

.ms-card:hover {
  transform: translateY(-5px);

  border-color: #bfdbfe;

  box-shadow:
    0 15px 35px rgba(37, 99, 235, 0.09);
}

/* ================================
   CARD TOP
================================ */

.ms-card-top {
  display: flex;

  align-items: center;
  justify-content: space-between;

  margin-bottom: 22px;
}

/* ================================
   ICON
================================ */

.ms-icon {
  width: 48px;
  height: 48px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #ffffff;

  border: 1px solid #e5e7eb;

  color: #2563EB;

  font-size: 22px;

  box-shadow:
    0 3px 8px rgba(0, 0, 0, 0.06);

  transition: all 0.3s ease;
}

.ms-card:hover .ms-icon {
  background: #EFF6FF;

  border-color: #BFDBFE;

  color: #2563EB;

  transform: scale(1.05);
}

/* ================================
   CARD NUMBER
================================ */

.ms-number {
  color: #9ca3af;

  font-size: 10px;

  font-weight: 500;
}

/* ================================
   CARD TITLE
================================ */

.ms-card h2 {
  margin-bottom: 15px;

  color: #30343d;

  font-size: 21px;

  line-height: 1.3;

  font-weight: 700;

  letter-spacing: -0.5px;
}

/* ================================
   DESCRIPTION
================================ */

.ms-description {
  color: #777e89;

  font-size: 13px;

  line-height: 1.7;

  font-weight: 400;
}

/* ================================
   DIVIDER
================================ */

.ms-divider {
  width: 100%;

  height: 1px;

  margin: 22px 0;

  background: #e5e7eb;
}

/* ================================
   CAPABILITY TITLE
================================ */

.ms-capability {
  display: block;

  margin-bottom: 12px;

  color: #2563EB;

  font-size: 8px;

  line-height: 1;

  font-weight: 700;

  letter-spacing: 1.8px;
}

/* ================================
   LIST
================================ */

.ms-list {
  list-style: none;

  display: flex;

  flex-direction: column;

  gap: 9px;
}

.ms-list li {
  position: relative;

  padding-left: 25px;

  color: #707783;

  font-size: 12px;

  line-height: 1.4;
}

.ms-list li::before {
  content: "✓";

  position: absolute;

  left: 0;
  top: 0;

  width: 18px;
  height: 18px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid #cbd5e1;

  border-radius: 50%;

  color: #2563EB;

  font-size: 9px;

  font-weight: 700;
}

/* ================================
   TABLET
================================ */

@media (max-width: 900px) {

  .marketing-support {
    padding: 40px 5% 50px;
  }

  .ms-header {
    flex-direction: column;

    align-items: flex-start;

    gap: 18px;

    margin-bottom: 30px;
  }

  .ms-header h1 {
    font-size: 36px;
  }

  .ms-header>p {
    max-width: 650px;
  }

  .ms-grid {
    max-width: 800px;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 20px;
  }

  .ms-card {
    min-height: 390px;
  }
}

/* ================================
   MOBILE
================================ */

@media (max-width: 600px) {

  .marketing-support {
    padding: 35px 20px 45px;
  }

  .ms-header {
    padding-bottom: 20px;

    margin-bottom: 25px;

    gap: 15px;
  }

  .ms-label {
    font-size: 7px;

    letter-spacing: 2px;
  }

  .ms-header h1 {
    font-size: 31px;

    letter-spacing: -1px;
  }

  .ms-header>p {
    font-size: 11px;

    line-height: 1.6;
  }

  .ms-grid {
    grid-template-columns: 1fr;

    gap: 18px;

    max-width: 100%;
  }

  .ms-card {
    min-height: auto;

    padding: 27px;

    border-radius: 26px;
  }

  .ms-card-top {
    margin-bottom: 20px;
  }

  .ms-icon {
    width: 46px;
    height: 46px;

    font-size: 21px;
  }

  .ms-card h2 {
    font-size: 20px;

    margin-bottom: 14px;
  }

  .ms-description {
    font-size: 13px;

    line-height: 1.7;
  }

  .ms-divider {
    margin: 20px 0;
  }

  .ms-list {
    gap: 8px;
  }

  .ms-list li {
    font-size: 12px;

    padding-left: 24px;
  }
}

/* ================================
   SMALL MOBILE
================================ */

@media (max-width: 400px) {

  .marketing-support {
    padding: 30px 16px 40px;
  }

  .ms-header h1 {
    font-size: 28px;
  }

  .ms-card {
    padding: 23px;

    border-radius: 23px;
  }

  .ms-card h2 {
    font-size: 18px;
  }

  .ms-description {
    font-size: 12px;
  }

  .ms-list li {
    font-size: 11px;
  }
}

.web-app-section {
  width: 100%;
  min-height: 100vh;

  padding: 35px 3.5% 55px;

  background: #FFFFFF;

  position: relative;
  overflow: hidden;
}

/* =========================
   HEADER
========================= */

.web-app-header {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns: 40% 60%;

  gap: 45px;

  margin-bottom: 60px;
}

.web-app-title {
  padding-left: 5px;
}

.branch-label {
  display: flex;
  align-items: center;

  gap: 16px;

  margin-bottom: 25px;

  color: #9CA3AF;

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 3px;

  text-transform: uppercase;
}

.branch-label span {
  width: 32px;
  height: 1px;

  background: #2563EB;

  display: inline-block;
}

.web-app-title h1 {
  color: #292D35;

  font-size: 36px;

  line-height: 1.2;

  font-weight: 700;

  letter-spacing: -1.4px;
}

.web-app-title h1 em {
  display: block;

  margin-top: 3px;

  color: #2563EB;

  font-family: Georgia, serif;

  font-size: 34px;

  font-weight: 400;

  font-style: italic;

  letter-spacing: -0.5px;
}

.web-app-description {
  padding-top: 2px;

  color: #737985;

  font-size: 12px;

  line-height: 1.75;
}


/* =========================
   CARDS GRID
========================= */

.web-app-grid {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;

  max-width: 1120px;

  margin: 0 auto;
}


/* =========================
   CARD
========================= */

.web-app-card {
  min-height: 225px;

  padding: 32px;

  background: #FFFFFF;

  border: 1px solid #E5E7EB;

  border-radius: 28px;

  transition: all 0.3s ease;
}

.web-app-card:hover {
  transform: translateY(-5px);

  border-color: #BFDBFE;

  box-shadow:
    0 15px 35px rgba(37, 99, 235, 0.08);
}


/* =========================
   ICON
========================= */

.web-app-icon {
  width: 40px;
  height: 40px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 21px;

  border-radius: 12px;

  background: #EFF6FF;

  border: 1px solid #BFDBFE;

  color: #2563EB;

  font-size: 18px;

  font-weight: 600;

  transition: all 0.3s ease;
}

.web-app-card:hover .web-app-icon {
  background: #2563EB;

  color: #FFFFFF;

  border-color: #2563EB;

  transform: scale(1.05);
}


/* =========================
   CARD TITLE
========================= */

.web-app-card h3 {
  margin-bottom: 18px;

  color: #30343D;

  font-size: 15px;

  line-height: 1.4;

  font-weight: 700;

  letter-spacing: -0.3px;
}


/* =========================
   CARD DESCRIPTION
========================= */

.web-app-card p {
  color: #858B96;

  font-size: 11px;

  line-height: 1.7;

  font-weight: 400;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1000px) {

  .web-app-section {
    padding: 40px 5%;
  }

  .web-app-header {
    grid-template-columns: 1fr;

    gap: 20px;

    margin-bottom: 40px;
  }

  .web-app-description {
    max-width: 700px;
  }

  .web-app-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
  }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 650px) {

  .web-app-section {
    padding: 35px 20px 45px;
  }

  .branch-label {
    margin-bottom: 18px;

    font-size: 7px;

    letter-spacing: 2px;
  }

  .web-app-title h1 {
    font-size: 30px;
  }

  .web-app-title h1 em {
    font-size: 29px;
  }

  .web-app-description {
    font-size: 11px;

    line-height: 1.7;
  }

  .web-app-grid {
    grid-template-columns: 1fr;

    gap: 18px;
  }

  .web-app-card {
    min-height: auto;

    padding: 27px;

    border-radius: 24px;
  }

  .web-app-card h3 {
    font-size: 15px;
  }

  .web-app-card p {
    font-size: 11px;
  }
}

.digital-presence-section {
  width: 100%;
  min-height: 100vh;

  padding: 35px 3.5% 55px;

  background: #F0F4FF;

  position: relative;
  overflow: hidden;
}

/* Decorative Background */

.digital-presence-section::before {
  content: "";

  position: absolute;

  width: 850px;
  height: 850px;

  border: 1px solid rgba(37, 99, 235, 0.045);

  border-radius: 50%;

  top: -500px;
  right: -100px;

  pointer-events: none;
}

.digital-presence-section::after {
  content: "";

  position: absolute;

  width: 700px;
  height: 700px;

  border: 1px solid rgba(37, 99, 235, 0.035);

  border-radius: 50%;

  bottom: -450px;
  left: 20%;

  pointer-events: none;
}

/* =================================
   HEADER
================================= */

.digital-header {
  position: relative;
  z-index: 2;

  max-width: 850px;

  margin-bottom: 70px;
}

.digital-header h1 {
  color: #292D35;

  font-size: 46px;

  line-height: 1.25;

  font-weight: 700;

  letter-spacing: -1.8px;
}

.digital-header h1 span {
  color: #2563EB;

  font-family: Georgia, serif;

  font-size: 43px;

  font-weight: 400;

  font-style: italic;

  letter-spacing: -1px;
}


/* =================================
   GRID
================================= */

.digital-grid {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;

  max-width: 1120px;

  margin: 0 auto;
}


/* =================================
   CARD
================================= */

.digital-card {
  min-height: 210px;

  padding: 30px 32px;

  background: #FFFFFF;

  border: 1px solid #E5E7EB;

  border-radius: 28px;

  transition: all 0.3s ease;
}

.digital-card:hover {
  transform: translateY(-5px);

  border-color: #BFDBFE;

  box-shadow:
    0 15px 35px rgba(37, 99, 235, 0.08);
}


/* =================================
   NUMBER
================================= */

.digital-number {
  display: block;

  margin-bottom: 18px;

  color: #2563EB;

  font-size: 11px;

  line-height: 1;

  font-weight: 700;

  font-family: Georgia, serif;

  letter-spacing: 0.5px;
}


/* =================================
   CARD TITLE
================================= */

.digital-card h3 {
  margin-bottom: 18px;

  color: #30343D;

  font-size: 15px;

  line-height: 1.4;

  font-weight: 700;

  letter-spacing: -0.3px;
}


/* =================================
   CARD DESCRIPTION
================================= */

.digital-card p {
  color: #858B96;

  font-size: 11px;

  line-height: 1.75;

  font-weight: 400;
}


/* =================================
   TABLET
================================= */

@media (max-width: 1000px) {

  .digital-presence-section {
    padding: 40px 5% 50px;
  }

  .digital-header {
    margin-bottom: 45px;
  }

  .digital-header h1 {
    font-size: 40px;
  }

  .digital-header h1 span {
    font-size: 37px;
  }

  .digital-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 22px;
  }
}


/* =================================
   MOBILE
================================= */

@media (max-width: 650px) {

  .digital-presence-section {
    padding: 35px 20px 45px;
  }

  .digital-header {
    margin-bottom: 35px;
  }

  .digital-header h1 {
    font-size: 32px;

    letter-spacing: -1px;
  }

  .digital-header h1 span {
    font-size: 30px;
  }

  .digital-grid {
    grid-template-columns: 1fr;

    gap: 18px;
  }

  .digital-card {
    min-height: auto;

    padding: 26px;

    border-radius: 24px;
  }

  .digital-number {
    font-size: 10px;

    margin-bottom: 15px;
  }

  .digital-card h3 {
    font-size: 15px;

    margin-bottom: 14px;
  }

  .digital-card p {
    font-size: 11px;

    line-height: 1.7;
  }
}

.pricing-section {
  width: 100%;
  min-height: 100vh;

  padding: 15px 5% 60px;

  background: #F0F4FF;

  position: relative;
  overflow: hidden;
}


/* =========================================
   BACKGROUND DECORATION
========================================= */

.pricing-section::before {
  content: "";

  position: absolute;

  width: 800px;
  height: 800px;

  border-radius: 50%;

  border: 1px solid rgba(37, 99, 235, 0.04);

  top: -560px;
  left: 50%;

  transform: translateX(-50%);

  pointer-events: none;
}

.pricing-section::after {
  content: "";

  position: absolute;

  width: 650px;
  height: 650px;

  border-radius: 50%;

  border: 1px solid rgba(37, 99, 235, 0.035);

  bottom: -500px;
  right: -150px;

  pointer-events: none;
}


/* =========================================
   HEADER
========================================= */

.pricing-header {
  position: relative;
  z-index: 2;

  text-align: center;

  margin-bottom: 48px;
}

.pricing-header h1 {
  color: #292D35;

  font-size: 27px;

  line-height: 1.3;

  font-weight: 700;

  letter-spacing: -1px;
}

.pricing-header h1 span {
  display: block;

  margin-top: 2px;

  color: #2563EB;

  font-family: Georgia, serif;

  font-size: 26px;

  font-weight: 400;

  font-style: italic;

  letter-spacing: -0.5px;
}


/* =========================================
   PRICING GRID
========================================= */

.pricing-grid {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 25px;

  max-width: 850px;

  margin: 0 auto;

  align-items: stretch;
}


/* =========================================
   PRICING CARD
========================================= */

.pricing-card {
  position: relative;

  min-height: 450px;

  padding: 36px 30px 30px;

  background: #FFFFFF;

  border: 1px solid #E5E7EB;

  border-radius: 30px;

  display: flex;

  flex-direction: column;

  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);

  border-color: #BFDBFE;

  box-shadow:
    0 18px 40px rgba(37, 99, 235, 0.09);
}


/* =========================================
   FEATURED GOLD CARD
========================================= */

.pricing-card.featured {
  border-color: #BFDBFE;

  box-shadow:
    0 12px 35px rgba(37, 99, 235, 0.06);
}

.pricing-card.featured:hover {
  border-color: #2563EB;

  box-shadow:
    0 20px 45px rgba(37, 99, 235, 0.12);
}


/* =========================================
   BEST VALUE
========================================= */

.best-value {
  position: absolute;

  top: 18px;
  right: 18px;

  padding: 5px 9px;

  border-radius: 20px;

  background: #EFF6FF;

  border: 1px solid #BFDBFE;

  color: #2563EB;

  font-size: 6px;

  font-weight: 700;

  letter-spacing: 0.8px;
}


/* =========================================
   PACKAGE LABEL
========================================= */

.package-label {
  margin-bottom: 12px;

  color: #2563EB;

  font-size: 7px;

  font-weight: 700;

  letter-spacing: 1.5px;

  text-transform: uppercase;
}


/* =========================================
   PLAN TITLE
========================================= */

.pricing-card h2 {
  margin-bottom: 17px;

  color: #30343D;

  font-size: 16px;

  line-height: 1.35;

  font-weight: 700;

  letter-spacing: -0.3px;
}


/* =========================================
   PRICE
========================================= */

.price {
  color: #292D35;

  font-size: 28px;

  line-height: 1.2;

  font-weight: 700;

  letter-spacing: -1px;
}

.price small {
  color: #9CA3AF;

  font-size: 6px;

  font-weight: 500;

  letter-spacing: 0;

  margin-left: 2px;
}


/* =========================================
   DIVIDER
========================================= */

.pricing-line {
  width: 100%;

  height: 1px;

  margin: 17px 0 17px;

  background: #E5E7EB;
}


/* =========================================
   FEATURES
========================================= */

.features {
  list-style: none;

  display: flex;

  flex-direction: column;

  gap: 10px;

  flex: 1;
}

.features li {
  position: relative;

  padding-left: 19px;

  color: #7B818C;

  font-size: 8.5px;

  line-height: 1.45;
}

.features li::before {
  content: "✓";

  position: absolute;

  left: 0;
  top: 0;

  color: #2563EB;

  font-size: 10px;

  font-weight: 600;
}


/* =========================================
   BUTTON
========================================= */

.pricing-btn {
  width: 100%;

  height: 34px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-top: 20px;

  border-radius: 20px;

  background: #2563EB;

  color: #FFFFFF;

  text-decoration: none;

  font-size: 7px;

  font-weight: 700;

  letter-spacing: 1px;

  transition: all 0.3s ease;
}

.pricing-btn:hover {
  background: #1D4ED8;

  transform: translateY(-2px);

  box-shadow:
    0 8px 18px rgba(37, 99, 235, 0.20);
}


/* =========================================
   DISABLED BUTTON
========================================= */

.pricing-btn.disabled {
  background: #E5E7EB;

  color: #FFFFFF;

  cursor: pointer;

  box-shadow: none;
}

.pricing-btn.disabled:hover {
  background: #DDE1E7;

  transform: none;

  box-shadow: none;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

  .pricing-section {
    padding: 40px 5% 50px;
  }

  .pricing-header {
    margin-bottom: 40px;
  }

  .pricing-header h1 {
    font-size: 25px;
  }

  .pricing-header h1 span {
    font-size: 24px;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);

    max-width: 650px;
  }

  .pricing-card {
    min-height: 440px;
  }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .pricing-section {
    padding: 35px 20px 45px;
  }

  .pricing-header {
    margin-bottom: 32px;
  }

  .pricing-header h1 {
    font-size: 23px;

    letter-spacing: -0.7px;
  }

  .pricing-header h1 span {
    font-size: 22px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;

    gap: 18px;

    max-width: 400px;
  }

  .pricing-card {
    min-height: auto;

    padding: 30px 25px 25px;

    border-radius: 25px;
  }

  .pricing-card h2 {
    font-size: 17px;
  }

  .price {
    font-size: 28px;
  }

  .features {
    gap: 9px;
  }

  .features li {
    font-size: 9px;
  }
}


.value-section {
  width: 100%;
  padding: 20px 2%;

  background: #FFFFFF;
}

.value-container {
  width: 100%;
  padding: 40px 38px;

  background: #FFFFFF;

  border: 1px solid #E5E7EB;

  border-radius: 30px;

  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.03);
}

.value-label {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-bottom: 20px;

  color: #9CA3AF;

  font-size: 7px;
  font-weight: 700;

  letter-spacing: 2.5px;
}

.value-label span {
  width: 24px;
  height: 1px;

  background: #2563EB;
}

.value-container h2 {
  margin-bottom: 25px;

  color: #292D35;

  font-size: 26px;
  line-height: 1.3;

  font-weight: 700;

  letter-spacing: -0.8px;
}

.value-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  column-gap: 80px;
  row-gap: 14px;
}

.value-item {
  display: flex;

  align-items: center;

  gap: 9px;

  color: #5F6672;

  font-size: 9px;

  line-height: 1.5;
}

.check {
  width: 12px;
  height: 12px;

  min-width: 12px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid #2563EB;

  border-radius: 50%;

  color: #2563EB;

  font-size: 7px;

  font-weight: 700;
}

@media (max-width: 900px) {

  .value-container {
    padding: 35px 30px;
  }

  .value-grid {
    grid-template-columns: repeat(2, 1fr);

    column-gap: 40px;
  }
}

@media (max-width: 600px) {

  .value-section {
    padding: 20px;
  }

  .value-container {
    padding: 28px 22px;

    border-radius: 24px;
  }

  .value-container h2 {
    font-size: 21px;
  }

  .value-grid {
    grid-template-columns: 1fr;

    gap: 12px;
  }
}


.portfolio-section {
  width: 100%;

  padding: 40px 2.5% 55px;

  background: #F0F4FF;

  position: relative;
  overflow: hidden;
}


/* =================================
   HEADER
================================= */

.portfolio-header {
  position: relative;
  z-index: 2;

  margin-bottom: 48px;
}

.portfolio-header h1 {
  color: #292D35;

  font-size: 36px;

  line-height: 1.2;

  font-weight: 700;

  letter-spacing: -1.5px;
}

.portfolio-header h1 span {
  color: #2563EB;

  font-family: Georgia, serif;

  font-size: 34px;

  font-weight: 400;

  font-style: italic;

  letter-spacing: -0.5px;
}

.portfolio-header p {
  margin-top: 14px;

  color: #858B96;

  font-size: 11px;

  line-height: 1.7;

  max-width: 650px;
}


/* =================================
   PORTFOLIO GRID
================================= */

.portfolio-grid {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 18px;

  width: 100%;
}


/* =================================
   PORTFOLIO CARD
================================= */

.portfolio-card {
  width: 100%;

  background: #FFFFFF;

  border: 1px solid #E5E7EB;

  border-radius: 20px;

  overflow: hidden;

  display: block;

  box-shadow:
    0 5px 15px rgba(37, 99, 235, 0.04);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-5px);

  border-color: #BFDBFE;

  box-shadow:
    0 15px 30px rgba(37, 99, 235, 0.10);
}


/* =================================
   IMAGE
================================= */

.portfolio-card img {
  width: 100%;
  height: auto;

  display: block;

  transition:
    transform 0.4s ease;
}

.portfolio-card:hover img {
  transform: scale(1.03);
}


/* =================================
   TABLET
================================= */

@media (max-width: 1000px) {

  .portfolio-section {
    padding: 35px 4% 50px;
  }

  .portfolio-header {
    margin-bottom: 35px;
  }

  .portfolio-header h1 {
    font-size: 32px;
  }

  .portfolio-header h1 span {
    font-size: 30px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);

    gap: 16px;
  }

  .portfolio-card {
    border-radius: 18px;
  }
}


/* =================================
   MOBILE
================================= */

@media (max-width: 650px) {

  .portfolio-section {
    padding: 30px 20px 45px;
  }

  .portfolio-header {
    margin-bottom: 28px;
  }

  .portfolio-header h1 {
    font-size: 29px;
  }

  .portfolio-header h1 span {
    font-size: 27px;
  }

  .portfolio-header p {
    font-size: 10px;

    margin-top: 10px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 12px;
  }

  .portfolio-card {
    border-radius: 14px;
  }
}


/* =================================
   SMALL MOBILE
================================= */

@media (max-width: 420px) {

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-card {
    border-radius: 16px;
  }
}


.marketing-section {
  width: 100%;
  min-height: 100vh;

  padding: 5px 5% 55px;

  background: #F0F4FF;

  position: relative;
  overflow: hidden;
}


/* =================================
   BACKGROUND DECORATION
================================= */

.marketing-section::before {
  content: "";

  position: absolute;

  width: 700px;
  height: 700px;

  border: 1px solid rgba(37, 99, 235, 0.05);

  border-radius: 50%;

  top: -420px;
  left: 15%;

  pointer-events: none;
}

.marketing-section::after {
  content: "";

  position: absolute;

  width: 800px;
  height: 800px;

  border: 1px solid rgba(37, 99, 235, 0.035);

  border-radius: 50%;

  bottom: -520px;
  right: -100px;

  pointer-events: none;
}


/* =================================
   HEADER
================================= */

.marketing-header {
  position: relative;

  z-index: 2;

  margin-bottom: 35px;
}

.marketing-header h1 {
  color: #292D35;

  font-size: 29px;

  line-height: 1.2;

  font-weight: 700;

  letter-spacing: -1px;
}

.marketing-header span {
  display: block;

  margin-top: 3px;

  color: #2563EB;

  font-family: Georgia, serif;

  font-size: 21px;

  font-weight: 400;

  font-style: italic;
}


/* =================================
   GRID
================================= */

.marketing-grid {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 16px;

  max-width: 1000px;

  margin: 0 auto;
}


/* =================================
   CARD
================================= */

.marketing-card {
  min-height: 185px;

  padding: 19px;

  background: #FFFFFF;

  border: 1px solid #E5E7EB;

  border-radius: 18px;

  transition: all 0.3s ease;
}

.marketing-card:hover {
  transform: translateY(-5px);

  border-color: #BFDBFE;

  box-shadow:
    0 14px 30px rgba(37, 99, 235, 0.08);
}


/* =================================
   ICON
================================= */

.marketing-icon {
  width: 30px;
  height: 30px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 13px;

  border-radius: 9px;

  background: #EFF6FF;

  border: 1px solid #BFDBFE;

  color: #2563EB;

  font-size: 14px;

  font-weight: 600;

  transition: all 0.3s ease;
}

.marketing-card:hover .marketing-icon {
  background: #2563EB;

  color: #FFFFFF;

  border-color: #2563EB;
}


/* =================================
   CARD TITLE
================================= */

.marketing-card h3 {
  margin-bottom: 10px;

  color: #30343D;

  font-size: 11px;

  line-height: 1.4;

  font-weight: 700;
}


/* =================================
   DESCRIPTION
================================= */

.marketing-card p {
  color: #858B96;

  font-size: 7.5px;

  line-height: 1.65;

  min-height: 65px;
}


/* =================================
   LINK
================================= */

.marketing-card a {
  display: inline-block;

  margin-top: 13px;

  color: #2563EB;

  font-size: 6px;

  font-weight: 700;

  letter-spacing: 1px;

  text-decoration: none;

  transition: all 0.3s ease;
}

.marketing-card a:hover {
  color: #1D4ED8;

  letter-spacing: 1.3px;
}


/* =================================
   TABLET
================================= */

@media (max-width: 900px) {

  .marketing-section {
    padding: 35px 4% 50px;
  }

  .marketing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .marketing-header h1 {
    font-size: 27px;
  }
}


/* =================================
   MOBILE
================================= */

@media (max-width: 600px) {

  .marketing-section {
    padding: 30px 20px 45px;
  }

  .marketing-header {
    margin-bottom: 28px;
  }

  .marketing-header h1 {
    font-size: 25px;
  }

  .marketing-header span {
    font-size: 20px;
  }

  .marketing-grid {
    grid-template-columns: 1fr;

    gap: 16px;
  }

  .marketing-card {
    min-height: auto;

    padding: 22px;

    border-radius: 20px;
  }

  .marketing-card h3 {
    font-size: 13px;
  }

  .marketing-card p {
    font-size: 10px;

    min-height: auto;
  }

  .marketing-card a {
    font-size: 7px;
  }
}

.choose-section {
  width: 100%;
  height: auto;
  min-height: 0;
  padding: 10px 4% 25px;
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
  margin: 0;
}

.choose-section::before,
.choose-section::after {
  display: none;
  content: none;
}

.choose-header {
  position: relative;
  z-index: 2;
  margin: 0 0 25px 0;
  padding: 0;
}

.choose-header h1 {
  margin: 0;
  color: #292D35;
  font-size: 25px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.8px;
}

.choose-header h1 span {
  display: block;
  margin-top: 2px;
  color: #2563EB;
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.3px;
}

.choose-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}

.choose-card {
  width: 100%;
  min-height: 145px;
  height: auto;
  padding: 20px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 17px;
  margin: 0;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.choose-card:hover {
  transform: translateY(-4px);
  border-color: #BFDBFE;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.08);
}

.choose-title {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 0 0 12px 0;
}

.choose-title>span {
  flex-shrink: 0;
  padding-top: 2px;
  color: #2563EB;
  font-size: 7px;
  line-height: 1.3;
  font-weight: 700;
}

.choose-title h3 {
  margin: 0;
  color: #30343D;
  font-size: 9px;
  line-height: 1.35;
  font-weight: 700;
}

.choose-card p {
  margin: 0;
  color: #858B96;
  font-size: 7px;
  line-height: 1.65;
  font-weight: 400;
}

@media (max-width: 900px) {
  .choose-section {
    padding: 25px 4% 25px;
  }

  .choose-header {
    margin-bottom: 25px;
  }

  .choose-header h1 {
    font-size: 27px;
  }

  .choose-header h1 span {
    font-size: 21px;
  }

  .choose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .choose-card {
    min-height: 145px;
  }
}

@media (max-width: 600px) {
  .choose-section {
    padding: 25px 20px 25px;
  }

  .choose-header {
    margin-bottom: 22px;
  }

  .choose-header h1 {
    font-size: 24px;
    letter-spacing: -0.6px;
  }

  .choose-header h1 span {
    font-size: 19px;
  }

  .choose-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .choose-card {
    min-height: auto;
    padding: 20px;
    border-radius: 18px;
  }

  .choose-title h3 {
    font-size: 11px;
  }

  .choose-card p {
    font-size: 8.5px;
    line-height: 1.65;
  }
}

@media (max-width: 400px) {
  .choose-section {
    padding: 20px 16px;
  }

  .choose-header h1 {
    font-size: 22px;
  }

  .choose-header h1 span {
    font-size: 18px;
  }

  .choose-card {
    padding: 18px;
  }
}

.choose-section+section {
  margin-top: 0 !important;
}

.choose-section {
  margin-bottom: 0 !important;
}

.stats-section {
  width: 100%;
  min-height: auto;
  padding: 20px 1.5% 45px;
  background: #F0F4FF;
  position: relative;
  overflow: hidden;
}

.stats-header {
  position: relative;
  z-index: 2;
  margin-bottom: 95px;
}

.stats-header h1 {
  color: #292D35;
  font-size: 54px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -2px;
}

.stats-header h1 span {
  color: #2563EB;
  font-family: Georgia, serif;
  font-size: 52px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -1px;
}

.stats-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 45px;

  width: 100%;
  max-width: 1700px;

  margin: 0 auto;
}

.stats-card {
  min-height: 335px;

  padding: 48px;

  background: #FFFFFF;

  border: 1px solid #E5E7EB;

  border-radius: 40px;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.stats-card:hover {
  transform: translateY(-5px);

  border-color: #BFDBFE;

  box-shadow:
    0 18px 40px rgba(37, 99, 235, 0.08);
}

.stats-card.featured {
  border-color: #BFDBFE;
}

.stats-icon {
  width: 60px;
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 30px;

  background: #EFF6FF;

  border: 1px solid #BFDBFE;

  border-radius: 18px;

  color: #2563EB;

  font-size: 29px;

  font-weight: 600;

  box-shadow:
    0 4px 10px rgba(37, 99, 235, 0.08);
}

.stats-card h2 {
  margin-bottom: 28px;

  color: #30343D;

  font-size: 24px;

  line-height: 1.3;

  font-weight: 700;

  letter-spacing: -0.7px;
}

.stats-card p {
  max-width: 520px;

  color: #858B96;

  font-size: 16px;

  line-height: 1.8;

  font-weight: 400;
}

@media (max-width: 1100px) {

  .stats-section {
    padding: 35px 4% 45px;
  }

  .stats-header {
    margin-bottom: 55px;
  }

  .stats-header h1 {
    font-size: 45px;
  }

  .stats-header h1 span {
    font-size: 43px;
  }

  .stats-grid {
    gap: 22px;
  }

  .stats-card {
    min-height: 300px;
    padding: 32px;
    border-radius: 30px;
  }

  .stats-card h2 {
    font-size: 21px;
  }

  .stats-card p {
    font-size: 14px;
  }
}

@media (max-width: 800px) {

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stats-card {
    min-height: auto;
  }
}

@media (max-width: 600px) {

  .stats-section {
    padding: 30px 20px 35px;
  }

  .stats-header {
    margin-bottom: 35px;
  }

  .stats-header h1 {
    font-size: 34px;
    letter-spacing: -1px;
  }

  .stats-header h1 span {
    font-size: 32px;
  }

  .stats-grid {
    gap: 16px;
  }

  .stats-card {
    padding: 27px;
    border-radius: 25px;
  }

  .stats-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 22px;
    border-radius: 14px;
    font-size: 23px;
  }

  .stats-card h2 {
    font-size: 19px;
    margin-bottom: 16px;
  }

  .stats-card p {
    font-size: 13px;
    line-height: 1.7;
  }
}


.training-section {
  width: 100%;
  padding: 20px 4% 30px;
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.training-section::before,
.training-section::after {
  display: none;
  content: none;
}

.training-header {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.training-header h1 {
  margin: 0;
  color: #292D35;
  font-size: 44px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -1.5px;
}

.training-header h1 span {
  color: #2563EB;
  font-family: Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.8px;
}

.training-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(5, 1fr);

  gap: 20px;

  width: 100%;
  max-width: 1500px;

  margin: 0 auto;
}

.training-card {
  width: 100%;
  height: 300px;
  min-height: 300px;

  padding: 28px 25px;

  background: #FFFFFF;

  border: 1px solid #DDE3EC;

  border-radius: 20px;

  display: flex;
  flex-direction: column;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.training-card:hover {
  transform: translateY(-4px);

  border-color: #BFDBFE;

  box-shadow:
    0 12px 25px rgba(37, 99, 235, 0.08);
}

.training-card.featured {
  border-color: #93C5FD;
}

.training-number {
  display: block;

  margin-bottom: 38px;

  color: #2563EB;

  font-family: Georgia, serif;

  font-size: 14px;

  line-height: 1;

  font-weight: 700;
}

.training-card h2 {
  margin: 0 0 22px;

  color: #292D35;

  font-size: 18px;

  line-height: 1.35;

  font-weight: 700;

  letter-spacing: -0.4px;
}

.training-card p {
  margin: 0;

  color: #7B8493;

  font-size: 12px;

  line-height: 1.75;

  font-weight: 400;
}

@media (max-width: 1250px) {

  .training-section {
    padding: 30px 4%;
  }

  .training-header {
    margin-bottom: 35px;
  }

  .training-header h1 {
    font-size: 38px;
  }

  .training-header h1 span {
    font-size: 36px;
  }

  .training-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .training-card {
    height: 280px;
    min-height: 280px;
  }
}

@media (max-width: 850px) {

  .training-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .training-card {
    height: 280px;
    min-height: 280px;
  }
}

@media (max-width: 600px) {

  .training-section {
    padding: 25px 18px 30px;
  }

  .training-header {
    margin-bottom: 28px;
  }

  .training-header h1 {
    font-size: 30px;
    letter-spacing: -1px;
  }

  .training-header h1 span {
    font-size: 28px;
  }

  .training-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .training-card {
    height: auto;
    min-height: 230px;

    padding: 24px;

    border-radius: 18px;
  }

  .training-number {
    margin-bottom: 28px;
    font-size: 13px;
  }

  .training-card h2 {
    margin-bottom: 15px;
    font-size: 18px;
  }

  .training-card p {
    font-size: 12px;
    line-height: 1.7;
  }
}


.learn-section {
  width: 100%;
  min-height: auto;
  padding: 10px 3% 35px;
  background: #F0F4FF;
  position: relative;
  overflow: hidden;
}

.learn-section::before,
.learn-section::after {
  display: none;
  content: none;
}

.learn-header {
  position: relative;
  z-index: 2;
  margin-bottom: 65px;
}

.learn-header h1 {
  margin: 0;
  color: #292D35;
  font-size: 48px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -1.8px;
}

.learn-header h1 span {
  color: #2563EB;
  font-family: Georgia, serif;
  font-size: 46px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -1px;
}

.learn-grid {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 28px 34px;

  width: 100%;
  max-width: 1300px;

  margin: 0 auto;
}

.learn-card {
  width: 100%;
  min-height: 250px;

  padding: 34px 36px;

  background: #FFFFFF;

  border: 1px solid #E5E7EB;

  border-radius: 28px;

  display: flex;
  flex-direction: column;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.learn-card:hover {
  transform: translateY(-5px);

  border-color: #BFDBFE;

  box-shadow:
    0 15px 30px rgba(37, 99, 235, 0.08);
}

.learn-card.featured {
  border-color: #BFDBFE;
}

.learn-icon {
  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 22px;

  background: #EFF6FF;

  border: 1px solid #BFDBFE;

  border-radius: 13px;

  color: #2563EB;

  font-size: 20px;

  font-weight: 600;

  box-shadow:
    0 3px 8px rgba(37, 99, 235, 0.06);

  transition: all 0.3s ease;
}

.learn-card:hover .learn-icon {
  background: #2563EB;
  border-color: #2563EB;
  color: #FFFFFF;
}

.learn-card h2 {
  margin: 0 0 18px;

  color: #30343D;

  font-size: 17px;

  line-height: 1.4;

  font-weight: 700;

  letter-spacing: -0.4px;
}

.learn-card p {
  margin: 0;

  color: #858B96;

  font-size: 11px;

  line-height: 1.75;

  font-weight: 400;
}

@media (max-width: 1100px) {

  .learn-section {
    padding: 30px 4% 35px;
  }

  .learn-header {
    margin-bottom: 45px;
  }

  .learn-header h1 {
    font-size: 40px;
  }

  .learn-header h1 span {
    font-size: 38px;
  }

  .learn-grid {
    gap: 20px;
  }

  .learn-card {
    min-height: 240px;
    padding: 28px;
  }
}

@media (max-width: 800px) {

  .learn-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .learn-header h1 {
    font-size: 35px;
  }

  .learn-header h1 span {
    font-size: 33px;
  }
}

@media (max-width: 600px) {

  .learn-section {
    padding: 25px 18px 30px;
  }

  .learn-header {
    margin-bottom: 30px;
  }

  .learn-header h1 {
    font-size: 30px;
    letter-spacing: -1px;
  }

  .learn-header h1 span {
    font-size: 28px;
  }

  .learn-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .learn-card {
    min-height: auto;
    padding: 25px;
    border-radius: 20px;
  }

  .learn-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 20px;
  }

  .learn-card h2 {
    font-size: 17px;
    margin-bottom: 14px;
  }

  .learn-card p {
    font-size: 12px;
    line-height: 1.7;
  }
}


.training-audience-section {
  width: 100%;
  min-height: auto;

  padding: 15px 4% 30px;

  background: #FFFFFF;

  position: relative;
  overflow: hidden;
}

.training-audience-section::before,
.training-audience-section::after {
  display: none;
  content: none;
}

.training-audience-header {
  position: relative;
  z-index: 2;

  margin-bottom: 65px;
}

.training-audience-header h1 {
  margin: 0;

  color: #292D35;

  font-size: 48px;

  line-height: 1.15;

  font-weight: 700;

  letter-spacing: -1.8px;
}

.training-audience-header h1 span {
  color: #2563EB;

  font-family: Georgia, serif;

  font-size: 46px;

  font-weight: 400;

  font-style: italic;

  letter-spacing: -1px;
}

.training-audience-grid {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 28px;

  width: 100%;

  max-width: 1300px;

  margin: 0 auto;
}

.audience-card {
  width: 100%;

  min-height: 240px;

  padding: 28px;

  background: #FFFFFF;

  border: 1px solid #E5E7EB;

  border-radius: 24px;

  display: flex;

  flex-direction: column;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.audience-card:hover {
  transform: translateY(-5px);

  border-color: #BFDBFE;

  box-shadow:
    0 14px 30px rgba(37, 99, 235, 0.08);
}

.audience-icon {
  width: 46px;
  height: 46px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 22px;

  background: #EFF6FF;

  border: 1px solid #BFDBFE;

  border-radius: 13px;

  color: #2563EB;

  font-size: 20px;

  font-weight: 600;

  box-shadow:
    0 3px 8px rgba(37, 99, 235, 0.06);
}

.audience-card:hover .audience-icon {
  background: #2563EB;

  border-color: #2563EB;

  color: #FFFFFF;
}

.audience-card h2 {
  margin: 0 0 16px;

  color: #30343D;

  font-size: 16px;

  line-height: 1.4;

  font-weight: 700;

  letter-spacing: -0.3px;
}

.audience-card p {
  margin: 0;

  color: #858B96;

  font-size: 10px;

  line-height: 1.75;

  font-weight: 400;
}

@media (max-width: 1100px) {

  .training-audience-section {
    padding: 30px 4% 35px;
  }

  .training-audience-header {
    margin-bottom: 45px;
  }

  .training-audience-header h1 {
    font-size: 40px;
  }

  .training-audience-header h1 span {
    font-size: 38px;
  }

  .training-audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 20px;
  }

  .audience-card {
    min-height: 230px;
  }
}

@media (max-width: 600px) {

  .training-audience-section {
    padding: 25px 18px 30px;
  }

  .training-audience-header {
    margin-bottom: 30px;
  }

  .training-audience-header h1 {
    font-size: 30px;

    letter-spacing: -1px;
  }

  .training-audience-header h1 span {
    font-size: 28px;
  }

  .training-audience-grid {
    grid-template-columns: 1fr;

    gap: 15px;
  }

  .audience-card {
    min-height: auto;

    padding: 25px;

    border-radius: 20px;
  }

  .audience-icon {
    width: 44px;
    height: 44px;

    margin-bottom: 20px;
  }

  .audience-card h2 {
    font-size: 17px;
  }

  .audience-card p {
    font-size: 12px;

    line-height: 1.7;
  }
}

.join-section {
  width: 100%;
  min-height: auto;
  padding: 20px 2.5% 35px;
  background: #F0F4FF;
  position: relative;
  overflow: hidden;
}

.join-section::before,
.join-section::after {
  display: none;
  content: none;
}

.join-header {
  position: relative;
  z-index: 2;
  margin-bottom: 55px;
}

.join-header h1 {
  margin: 0;
  color: #292D35;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -1.8px;
}

.join-header h1 span {
  color: #2563EB;
  font-family: Georgia, serif;
  font-size: 46px;
  line-height: 1.35;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -1px;
}

.join-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 25px;

  width: 100%;
  max-width: 1400px;

  margin: 0 auto;
}

.join-step {
  width: 100%;
  min-height: 230px;

  padding: 28px;

  background: #FFFFFF;

  border: 1px solid #E5E7EB;

  border-radius: 22px;

  display: flex;
  flex-direction: column;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.join-step:hover {
  transform: translateY(-4px);

  border-color: #BFDBFE;

  box-shadow:
    0 12px 28px rgba(37, 99, 235, 0.08);
}

.step-number {
  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 28px;

  background: #FFFFFF;

  border: 1px solid #BFDBFE;

  border-radius: 50%;

  color: #2563EB;

  font-size: 13px;

  font-weight: 700;

  box-shadow:
    0 3px 8px rgba(37, 99, 235, 0.06);
}

.join-step h2 {
  margin: 0 0 16px;

  color: #30343D;

  font-size: 16px;

  line-height: 1.4;

  font-weight: 700;

  letter-spacing: -0.3px;
}

.join-step p {
  margin: 0;

  color: #858B96;

  font-size: 10px;

  line-height: 1.75;

  font-weight: 400;

  max-width: 290px;
}

@media (max-width: 1100px) {

  .join-section {
    padding: 30px 4% 35px;
  }

  .join-header {
    margin-bottom: 40px;
  }

  .join-header h1 {
    font-size: 42px;
  }

  .join-header h1 span {
    font-size: 40px;
  }

  .join-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .join-step {
    min-height: 220px;
  }
}

@media (max-width: 600px) {

  .join-section {
    padding: 25px 18px 30px;
  }

  .join-header {
    margin-bottom: 30px;
  }

  .join-header h1 {
    font-size: 30px;
    letter-spacing: -1px;
  }

  .join-header h1 span {
    font-size: 28px;
  }

  .join-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .join-step {
    min-height: auto;
    padding: 24px;
    border-radius: 20px;
  }

  .step-number {
    width: 46px;
    height: 46px;
    margin-bottom: 20px;
    font-size: 12px;
  }

  .join-step h2 {
    font-size: 17px;
    margin-bottom: 12px;
  }

  .join-step p {
    max-width: 100%;
    font-size: 12px;
    line-height: 1.7;
  }
}

.tips-section {
  width: 100%;
  max-width: 100%;
  padding: 25px 4% 45px;
  margin: 0;
  background: #F0F4FF;
  overflow: hidden;
}

.tips-header {
  width: 100%;
  max-width: 100%;
  margin-bottom: 55px;
}

.tips-header h1 {
  width: 100%;
  max-width: 900px;
  margin: 0;

  color: #292D35;

  font-size: 48px;
  line-height: 1.15;

  font-weight: 700;
  letter-spacing: -1.8px;

  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tips-header h1 span {
  color: #2563EB;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 46px;
  font-weight: 400;
  font-style: italic;

  line-height: 1.25;
  letter-spacing: -0.8px;
}

.tips-grid {
  width: 100%;
  max-width: 1400px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 28px;

  align-items: stretch;
}

.tips-card {
  width: 100%;
  min-width: 0;

  min-height: 220px;

  padding: 30px 34px;

  background: #FFFFFF;

  border: 1px solid #DDE3EC;

  border-radius: 24px;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.tips-card:hover {
  transform: translateY(-4px);

  border-color: #BFDBFE;

  box-shadow:
    0 12px 28px rgba(37, 99, 235, 0.08);
}

.tips-icon {
  width: 44px;
  height: 44px;

  flex: 0 0 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 20px;

  background: #FFFFFF;

  border: 1px solid #BFDBFE;

  border-radius: 12px;

  color: #2563EB;

  font-size: 19px;
  font-weight: 600;

  box-shadow:
    0 3px 8px rgba(37, 99, 235, 0.06);
}

.tips-card:hover .tips-icon {
  background: #2563EB;
  border-color: #2563EB;
  color: #FFFFFF;
}

.tips-card h2 {
  width: 100%;
  margin: 0 0 16px;

  color: #30343D;

  font-size: 17px;
  line-height: 1.4;

  font-weight: 700;
  letter-spacing: -0.35px;

  overflow-wrap: break-word;
}

.tips-card p {
  width: 100%;
  max-width: 100%;

  margin: 0;

  color: #7B8493;

  font-size: 12px;
  line-height: 1.75;

  font-weight: 400;

  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Tablet */

@media (max-width: 1000px) {

  .tips-section {
    padding: 30px 4% 40px;
  }

  .tips-header {
    margin-bottom: 40px;
  }

  .tips-header h1 {
    font-size: 40px;
    max-width: 800px;
  }

  .tips-header h1 span {
    font-size: 38px;
  }

  .tips-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .tips-card {
    min-height: 220px;
    padding: 27px;
    border-radius: 22px;
  }

  .tips-card h2 {
    font-size: 16px;
  }

  .tips-card p {
    font-size: 11px;
  }
}

/* Mobile */

@media (max-width: 700px) {

  .tips-section {
    width: 100%;
    padding: 25px 18px 30px;
  }

  .tips-header {
    width: 100%;
    margin-bottom: 30px;
  }

  .tips-header h1 {
    width: 100%;
    max-width: 100%;

    font-size: 31px;
    line-height: 1.2;

    letter-spacing: -1px;
  }

  .tips-header h1 span {
    font-size: 29px;
    line-height: 1.3;
  }

  .tips-grid {
    width: 100%;

    grid-template-columns: 1fr;

    gap: 16px;
  }

  .tips-card {
    width: 100%;
    min-width: 0;
    min-height: auto;

    padding: 24px;

    border-radius: 20px;
  }

  .tips-icon {
    width: 42px;
    height: 42px;

    flex-basis: 42px;

    margin-bottom: 18px;
  }

  .tips-card h2 {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 13px;
  }

  .tips-card p {
    font-size: 12px;
    line-height: 1.7;
  }
}

/* Small Mobile */

@media (max-width: 400px) {

  .tips-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  .tips-header h1 {
    font-size: 27px;
  }

  .tips-header h1 span {
    font-size: 26px;
  }

  .tips-card {
    padding: 21px;
  }
}

.seo-section {
  width: 100%;
  min-height: auto;

  padding: 20px 3% 40px;

  background: #F0F4FF;

  position: relative;
  overflow: hidden;
}

.seo-header {
  width: 100%;
  margin-bottom: 65px;
}

.seo-header h1 {
  margin: 0;

  color: #292D35;

  font-size: 46px;

  line-height: 1.15;

  font-weight: 700;

  letter-spacing: -1.7px;
}

.seo-header h1 span {
  color: #2563EB;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 44px;

  font-weight: 400;

  font-style: italic;

  letter-spacing: -0.8px;
}

.seo-grid {
  width: 100%;
  max-width: 1400px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 30px 32px;
}

.seo-card {
  width: 100%;
  min-width: 0;

  min-height: 225px;

  padding: 30px 32px;

  background: #FFFFFF;

  border: 1px solid #DDE3EC;

  border-radius: 24px;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.seo-card:hover {
  transform: translateY(-5px);

  border-color: #BFDBFE;

  box-shadow:
    0 14px 30px rgba(37, 99, 235, 0.08);
}

.seo-icon {
  width: 42px;
  height: 42px;

  flex: 0 0 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 20px;

  background: #FFFFFF;

  border: 1px solid #BFDBFE;

  border-radius: 12px;

  color: #2563EB;

  font-size: 19px;

  font-weight: 600;

  box-shadow:
    0 3px 8px rgba(37, 99, 235, 0.07);

  transition: all 0.3s ease;
}

.seo-card:hover .seo-icon {
  background: #2563EB;

  border-color: #2563EB;

  color: #FFFFFF;
}

.seo-card h2 {
  width: 100%;

  margin: 0 0 16px;

  color: #30343D;

  font-size: 16px;

  line-height: 1.4;

  font-weight: 700;

  letter-spacing: -0.3px;

  overflow-wrap: break-word;
}

.seo-card p {
  width: 100%;

  margin: 0;

  color: #7B8493;

  font-size: 11px;

  line-height: 1.75;

  font-weight: 400;

  overflow-wrap: break-word;
}

/* Tablet */

@media (max-width: 1000px) {

  .seo-section {
    padding: 30px 4% 40px;
  }

  .seo-header {
    margin-bottom: 45px;
  }

  .seo-header h1 {
    font-size: 40px;
  }

  .seo-header h1 span {
    font-size: 38px;
  }

  .seo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 22px;
  }

  .seo-card {
    min-height: 220px;

    padding: 27px;

    border-radius: 22px;
  }
}

/* Mobile */

@media (max-width: 700px) {

  .seo-section {
    padding: 25px 18px 30px;
  }

  .seo-header {
    margin-bottom: 30px;
  }

  .seo-header h1 {
    font-size: 31px;

    line-height: 1.2;

    letter-spacing: -1px;
  }

  .seo-header h1 span {
    font-size: 29px;
  }

  .seo-grid {
    grid-template-columns: 1fr;

    gap: 16px;
  }

  .seo-card {
    min-height: auto;

    padding: 24px;

    border-radius: 20px;
  }

  .seo-icon {
    width: 42px;
    height: 42px;

    margin-bottom: 18px;
  }

  .seo-card h2 {
    font-size: 16px;

    margin-bottom: 13px;
  }

  .seo-card p {
    font-size: 12px;

    line-height: 1.7;
  }
}

/* Small Mobile */

@media (max-width: 400px) {

  .seo-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  .seo-header h1 {
    font-size: 28px;
  }

  .seo-header h1 span {
    font-size: 27px;
  }

  .seo-card {
    padding: 21px;
  }
}

.choose-section {
  width: 100%;
  min-height: auto;

  padding: 20px 3% 35px;

  background: #FFFFFF;

  position: relative;
  overflow: hidden;
}

.choose-section::before,
.choose-section::after {
  display: none;
  content: none;
}

.choose-header {
  width: 100%;
  margin-bottom: 65px;
}

.choose-header h1 {
  margin: 0;

  color: #292D35;

  font-size: 46px;

  line-height: 1.15;

  font-weight: 700;

  letter-spacing: -1.7px;
}

.choose-header h1 span {
  color: #2563EB;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 44px;

  font-weight: 400;

  font-style: italic;

  letter-spacing: -0.8px;
}

.choose-grid {
  width: 100%;

  max-width: 1400px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 28px;
}

.choose-card {
  width: 100%;

  min-width: 0;

  min-height: 215px;

  padding: 28px;

  background: #FFFFFF;

  border: 1px solid #DDE3EC;

  border-radius: 24px;

  display: flex;

  flex-direction: column;

  overflow: hidden;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.choose-card:hover {
  transform: translateY(-5px);

  border-color: #BFDBFE;

  box-shadow:
    0 14px 30px rgba(37, 99, 235, 0.08);
}

.choose-icon {
  width: 42px;

  height: 42px;

  flex: 0 0 42px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 20px;

  background: #FFFFFF;

  border: 1px solid #BFDBFE;

  border-radius: 12px;

  color: #2563EB;

  font-size: 18px;

  font-weight: 600;

  box-shadow:
    0 3px 8px rgba(37, 99, 235, 0.06);

  transition: all 0.3s ease;
}

.choose-card:hover .choose-icon {
  background: #2563EB;

  border-color: #2563EB;

  color: #FFFFFF;
}

.choose-card h2 {
  width: 100%;

  margin: 0 0 16px;

  color: #30343D;

  font-size: 16px;

  line-height: 1.4;

  font-weight: 700;

  letter-spacing: -0.3px;

  overflow-wrap: break-word;
}

.choose-card p {
  width: 100%;

  margin: 0;

  color: #7B8493;

  font-size: 11px;

  line-height: 1.75;

  font-weight: 400;

  overflow-wrap: break-word;
}

/* Tablet */

@media (max-width: 1000px) {

  .choose-section {
    padding: 30px 4% 40px;
  }

  .choose-header {
    margin-bottom: 45px;
  }

  .choose-header h1 {
    font-size: 40px;
  }

  .choose-header h1 span {
    font-size: 38px;
  }

  .choose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 22px;
  }

  .choose-card {
    min-height: 220px;

    padding: 27px;

    border-radius: 22px;
  }
}

/* Mobile */

@media (max-width: 700px) {

  .choose-section {
    padding: 25px 18px 30px;
  }

  .choose-header {
    margin-bottom: 30px;
  }

  .choose-header h1 {
    color: #292D35;
    font-size: 46px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -1.7px;
  }

  .choose-grid {
    grid-template-columns: 1fr;

    gap: 16px;
  }

  .choose-card {
    min-height: auto;

    padding: 24px;

    border-radius: 20px;
  }

  .choose-icon {
    width: 42px;

    height: 42px;

    margin-bottom: 18px;
  }

  .choose-card h2 {
    font-size: 16px;

    margin-bottom: 13px;
  }

  .choose-card p {
    font-size: 12px;

    line-height: 1.7;
  }
}

.smm-section {
  width: 100%;
  padding: 20px 4% 40px;
  background: #F0F4FF;
  overflow: hidden;
}

.smm-header {
  width: 100%;
  margin-bottom: 65px;
}

.smm-header h1 {
  margin: 0;
  color: #292D35;
  font-size: 46px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -1.7px;
}

.smm-header h1 span {
  display: block;
  margin-top: 5px;

  color: #2563EB;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 44px;
  font-weight: 400;
  font-style: italic;

  line-height: 1.25;
  letter-spacing: -0.8px;
}

.smm-grid {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 30px 32px;
}

.smm-card {
  width: 100%;
  min-width: 0;
  min-height: 265px;

  padding: 32px;

  background: #FFFFFF;

  border: 1px solid #DDE3EC;

  border-radius: 24px;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.smm-card:hover {
  transform: translateY(-5px);

  border-color: #BFDBFE;

  box-shadow:
    0 14px 30px rgba(37, 99, 235, 0.08);
}

.smm-icon {
  width: 42px;
  height: 42px;

  flex: 0 0 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 20px;

  background: #FFFFFF;

  border: 1px solid #BFDBFE;

  border-radius: 12px;

  color: #2563EB;

  font-size: 19px;
  font-weight: 600;

  box-shadow:
    0 3px 8px rgba(37, 99, 235, 0.07);

  transition: all 0.3s ease;
}

.smm-card:hover .smm-icon {
  background: #2563EB;
  border-color: #2563EB;
  color: #FFFFFF;
}

.smm-card h2 {
  width: 100%;

  margin: 0 0 16px;

  color: #30343D;

  font-size: 16px;
  line-height: 1.4;

  font-weight: 700;

  letter-spacing: -0.3px;

  overflow-wrap: break-word;
}

.smm-card p {
  width: 100%;

  margin: 0;

  color: #7B8493;

  font-size: 11px;

  line-height: 1.75;

  font-weight: 400;

  overflow-wrap: break-word;
}

/* Tablet */

@media (max-width: 1000px) {

  .smm-section {
    padding: 30px 4% 40px;
  }

  .smm-header {
    margin-bottom: 45px;
  }

  .smm-header h1 {
    font-size: 40px;
  }

  .smm-header h1 span {
    font-size: 38px;
  }

  .smm-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .smm-card {
    min-height: 230px;
    padding: 27px;
    border-radius: 22px;
  }
}

/* Mobile */

@media (max-width: 700px) {

  .smm-section {
    padding: 25px 18px 30px;
  }

  .smm-header {
    margin-bottom: 30px;
  }

  .smm-header h1 {
    font-size: 31px;
    line-height: 1.2;
    letter-spacing: -1px;
  }

  .smm-header h1 span {
    font-size: 29px;
  }

  .smm-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .smm-card {
    min-height: auto;
    padding: 24px;
    border-radius: 20px;
  }

  .smm-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
  }

  .smm-card h2 {
    font-size: 16px;
    margin-bottom: 13px;
  }

  .smm-card p {
    font-size: 12px;
    line-height: 1.7;
  }
}

/* Small Mobile */

@media (max-width: 400px) {

  .smm-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  .smm-header h1 {
    font-size: 28px;
  }

  .smm-header h1 span {
    font-size: 27px;
  }

  .smm-card {
    padding: 21px;
  }
}

.smm-partner-section {
  width: 100%;
  padding: 20px 3.5% 40px;

  background: #FFFFFF;

  position: relative;
  overflow: hidden;
}

.smm-partner-header {
  width: 100%;
  max-width: 900px;

  margin-bottom: 65px;
}

.smm-partner-header h1 {
  margin: 0;

  color: #292D35;

  font-size: 46px;
  line-height: 1.2;

  font-weight: 700;

  letter-spacing: -1.7px;
}

.smm-partner-header h1 span {
  color: #2563EB;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 44px;

  font-weight: 400;
  font-style: italic;

  letter-spacing: -0.8px;
}

.smm-partner-header p {
  max-width: 760px;

  margin-top: 20px;

  color: #7B8493;

  font-size: 12px;
  line-height: 1.8;

  font-weight: 400;
}

.smm-partner-grid {
  width: 100%;
  max-width: 1400px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 30px 32px;
}

.smm-partner-card {
  width: 100%;
  min-width: 0;

  min-height: 215px;

  padding: 28px 32px;

  background: #FFFFFF;

  border: 1px solid #DDE3EC;

  border-radius: 24px;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.smm-partner-card:hover {
  transform: translateY(-5px);

  border-color: #BFDBFE;

  box-shadow:
    0 14px 30px rgba(37, 99, 235, 0.08);
}

.smm-partner-icon {
  width: 42px;
  height: 42px;

  flex: 0 0 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 19px;

  background: #FFFFFF;

  border: 1px solid #BFDBFE;

  border-radius: 12px;

  color: #2563EB;

  font-size: 19px;

  font-weight: 600;

  box-shadow:
    0 3px 8px rgba(37, 99, 235, 0.07);

  transition: all 0.3s ease;
}

.smm-partner-card:hover .smm-partner-icon {
  background: #2563EB;

  border-color: #2563EB;

  color: #FFFFFF;
}

.smm-partner-card h2 {
  width: 100%;

  margin: 0 0 15px;

  color: #30343D;

  font-size: 16px;

  line-height: 1.4;

  font-weight: 700;

  letter-spacing: -0.3px;

  overflow-wrap: break-word;
}

.smm-partner-card p {
  width: 100%;

  margin: 0;

  color: #7B8493;

  font-size: 11px;

  line-height: 1.75;

  font-weight: 400;

  overflow-wrap: break-word;
}

/* Tablet */

@media (max-width: 1000px) {

  .smm-partner-section {
    padding: 30px 4% 40px;
  }

  .smm-partner-header {
    margin-bottom: 45px;
  }

  .smm-partner-header h1 {
    font-size: 40px;
  }

  .smm-partner-header h1 span {
    font-size: 38px;
  }

  .smm-partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 22px;
  }

  .smm-partner-card {
    min-height: 220px;

    padding: 27px;

    border-radius: 22px;
  }
}

/* Mobile */

@media (max-width: 700px) {

  .smm-partner-section {
    padding: 25px 18px 30px;
  }

  .smm-partner-header {
    margin-bottom: 30px;
  }

  .smm-partner-header h1 {
    font-size: 31px;

    line-height: 1.2;

    letter-spacing: -1px;
  }

  .smm-partner-header h1 span {
    display: block;

    margin-top: 4px;

    font-size: 29px;
  }

  .smm-partner-header p {
    font-size: 12px;

    line-height: 1.7;

    margin-top: 15px;
  }

  .smm-partner-grid {
    grid-template-columns: 1fr;

    gap: 16px;
  }

  .smm-partner-card {
    min-height: auto;

    padding: 24px;

    border-radius: 20px;
  }

  .smm-partner-icon {
    width: 42px;
    height: 42px;

    margin-bottom: 18px;
  }

  .smm-partner-card h2 {
    font-size: 16px;

    margin-bottom: 13px;
  }

  .smm-partner-card p {
    font-size: 12px;

    line-height: 1.7;
  }
}

/* Small Mobile */

@media (max-width: 400px) {

  .smm-partner-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  .smm-partner-header h1 {
    font-size: 28px;
  }

  .smm-partner-header h1 span {
    font-size: 27px;
  }

  .smm-partner-card {
    padding: 21px;
  }
}

.google-ads-section {
  width: 100%;
  padding: 20px 3.5% 40px;
  background: #F0F4FF;
  position: relative;
  overflow: hidden;
}

.google-ads-header {
  width: 100%;
  margin-bottom: 65px;
}

.google-ads-header h1 {
  margin: 0;
  color: #292D35;
  font-size: 46px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -1.7px;
}

.google-ads-header h1 span {
  color: #2563EB;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.8px;
}

.google-ads-grid {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 30px 32px;
}

.google-ads-card {
  width: 100%;
  min-width: 0;
  min-height: 225px;

  padding: 30px 32px;

  background: #FFFFFF;

  border: 1px solid #DDE3EC;

  border-radius: 24px;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.google-ads-card:hover {
  transform: translateY(-5px);

  border-color: #BFDBFE;

  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.08);
}

.google-ads-icon {
  width: 42px;
  height: 42px;

  flex: 0 0 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 20px;

  background: #FFFFFF;

  border: 1px solid #BFDBFE;

  border-radius: 12px;

  color: #2563EB;

  font-size: 19px;
  font-weight: 600;

  box-shadow: 0 3px 8px rgba(37, 99, 235, 0.07);

  transition: all 0.3s ease;
}

.google-ads-card:hover .google-ads-icon {
  background: #2563EB;
  border-color: #2563EB;
  color: #FFFFFF;
}

.google-ads-card h2 {
  width: 100%;

  margin: 0 0 16px;

  color: #30343D;

  font-size: 16px;
  line-height: 1.4;

  font-weight: 700;

  letter-spacing: -0.3px;

  overflow-wrap: break-word;
}

.google-ads-card p {
  width: 100%;

  margin: 0;

  color: #7B8493;

  font-size: 11px;

  line-height: 1.75;

  font-weight: 400;

  overflow-wrap: break-word;
}

/* Tablet */

@media (max-width: 1000px) {

  .google-ads-section {
    padding: 30px 4% 40px;
  }

  .google-ads-header {
    margin-bottom: 45px;
  }

  .google-ads-header h1 {
    font-size: 40px;
  }

  .google-ads-header h1 span {
    font-size: 38px;
  }

  .google-ads-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .google-ads-card {
    min-height: 220px;
    padding: 27px;
    border-radius: 22px;
  }
}

/* Mobile */

@media (max-width: 700px) {

  .google-ads-section {
    padding: 25px 18px 30px;
  }

  .google-ads-header {
    margin-bottom: 30px;
  }

  .google-ads-header h1 {
    font-size: 31px;
    line-height: 1.2;
    letter-spacing: -1px;
  }

  .google-ads-header h1 span {
    font-size: 29px;
  }

  .google-ads-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .google-ads-card {
    min-height: auto;
    padding: 24px;
    border-radius: 20px;
  }

  .google-ads-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
  }

  .google-ads-card h2 {
    font-size: 16px;
    margin-bottom: 13px;
  }

  .google-ads-card p {
    font-size: 12px;
    line-height: 1.7;
  }
}

/* Small Mobile */

@media (max-width: 400px) {

  .google-ads-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  .google-ads-header h1 {
    font-size: 28px;
  }

  .google-ads-header h1 span {
    font-size: 27px;
  }

  .google-ads-card {
    padding: 21px;
  }
}

.approach-section {
  width: 100%;
  padding: 25px 4% 40px;
  background: #FFFFFF;
  overflow: hidden;
}

.approach-header {
  width: 100%;
  max-width: 850px;
  margin-bottom: 65px;
}

.approach-header h1 {
  margin: 0;
  color: #292D35;
  font-size: 46px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -1.7px;
}

.approach-header h1 span {
  color: #2563EB;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.8px;
}

.approach-grid {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 30px 32px;
}

.approach-card {
  width: 100%;
  min-width: 0;
  min-height: 215px;

  padding: 28px 30px;

  background: #FFFFFF;

  border: 1px solid #DDE3EC;

  border-radius: 24px;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.approach-card:hover {
  transform: translateY(-5px);

  border-color: #BFDBFE;

  box-shadow:
    0 14px 30px rgba(37, 99, 235, 0.08);
}

.approach-icon {
  width: 42px;
  height: 42px;

  flex: 0 0 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 19px;

  background: #FFFFFF;

  border: 1px solid #BFDBFE;

  border-radius: 12px;

  color: #2563EB;

  font-size: 19px;
  font-weight: 600;

  box-shadow:
    0 3px 8px rgba(37, 99, 235, 0.07);

  transition: all 0.3s ease;
}

.approach-card:hover .approach-icon {
  background: #2563EB;
  border-color: #2563EB;
  color: #FFFFFF;
}

.approach-card h2 {
  width: 100%;

  margin: 0 0 15px;

  color: #30343D;

  font-size: 15px;
  line-height: 1.4;

  font-weight: 700;

  letter-spacing: -0.25px;

  overflow-wrap: break-word;
}

.approach-card p {
  width: 100%;

  margin: 0;

  color: #7B8493;

  font-size: 11px;

  line-height: 1.75;

  font-weight: 400;

  overflow-wrap: break-word;
}

/* Tablet */

@media (max-width: 1100px) {

  .approach-section {
    padding: 30px 4% 40px;
  }

  .approach-header {
    margin-bottom: 45px;
  }

  .approach-header h1 {
    font-size: 40px;
  }

  .approach-header h1 span {
    font-size: 38px;
  }

  .approach-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .approach-card {
    min-height: 220px;
    padding: 27px;
    border-radius: 22px;
  }
}

/* Mobile */

@media (max-width: 700px) {

  .approach-section {
    padding: 25px 18px 30px;
  }

  .approach-header {
    margin-bottom: 30px;
  }

  .approach-header h1 {
    font-size: 31px;
    line-height: 1.2;
    letter-spacing: -1px;
  }

  .approach-header h1 span {
    display: block;
    margin-top: 4px;
    font-size: 29px;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .approach-card {
    min-height: auto;
    padding: 24px;
    border-radius: 20px;
  }

  .approach-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
  }

  .approach-card h2 {
    font-size: 16px;
    margin-bottom: 13px;
  }

  .approach-card p {
    font-size: 12px;
    line-height: 1.7;
  }
}

/* Small Mobile */

@media (max-width: 400px) {

  .approach-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  .approach-header h1 {
    font-size: 28px;
  }

  .approach-header h1 span {
    font-size: 27px;
  }

  .approach-card {
    padding: 21px;
  }
}

.works-section {
  width: 100%;
  padding: 20px 4% 40px;
  background: #F0F4FF;
  overflow: hidden;
}

.works-header {
  width: 100%;
  margin-bottom: 65px;
}

.works-header h1 {
  margin: 0;
  color: #292D35;

  font-size: 46px;
  line-height: 1.15;

  font-weight: 700;
  letter-spacing: -1.7px;
}

.works-header h1 span {
  color: #2563EB;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 44px;
  font-weight: 400;
  font-style: italic;

  letter-spacing: -0.8px;
}

.works-grid {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;

  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 30px 32px;
}

.works-card {
  width: 100%;
  min-width: 0;

  min-height: 245px;

  padding: 32px;

  background: #FFFFFF;

  border: 1px solid #DDE3EC;

  border-radius: 24px;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.works-card:hover {
  transform: translateY(-5px);

  border-color: #BFDBFE;

  box-shadow:
    0 14px 30px rgba(37, 99, 235, 0.08);
}

.works-icon {
  width: 42px;
  height: 42px;

  flex: 0 0 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 20px;

  background: #FFFFFF;

  border: 1px solid #BFDBFE;

  border-radius: 12px;

  color: #2563EB;

  font-size: 19px;
  font-weight: 600;

  box-shadow:
    0 3px 8px rgba(37, 99, 235, 0.07);

  transition: all 0.3s ease;
}

.works-card:hover .works-icon {
  background: #2563EB;
  border-color: #2563EB;
  color: #FFFFFF;
}

.works-card h2 {
  width: 100%;

  margin: 0 0 16px;

  color: #30343D;

  font-size: 16px;
  line-height: 1.4;

  font-weight: 700;

  letter-spacing: -0.3px;

  overflow-wrap: break-word;
}

.works-card p {
  width: 100%;

  margin: 0;

  color: #7B8493;

  font-size: 11px;

  line-height: 1.75;

  font-weight: 400;

  overflow-wrap: break-word;
}

/* Tablet */

@media (max-width: 1000px) {

  .works-section {
    padding: 30px 4% 40px;
  }

  .works-header {
    margin-bottom: 45px;
  }

  .works-header h1 {
    font-size: 40px;
  }

  .works-header h1 span {
    font-size: 38px;
  }

  .works-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .works-card {
    min-height: 230px;
    padding: 27px;
    border-radius: 22px;
  }
}

/* Mobile */

@media (max-width: 700px) {

  .works-section {
    padding: 25px 18px 30px;
  }

  .works-header {
    margin-bottom: 30px;
  }

  .works-header h1 {
    font-size: 31px;
    line-height: 1.2;
    letter-spacing: -1px;
  }

  .works-header h1 span {
    font-size: 29px;
  }

  .works-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .works-card {
    min-height: auto;
    padding: 24px;
    border-radius: 20px;
  }

  .works-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
  }

  .works-card h2 {
    font-size: 16px;
    margin-bottom: 13px;
  }

  .works-card p {
    font-size: 12px;
    line-height: 1.7;
  }
}

/* Small Mobile */

@media (max-width: 400px) {

  .works-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  .works-header h1 {
    font-size: 28px;
  }

  .works-header h1 span {
    font-size: 27px;
  }

  .works-card {
    padding: 21px;
  }
}