/*
Theme Name: Stuff By Two Child
Theme URI: https://stuffbytwo.com
Description: Divi child theme styles for Stuff By Two dark glassmorphism redesign.
Author: Stuff By Two
Author URI: https://stuffbytwo.com
Template: Divi
Version: 1.0.1
*/

/* =========================================================
   STUFF BY TWO — GLOBAL DESIGN SYSTEM
   ========================================================= */

:root {
  --sb2-black: #08030d;
  --sb2-deep: #16061d;
  --sb2-plum: #2a0a3a;
  --sb2-purple: #580b7c;
  --sb2-violet: #9b22ff;
  --sb2-magenta: #c13cff;
  --sb2-lavender: #d8b4ff;
  --sb2-white: #ffffff;
  --sb2-muted: #b9a9c7;
  --sb2-soft: #f4e9ff;

  --sb2-glass: rgba(255, 255, 255, 0.055);
  --sb2-glass-strong: rgba(255, 255, 255, 0.085);
  --sb2-glass-border: rgba(216, 180, 255, 0.22);
  --sb2-glass-border-soft: rgba(216, 180, 255, 0.15);

  --sb2-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
  --sb2-shadow-strong: 0 34px 96px rgba(0, 0, 0, 0.38);
  --sb2-glow: 0 0 34px rgba(155, 34, 255, 0.22);

  --sb2-radius-sm: 14px;
  --sb2-radius-md: 22px;
  --sb2-radius-lg: 28px;
  --sb2-radius-xl: 36px;

  --sb2-transition: all 0.25s ease;
}

/* =========================================================
   BASE / BODY
   ========================================================= */

html {
  scroll-behavior: smooth;
}

body {
  background: var(--sb2-black);
  color: var(--sb2-white);
}

body,
.et_pb_text,
.et_pb_button,
input,
textarea,
select {
  font-family: "Inter", "Instrument Sans", Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.et_pb_text h1,
.et_pb_text h2,
.et_pb_text h3,
.et_pb_text h4,
.et_pb_text h5,
.et_pb_text h6 {
  color: var(--sb2-white);
  letter-spacing: -0.035em;
}

p,
.et_pb_text p,
.et_pb_blurb_description,
.et_pb_toggle_content,
.et_pb_contact_field_options_title {
  color: var(--sb2-muted);
}

a {
  color: var(--sb2-lavender);
  transition: var(--sb2-transition);
}

a:hover {
  color: var(--sb2-magenta);
}

.et_pb_button::after {
  line-height: inherit !important;
}

img {
  max-width: 100%;
  height: auto;
}

/* =========================================================
   GLOBAL BACKGROUND HELPERS
   ========================================================= */

.sb2-bg-main {
  background:
    radial-gradient(circle at 82% 12%, rgba(155, 34, 255, 0.34), transparent 32%),
    radial-gradient(circle at 16% 60%, rgba(193, 60, 255, 0.16), transparent 34%),
    linear-gradient(180deg, #08030d 0%, #16061d 50%, #2a0a3a 100%) !important;
}

.sb2-bg-gradient {
  background-image: linear-gradient(180deg, #16061d 0%, #580b7c 100%) !important;
}

.sb2-bg-dark {
  background:
    radial-gradient(circle at 50% 0%, rgba(155, 34, 255, 0.22), transparent 35%),
    linear-gradient(180deg, #16061d 0%, #08030d 100%) !important;
}

.sb2-bg-soft-glow {
  background:
    radial-gradient(circle at 20% 20%, rgba(193, 60, 255, 0.14), transparent 32%),
    radial-gradient(circle at 80% 60%, rgba(155, 34, 255, 0.18), transparent 34%),
    linear-gradient(180deg, #08030d 0%, #16061d 100%) !important;
}

/* =========================================================
   GLOBAL DIVI ROW WIDTH / COLUMN SPLIT HELPERS
   Apply these classes to the ROW.
   Start with a standard two-column row in Divi.
   ========================================================= */

.sb2-split-55-45,
.sb2-split-58-42,
.sb2-split-52-48,
.sb2-split-60-40,
.sb2-split-70-30 {
  display: flex;
  align-items: center;
  gap: 0;
}

/* 55 / 45 visual split */
.sb2-split-55-45 .et_pb_column:first-child {
  width: 55% !important;
  margin-right: 4% !important;
}

.sb2-split-55-45 .et_pb_column:last-child {
  width: 41% !important;
  margin-right: 0 !important;
}

/* 58 / 42 visual split */
.sb2-split-58-42 .et_pb_column:first-child {
  width: 58% !important;
  margin-right: 4% !important;
}

.sb2-split-58-42 .et_pb_column:last-child {
  width: 38% !important;
  margin-right: 0 !important;
}

/* 52 / 48 visual split */
.sb2-split-52-48 .et_pb_column:first-child {
  width: 52% !important;
  margin-right: 4% !important;
}

.sb2-split-52-48 .et_pb_column:last-child {
  width: 44% !important;
  margin-right: 0 !important;
}

/* 60 / 40 visual split */
.sb2-split-60-40 .et_pb_column:first-child {
  width: 60% !important;
  margin-right: 4% !important;
}

.sb2-split-60-40 .et_pb_column:last-child {
  width: 36% !important;
  margin-right: 0 !important;
}

/* 70 / 30 visual split */
.sb2-split-70-30 .et_pb_column:first-child {
  width: 70% !important;
  margin-right: 4% !important;
}

.sb2-split-70-30 .et_pb_column:last-child {
  width: 26% !important;
  margin-right: 0 !important;
}

/* Reverse splits for sections where the visual side should be larger */
.sb2-split-45-55 {
  display: flex;
  align-items: center;
  gap: 0;
}

.sb2-split-45-55 .et_pb_column:first-child {
  width: 41% !important;
  margin-right: 4% !important;
}

.sb2-split-45-55 .et_pb_column:last-child {
  width: 55% !important;
  margin-right: 0 !important;
}

/* =========================================================
   GLOBAL GLASSMORPHISM
   ========================================================= */

.sb2-glass,
.sb2-glass-panel,
.sb2-card,
.sb2-work-card,
.sb2-project-card,
.sb2-pricing-card,
.sb2-service-price-card,
.sb2-feature-card,
.sb2-case-card {
  background: var(--sb2-glass);
  border: 1px solid var(--sb2-glass-border-soft);
  border-radius: var(--sb2-radius-lg);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow:
    var(--sb2-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.sb2-glass-panel,
.sb2-card {
  padding: clamp(24px, 4vw, 36px);
}

.sb2-card-hover,
.sb2-work-card,
.sb2-project-card,
.sb2-pricing-card,
.sb2-service-price-card,
.sb2-feature-card,
.sb2-case-card {
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.sb2-card-hover:hover,
.sb2-work-card:hover,
.sb2-project-card:hover,
.sb2-pricing-card:hover,
.sb2-service-price-card:hover,
.sb2-feature-card:hover,
.sb2-case-card:hover {
  transform: translateY(-7px);
  border-color: rgba(193, 60, 255, 0.52);
  box-shadow:
    var(--sb2-shadow-strong),
    var(--sb2-glow);
}

/* =========================================================
   GLOBAL TYPOGRAPHY HELPERS
   ========================================================= */

.sb2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sb2-magenta);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid rgba(216, 180, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.sb2-gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #c13cff 45%, #9b22ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sb2-hero-heading h1,
.sb2-hero-heading {
  font-size: clamp(52px, 7vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  color: var(--sb2-white);
  font-weight: 800;
}

.sb2-page-heading h1,
.sb2-page-heading {
  font-size: clamp(46px, 6vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.sb2-section-heading h2,
.sb2-section-heading {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.sb2-lead,
.sb2-lead p {
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
  color: var(--sb2-soft);
}

.sb2-small-muted,
.sb2-small-muted p {
  color: var(--sb2-muted);
  font-size: 14px;
}

/* =========================================================
   GLOBAL BUTTONS
   ========================================================= */

.sb2-btn-primary,
.et_pb_button.sb2-btn-primary {
  background: linear-gradient(135deg, #9b22ff 0%, #c13cff 100%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(216, 180, 255, 0.3) !important;
  border-radius: 12px !important;
  padding: 14px 24px !important;
  font-weight: 800 !important;
  box-shadow: 0 16px 38px rgba(155, 34, 255, 0.34);
  transition: var(--sb2-transition);
}

.sb2-btn-primary:hover,
.et_pb_button.sb2-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(155, 34, 255, 0.48);
}

.sb2-btn-secondary,
.et_pb_button.sb2-btn-secondary {
  background: rgba(255, 255, 255, 0.045) !important;
  color: #ffffff !important;
  border: 1px solid rgba(216, 180, 255, 0.22) !important;
  border-radius: 12px !important;
  padding: 14px 24px !important;
  font-weight: 800 !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: var(--sb2-transition);
}

.sb2-btn-secondary:hover,
.et_pb_button.sb2-btn-secondary:hover {
  background: rgba(193, 60, 255, 0.12) !important;
  border-color: rgba(193, 60, 255, 0.55) !important;
}

/* =========================================================
   DIVI HEADER / NAVIGATION
   ========================================================= */

.sb2-glass-header {
  background: rgba(22, 6, 29, 0.68) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(216, 180, 255, 0.18);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
  margin: 18px auto;
  max-width: 1180px;
  width: 92%;
  z-index: 999;
}

.sb2-glass-header .et_pb_menu__menu > nav > ul > li > a,
.sb2-glass-header .et_pb_menu__menu > nav > ul > li.current-menu-item > a {
  color: rgba(255, 255, 255, 0.82) !important;
  font-weight: 700;
}

.sb2-glass-header .et_pb_menu__menu > nav > ul > li > a:hover {
  color: var(--sb2-magenta) !important;
}

.sb2-glass-header .et_pb_menu .et_mobile_nav_menu {
  color: #ffffff;
}

.sb2-glass-header .mobile_menu_bar::before {
  color: #ffffff !important;
}

/* =========================================================
   FOOTER
   ========================================================= */

.sb2-footer {
  background: #08030d !important;
  border-top: 1px solid rgba(216, 180, 255, 0.14);
}

.sb2-footer h1,
.sb2-footer h2,
.sb2-footer h3,
.sb2-footer h4 {
  color: #ffffff;
}

.sb2-footer p,
.sb2-footer a,
.sb2-footer li {
  color: var(--sb2-muted);
}

.sb2-footer a:hover {
  color: var(--sb2-magenta);
}

/* =========================================================
   HOMEPAGE
   ========================================================= */

.sb2-hero-section {
  min-height: 88vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 80% 12%, rgba(155, 34, 255, 0.34), transparent 32%),
    radial-gradient(circle at 18% 60%, rgba(193, 60, 255, 0.16), transparent 34%),
    linear-gradient(180deg, #08030d 0%, #16061d 48%, #2a0a3a 100%) !important;
  overflow: hidden;
  position: relative;
}

.sb2-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0%, transparent 42%, rgba(155, 34, 255, 0.12) 42%, rgba(155, 34, 255, 0.12) 58%, transparent 58%),
    linear-gradient(45deg, transparent 0%, transparent 62%, rgba(255, 255, 255, 0.04) 62%, rgba(255, 255, 255, 0.04) 72%, transparent 72%);
  pointer-events: none;
}

.sb2-featured-panel {
  position: relative;
  border-radius: var(--sb2-radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(216, 180, 255, 0.26);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.38),
    0 0 42px rgba(155, 34, 255, 0.26);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: rotate(3deg);
}

.sb2-floating-card {
  background: rgba(42, 10, 58, 0.62);
  border: 1px solid rgba(216, 180, 255, 0.28);
  border-radius: var(--sb2-radius-md);
  padding: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.sb2-trust-strip {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sb2-panel-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(193, 60, 255, 0.14), transparent 32%),
    radial-gradient(circle at 80% 60%, rgba(155, 34, 255, 0.18), transparent 34%),
    linear-gradient(180deg, #08030d 0%, #16061d 100%) !important;
}

.sb2-cta-section {
  background: #08030d !important;
}

.sb2-cta-box {
  background:
    radial-gradient(circle at 15% 50%, rgba(193, 60, 255, 0.28), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
  border: 1px solid rgba(216, 180, 255, 0.24);
  border-radius: 30px;
  padding: clamp(30px, 5vw, 56px);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.36),
    0 0 38px rgba(155, 34, 255, 0.18);
}

/* =========================================================
   WORK PAGE
   ========================================================= */

.sb2-work-hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 82% 20%, rgba(155, 34, 255, 0.36), transparent 32%),
    radial-gradient(circle at 15% 62%, rgba(193, 60, 255, 0.16), transparent 34%),
    linear-gradient(180deg, #08030d 0%, #16061d 50%, #2a0a3a 100%) !important;
  overflow: hidden;
  position: relative;
}

.sb2-work-filter {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.sb2-work-filter a,
.sb2-work-filter .et_pb_button {
  background: rgba(255, 255, 255, 0.055) !important;
  color: #ffffff !important;
  border: 1px solid rgba(216, 180, 255, 0.22) !important;
  border-radius: 999px !important;
  padding: 10px 16px !important;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.sb2-work-filter a:hover,
.sb2-work-filter .et_pb_button:hover {
  background: rgba(193, 60, 255, 0.16) !important;
  border-color: rgba(193, 60, 255, 0.55) !important;
}

.sb2-featured-work-section,
.sb2-gallery-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(155, 34, 255, 0.2), transparent 35%),
    linear-gradient(180deg, #16061d 0%, #08030d 100%) !important;
}

.sb2-feature-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--sb2-radius-lg);
  padding: 28px;
  min-height: 340px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035));
  border: 1px solid rgba(216, 180, 255, 0.24);
}

.sb2-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 15%, rgba(193, 60, 255, 0.22), transparent 36%);
  pointer-events: none;
}

.sb2-work-card {
  height: 100%;
  overflow: hidden;
}

.sb2-work-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.sb2-work-card .et_pb_text,
.sb2-work-card .sb2-card-inner {
  padding-left: 22px;
  padding-right: 22px;
}

.sb2-work-card h3 {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 8px;
}

.sb2-work-card p {
  color: var(--sb2-muted);
  font-size: 15px;
}

.sb2-work-tag,
.sb2-tag {
  display: inline-flex;
  align-items: center;
  width: auto;
  padding: 6px 10px;
  margin: 0 6px 6px 0;
  border-radius: 999px;
  background: rgba(193, 60, 255, 0.13);
  border: 1px solid rgba(216, 180, 255, 0.18);
  color: var(--sb2-lavender);
  font-size: 12px;
  font-weight: 700;
}

.sb2-coming-soon-card {
  opacity: 0.72;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  border: 1px dashed rgba(216, 180, 255, 0.24);
  border-radius: 24px;
  padding: 34px;
  text-align: center;
}

/* =========================================================
   SERVICES PAGE
   ========================================================= */

.sb2-services-hero {
  min-height: 76vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 78% 18%, rgba(193, 60, 255, 0.28), transparent 34%),
    radial-gradient(circle at 18% 72%, rgba(155, 34, 255, 0.18), transparent 36%),
    linear-gradient(180deg, #08030d 0%, #16061d 52%, #2a0a3a 100%) !important;
}

.sb2-services-overview,
.sb2-pricing-section,
.sb2-faq-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(155, 34, 255, 0.16), transparent 32%),
    linear-gradient(180deg, #16061d 0%, #08030d 100%) !important;
}

.sb2-service-mini-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(216, 180, 255, 0.16);
  border-radius: 22px;
  padding: 24px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: var(--sb2-transition);
}

.sb2-service-mini-card:hover {
  transform: translateY(-5px);
  border-color: rgba(193, 60, 255, 0.46);
}

.sb2-service-mini-card h3 {
  color: #ffffff;
  font-size: 22px;
}

.sb2-service-mini-card p {
  color: var(--sb2-muted);
  font-size: 15px;
}

.sb2-pricing-card {
  height: 100%;
  padding: 34px;
}

.sb2-pricing-card-featured {
  border-color: rgba(193, 60, 255, 0.64);
  background:
    radial-gradient(circle at 80% 0%, rgba(193, 60, 255, 0.18), transparent 32%),
    rgba(255, 255, 255, 0.07);
}

.sb2-pricing-card h3 {
  color: #ffffff;
  font-size: 28px;
}

.sb2-price {
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.04em;
}

.sb2-price-note {
  color: var(--sb2-muted);
  font-size: 14px;
}

.sb2-pricing-card ul {
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.sb2-pricing-card li {
  color: var(--sb2-lavender);
  margin-bottom: 11px;
}

.sb2-pricing-card li::before {
  content: "✦";
  color: var(--sb2-magenta);
  margin-right: 8px;
}

.sb2-service-price-card {
  height: 100%;
  padding: 26px;
}

.sb2-service-price-card h3 {
  color: #ffffff;
  font-size: 22px;
}

.sb2-service-price-card p {
  color: var(--sb2-muted);
}

.sb2-service-price-card .sb2-from-price,
.sb2-from-price {
  display: inline-block;
  margin: 10px 0 16px;
  color: #ffffff;
  font-weight: 900;
  font-size: 24px;
}

.sb2-support-card {
  height: 100%;
  background:
    radial-gradient(circle at 80% 0%, rgba(193, 60, 255, 0.14), transparent 32%),
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(216, 180, 255, 0.18);
  border-radius: 24px;
  padding: 28px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* Divi Toggle FAQ styling */
.sb2-faq-section .et_pb_toggle {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(216, 180, 255, 0.16) !important;
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 14px;
}

.sb2-faq-section .et_pb_toggle_title {
  color: #ffffff !important;
}

.sb2-faq-section .et_pb_toggle_content {
  color: var(--sb2-muted) !important;
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */

.sb2-about-hero {
  min-height: 76vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(155, 34, 255, 0.3), transparent 34%),
    radial-gradient(circle at 20% 70%, rgba(193, 60, 255, 0.15), transparent 34%),
    linear-gradient(180deg, #08030d 0%, #16061d 50%, #2a0a3a 100%) !important;
}

.sb2-about-card {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
  border: 1px solid rgba(216, 180, 255, 0.22);
  border-radius: 30px;
  padding: clamp(28px, 4vw, 44px);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: var(--sb2-shadow);
}

.sb2-values-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(193, 60, 255, 0.16), transparent 34%),
    linear-gradient(180deg, #16061d 0%, #08030d 100%) !important;
}

.sb2-value-card {
  height: 100%;
  padding: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(216, 180, 255, 0.16);
  border-radius: 24px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* =========================================================
   PROCESS PAGE
   ========================================================= */

.sb2-process-hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 82% 18%, rgba(193, 60, 255, 0.26), transparent 34%),
    linear-gradient(180deg, #08030d 0%, #16061d 55%, #2a0a3a 100%) !important;
}

.sb2-process-section {
  background:
    radial-gradient(circle at 18% 20%, rgba(193, 60, 255, 0.13), transparent 32%),
    radial-gradient(circle at 82% 64%, rgba(155, 34, 255, 0.18), transparent 36%),
    linear-gradient(180deg, #16061d 0%, #08030d 100%) !important;
}

.sb2-process-step {
  position: relative;
  padding: 30px;
  background: rgba(255, 255, 255, 0.052);
  border: 1px solid rgba(216, 180, 255, 0.18);
  border-radius: 26px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.sb2-step-number {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9b22ff, #c13cff);
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(155, 34, 255, 0.34);
}

/* =========================================================
   BLOG PAGE / POSTS
   ========================================================= */

.sb2-blog-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 76% 20%, rgba(155, 34, 255, 0.26), transparent 34%),
    linear-gradient(180deg, #08030d 0%, #16061d 55%, #2a0a3a 100%) !important;
}

.sb2-blog-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(193, 60, 255, 0.15), transparent 34%),
    linear-gradient(180deg, #16061d 0%, #08030d 100%) !important;
}

/* Divi Blog Module */
.sb2-blog-section .et_pb_post {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(216, 180, 255, 0.16);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--sb2-shadow);
  transition: var(--sb2-transition);
}

.sb2-blog-section .et_pb_post:hover {
  transform: translateY(-7px);
  border-color: rgba(193, 60, 255, 0.52);
  box-shadow:
    var(--sb2-shadow-strong),
    var(--sb2-glow);
}

.sb2-blog-section .et_pb_post .entry-title,
.sb2-blog-section .et_pb_post .entry-title a {
  color: #ffffff !important;
}

.sb2-blog-section .et_pb_post .post-meta,
.sb2-blog-section .et_pb_post .post-meta a,
.sb2-blog-section .et_pb_post .post-content,
.sb2-blog-section .et_pb_post p {
  color: var(--sb2-muted) !important;
}

.sb2-blog-section .more-link {
  color: var(--sb2-magenta) !important;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 13px;
}

/* Single blog posts */
.single-post #main-content {
  background: #08030d;
}

.single-post .entry-title {
  color: #ffffff;
}

.single-post .post-meta,
.single-post .post-meta a,
.single-post .entry-content p,
.single-post .entry-content li {
  color: var(--sb2-muted);
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */

.sb2-contact-hero {
  min-height: 68vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(193, 60, 255, 0.28), transparent 34%),
    radial-gradient(circle at 16% 70%, rgba(155, 34, 255, 0.16), transparent 36%),
    linear-gradient(180deg, #08030d 0%, #16061d 52%, #2a0a3a 100%) !important;
}

.sb2-contact-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(155, 34, 255, 0.16), transparent 34%),
    linear-gradient(180deg, #16061d 0%, #08030d 100%) !important;
}

.sb2-contact-card {
  padding: clamp(28px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(216, 180, 255, 0.18);
  border-radius: 30px;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: var(--sb2-shadow);
}

/* Divi Contact Form */
.sb2-contact-card .et_pb_contact_field input,
.sb2-contact-card .et_pb_contact_field textarea,
.sb2-contact-card .et_pb_contact_field select {
  background: rgba(255, 255, 255, 0.065) !important;
  border: 1px solid rgba(216, 180, 255, 0.18) !important;
  border-radius: 14px !important;
  color: #ffffff !important;
  padding: 16px !important;
}

.sb2-contact-card .et_pb_contact_field input::placeholder,
.sb2-contact-card .et_pb_contact_field textarea::placeholder {
  color: rgba(255, 255, 255, 0.48) !important;
}

.sb2-contact-card .et_pb_contact_field input:focus,
.sb2-contact-card .et_pb_contact_field textarea:focus,
.sb2-contact-card .et_pb_contact_field select:focus {
  border-color: rgba(193, 60, 255, 0.58) !important;
  box-shadow: 0 0 0 3px rgba(193, 60, 255, 0.12);
}

.sb2-contact-card .et_contact_bottom_container {
  float: none;
  margin-top: 16px;
}

.sb2-contact-card .et_pb_contact_submit {
  background: linear-gradient(135deg, #9b22ff 0%, #c13cff 100%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(216, 180, 255, 0.3) !important;
  border-radius: 12px !important;
  padding: 14px 24px !important;
  font-weight: 800 !important;
}

/* =========================================================
   CASE STUDY TEMPLATE
   ========================================================= */

.sb2-case-hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 78% 18%, rgba(155, 34, 255, 0.32), transparent 34%),
    radial-gradient(circle at 18% 70%, rgba(193, 60, 255, 0.14), transparent 36%),
    linear-gradient(180deg, #08030d 0%, #16061d 52%, #2a0a3a 100%) !important;
}

.sb2-case-overview {
  background:
    radial-gradient(circle at 50% 0%, rgba(193, 60, 255, 0.16), transparent 34%),
    linear-gradient(180deg, #16061d 0%, #08030d 100%) !important;
}

.sb2-case-card {
  padding: clamp(26px, 4vw, 40px);
}

.sb2-case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sb2-case-meta span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(193, 60, 255, 0.13);
  border: 1px solid rgba(216, 180, 255, 0.18);
  color: var(--sb2-lavender);
  font-size: 13px;
  font-weight: 700;
}

.sb2-case-gallery img {
  border-radius: 22px;
  border: 1px solid rgba(216, 180, 255, 0.16);
  box-shadow: var(--sb2-shadow);
}

/* =========================================================
   DIVI MODULE TWEAKS
   ========================================================= */

.sb2-glass-panel .et_pb_blurb_container h4,
.sb2-card .et_pb_blurb_container h4 {
  color: #ffffff;
}

.sb2-glass-panel .et_pb_main_blurb_image .et-pb-icon,
.sb2-card .et_pb_main_blurb_image .et-pb-icon {
  color: var(--sb2-magenta);
}

.sb2-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 180, 255, 0.26), transparent);
}

.sb2-list ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.sb2-list li {
  color: var(--sb2-lavender);
  margin-bottom: 10px;
}

.sb2-list li::before {
  content: "✦";
  color: var(--sb2-magenta);
  margin-right: 8px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 980px) {
  .sb2-split-55-45,
  .sb2-split-58-42,
  .sb2-split-52-48,
  .sb2-split-60-40,
  .sb2-split-70-30,
  .sb2-split-45-55 {
    display: block;
  }

  .sb2-split-55-45 .et_pb_column:first-child,
  .sb2-split-55-45 .et_pb_column:last-child,
  .sb2-split-58-42 .et_pb_column:first-child,
  .sb2-split-58-42 .et_pb_column:last-child,
  .sb2-split-52-48 .et_pb_column:first-child,
  .sb2-split-52-48 .et_pb_column:last-child,
  .sb2-split-60-40 .et_pb_column:first-child,
  .sb2-split-60-40 .et_pb_column:last-child,
  .sb2-split-70-30 .et_pb_column:first-child,
  .sb2-split-70-30 .et_pb_column:last-child,
  .sb2-split-45-55 .et_pb_column:first-child,
  .sb2-split-45-55 .et_pb_column:last-child {
    width: 100% !important;
    margin-right: 0 !important;
  }

  .sb2-featured-panel {
    transform: none;
    margin-top: 32px;
  }

  .sb2-hero-heading h1,
  .sb2-hero-heading {
    font-size: clamp(44px, 13vw, 68px);
  }

  .sb2-page-heading h1,
  .sb2-page-heading {
    font-size: clamp(42px, 12vw, 64px);
  }

  .sb2-glass-panel,
  .sb2-project-card,
  .sb2-work-card,
  .sb2-pricing-card,
  .sb2-service-price-card,
  .sb2-feature-card {
    margin-bottom: 24px;
  }

  .sb2-glass-header {
    width: 94%;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 16px;
  }

  .sb2-trust-strip {
    gap: 14px;
  }
}

@media (max-width: 767px) {
  .sb2-hero-section,
  .sb2-work-hero,
  .sb2-services-hero,
  .sb2-about-hero,
  .sb2-process-hero,
  .sb2-blog-hero,
  .sb2-contact-hero,
  .sb2-case-hero {
    min-height: auto;
    padding-top: 110px !important;
    padding-bottom: 70px !important;
  }

  .sb2-glass-panel,
  .sb2-card,
  .sb2-work-card,
  .sb2-project-card,
  .sb2-pricing-card,
  .sb2-service-price-card,
  .sb2-feature-card,
  .sb2-contact-card,
  .sb2-about-card,
  .sb2-case-card {
    border-radius: 22px;
  }

  .sb2-btn-primary,
  .et_pb_button.sb2-btn-primary,
  .sb2-btn-secondary,
  .et_pb_button.sb2-btn-secondary {
    width: 100%;
    text-align: center;
  }

  .sb2-work-filter {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 10px;
  }

  .sb2-work-filter a,
  .sb2-work-filter .et_pb_button {
    white-space: nowrap;
  }

  .sb2-price {
    font-size: 38px;
  }
}