:root {
  --orange:#f36b21;
  --blue:#126fd6;
  --dark:#101014;
  --text:#24242b;
  --muted:#6f7280;
  --soft:#f5f7fb;
  --line:#e9edf3;
  --cream:#fff8f2;
}

* {
  box-sizing:border-box;
}

body {
  font-family:Inter,system-ui,-apple-system,Segoe UI,sans-serif;
  color:var(--text);
  background:#fff;
  overflow-x:hidden;
}
h1,
h2,

h3 {
  font-weight:800;
  letter-spacing:-.04em;
  color:#15151c;
}

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

.site-nav {
  background:rgba(255,255,255,.86);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(0,0,0,.06);
  padding:14px 0;
}

.navbar-brand img {
  height:38px;
}

.nav-link {
  font-weight:700;
  font-size:14px;
  color:#222!important;
}

.btn-dm {
  background:var(--orange);
  border:0;
  color:#fff;
  font-weight:800;
  border-radius:999px;
  padding:13px 24px;
  box-shadow:0 12px 30px rgba(243,107,33,.25);
}

.btn-dm:hover {
  background:#d95712;
  color:#fff;
  transform:translateY(-1px);
}

.btn-outline-dm {
  border:1px solid #d8dce5;
  border-radius:999px;
  padding:13px 24px;
  font-weight:800;
  color:#15151c;
  background:#fff;
}

.btn-outline-dm:hover {
  border-color:var(--blue);
  color:var(--blue);
}

.btn-dm-light {
  background:#fff;
  color:var(--dark);
  font-weight:800;
  border-radius:999px;
  padding:13px 24px;
}

.section-pad {
  padding:110px 0;
}

.eyebrow {
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#397BC8;
  margin-bottom:14px;
}

.eyebrow:before {
  content:"";
  width:26px;
  height:2px;
  background:var(--orange);
  display:inline-block;
}

.eyebrow.light {
  color:#fff;
}

.eyebrow.light:before {
  background:#fff;
}

.hero-section {
  padding:160px 0 95px;
  background:#fff;
  position:relative;
}

.hero-title {
  font-size:clamp(42px,5.5vw,76px);
  line-height:1.02;
  margin-bottom:24px;
  max-width:760px;
}

.hero-title span {
  display:block;
  color:var(--orange);
  font-family:'Playfair Display',serif;
  font-weight:700;
  letter-spacing:-.02em;
}

.hero-text {
  font-size:18px;
  max-width:580px;
}

.hero-actions {
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:28px;
}

.hero-video-card {
  position:relative;
  border-radius:34px;
  overflow:hidden;
  background:#fff;
  padding:14px;
  box-shadow:0 30px 70px rgba(18,111,214,.16);
  border:1px solid #edf1f7;
  transform:rotate(1deg);
}

.hero-video-card video {
  display:block;
  width:100%;
  aspect-ratio:16/10;
  object-fit:cover;
  border-radius:24px;
}

.video-ribbon {
  position:absolute;
  z-index:2;
  left:-8px;
  top:34px;
  background:var(--dark);
  color:#fff;
  padding:10px 18px;
  border-radius:0 999px 999px 0;
  font-weight:900;
  font-size:13px;
  box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.blur-orb {
  position:absolute;
  border-radius:999px;
  filter:blur(38px);
  opacity:.18;
  pointer-events:none;
}

.orb-orange {
  width:260px;
  height:260px;
  background:var(--orange);
  right:8%;
  top:18%;
}

.orb-blue {
  width:230px;
  height:230px;
  background:var(--blue);
  left:4%;
  bottom:5%;
}

.bg-doodle {
  position:absolute;
  opacity:.06;
  inset:0;
  background-image:radial-gradient(circle at 1px 1px,#111 1px,transparent 0);
  background-size:26px 26px;
  mask-image:linear-gradient(to bottom,transparent,#000 30%,#000 70%,transparent);
}




/* ================================
   BRAND MARQUEE
================================ */

.text-marquee {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.text-marquee::before,
.text-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.text-marquee::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.text-marquee::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

.marquee-list {
  display: flex;
  align-items: center;
  gap: 90px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.marquee-list + .marquee-list {
  margin-left: 70px;
}

.marquee-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 600;
  color: #6c7280;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.marquee-list i {
  font-size: 18px;
  color: var(--orange);
  opacity: 0.86;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.marquee-list li:hover {
  color: var(--text);
}

.marquee-list li:hover i {
  color: var(--blue);
  opacity: 1;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.section-head {
  max-width:820px;
}
.section-head h2,
.services-section h2,
.about-preview h2,

.cta-panel h2 {
  font-size:clamp(32px,4vw,52px);
  line-height:1.1;
}

.approach-section {
  background:#ffffff;
  position:relative;
  padding-top:110px;
  padding-bottom:110px;
}

.approach-section .container{
  background:#031126;
  border-radius:42px;
  padding:70px 55px;
  box-shadow:0 30px 90px rgba(0,0,0,.08);
}

.approach-section .section-head h2,
.approach-section .section-head .eyebrow{
  color:#fff;
}


.presence-flow {
  max-width:1150px;
  margin:auto;
  background:transparent;
  border:none;
  border-radius:0;
  padding:20px 0 0;
  box-shadow:none;
  position:relative;
}

.presence-flow:before {display:none;}

.flow-grid {
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:16px;
}

.flow-node {
  background:rgba(255,255,255,.02);
  border:1px solid rgba(255,255,255,.08);
  border-radius:28px;
  padding:34px 18px;
  text-align:center;
  font-weight:800;
  color:#fff;
  position:relative;
  min-height:220px;
  backdrop-filter:blur(10px);
}

.flow-node i {
  display:flex;
  align-items:center;
  justify-content:center;
  width:96px;
  height:96px;
  margin:0 auto 22px;
  border-radius:50%;
  border:1px solid rgba(250,103,34,.45);
  font-size:38px;
  color:#fff;
}
.flow-node.main,

.flow-node.enquiry {
  max-width:210px;
  margin:auto;
  background:#101014;
  color:#fff;
}
.flow-node.main i,

.flow-node.enquiry i {
  color:var(--orange);
}

.flow-line {
  width:2px;
  height:40px;
  background:linear-gradient(var(--blue),var(--orange));
  margin:12px auto;
}

.service-card {
  display:block;
  height:100%;
  position:relative;
  padding:34px 28px;
  border-radius:28px;
  border:1px solid var(--line);
  background:#fff;
  text-decoration:none;
  color:inherit;
  overflow:hidden;
  transition:.25s ease;
  box-shadow:0 18px 50px rgba(16,16,20,.04);
}

.service-card:before {
  display:none;
}

.service-card:hover {
  background:#f3f8ff;
  border-color:#d8e7ff;
  color:var(--text);
  transform:translateY(-8px);
  box-shadow:0 24px 70px rgba(57,123,200,.14);
}


.service-card>* {
  position:relative;
}

.service-card i {
  font-size:34px;
  color:var(--orange);
  display:block;
  margin-bottom:22px;
}

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

.service-card p {
  font-size:14px;
}

.service-no {
  position:absolute;
  right:24px;
  top:18px;
  font-size:40px;
  font-weight:900;
  color:#eef1f6;
  line-height:1;
}

.card-link {
  font-weight:900;
  color:var(--blue);
  font-size:14px;
}

.section-side-text {
  max-width:520px;
  margin-left:auto;
}

.bg-soft {
  background:var(--soft);
}

.image-stack {
  position:relative;
  padding:0 0 42px 42px;
}

.main-img {
  border-radius:34px;
  box-shadow:0 30px 80px rgba(16,16,20,.14);
}

.floating-note {
  position:absolute;
  left:0;
  bottom:0;
  background:#fff;
  border-radius:22px;
  padding:18px 22px;
  box-shadow:0 20px 60px rgba(0,0,0,.12);
  border-left:5px solid var(--orange);
}

.cta-panel {
  background:radial-gradient(circle at 20% 20%,rgba(243,107,33,.25),transparent 28%),linear-gradient(135deg,#111218,#0d2a52);
  color:#fff;
  border-radius:38px;
  padding:60px;
  position:relative;
  overflow:hidden;
}

.cta-panel:after {
  content:"DIGIMITRA";
  position:absolute;
  right:-25px;
  bottom:-10px;
  font-size:96px;
  font-weight:900;
  letter-spacing:-.08em;
  color:rgba(255,255,255,.04);
}

.cta-panel h2 {
  color:#fff;
}

.cta-panel p {
  color:rgba(255,255,255,.76);
}
.form-control,

.form-select {
  border:0;
  border-radius:16px;
  padding:14px 16px;
  background:rgba(255,255,255,.95);
}

.site-footer {
  background:#111217;
  color:#b8bdc8;
  padding:80px 0 24px;
}

.site-footer h6 {
  color:#fff;
  font-weight:900;
  margin-bottom:18px;
}

.site-footer ul {
  list-style:none;
  padding:0;
  margin:0;
}

.site-footer a {
  color:#b8bdc8;
  text-decoration:none;
  display:block;
  margin-bottom:9px;
}

.site-footer a:hover {
  color:#fff;
}

.footer-logo {
  height:42px;
  background:#fff;
  border-radius:10px;
  padding:4px;
}

.footer-bottom {
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:24px;
  margin-top:50px;
  color:#777;
}

.inner-hero {
  padding:160px 0 90px;
  background:linear-gradient(180deg,#fff 0%,#f8fbff 100%);
  position:relative;
}

.inner-hero h1 {
  font-size:clamp(40px,5vw,68px);
  max-width:850px;
}

.inner-hero p {
  max-width:720px;
  font-size:18px;
}

.founder-quote {
  background:#fff;
  border-radius:34px;
  padding:44px;
  box-shadow:0 24px 70px rgba(16,16,20,.08);
  border:1px solid var(--line);
}

.founder-quote i {
  font-size:52px;
  color:var(--orange);
}

.founder-quote p {
  font-size:24px;
  color:#181820;
  line-height:1.5;
  font-weight:700;
  letter-spacing:-.03em;
}

.founder-quote span {
  font-weight:900;
  color:var(--blue);
}
.contact-card,

.side-panel {
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  padding:32px;
  box-shadow:0 20px 60px rgba(16,16,20,.06);
}

.contact-card {
  display:flex;
  gap:18px;
  align-items:flex-start;
  margin-top:30px;
}
.contact-card i,

.side-panel i {
  font-size:40px;
  color:var(--orange);
}

.check-list {
  list-style:none;
  padding:0;
}

.check-list li {
  margin:12px 0;
  padding-left:32px;
  position:relative;
}

.check-list li:before {
  content:"\F26E";
  font-family:"bootstrap-icons";
  position:absolute;
  left:0;
  color:var(--orange);
  font-weight:900;
}

.side-panel {
  position:sticky;
  top:110px;
}

.side-panel h3 {
  margin-top:18px;
}

@media(max-width:991px) {

  .section-pad {
    padding:78px 0;
  }

  .hero-section {
    padding:130px 0 70px;
  }

  .flow-grid {
    grid-template-columns:repeat(2,1fr);
  }

  .cta-panel {
    padding:36px 22px;
  }

  .image-stack {
    padding:0;
  }

  .floating-note {
    position:relative;
    margin-top:-30px;
    display:inline-block;
  }

  .section-side-text {
    margin-left:0;
  }

  .navbar-collapse {
    padding-top:18px;
  }

  .hero-video-card {
    transform:none;
  }
}

@media(max-width:575px) {

  .flow-grid {
    grid-template-columns:1fr;
  }

  .hero-actions .btn {
    width:100%;
  }

  .presence-flow {
  max-width:1150px;
  margin:auto;
  background:transparent;
  border:none;
  border-radius:0;
  padding:20px 0 0;
  box-shadow:none;
  position:relative;
}

  .hero-title {
    font-size:40px;
  }
}

/* ================================
   HOMEPAGE - V4 FINAL MIX
================================ */

.home-v3-hero {
  position:relative;
  overflow:hidden;
  background:#fff;
  padding:150px 0 96px;
}

.home-v3-hero:before {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,rgba(18,111,214,.045),transparent 40%,rgba(243,107,33,.055));
  pointer-events:none;
}

.home-v3-hero .container {
  position:relative;
  z-index:1;
}

.home-v3-hero h1 {
  font-size:clamp(42px,5vw,68px);
  line-height:1.08;
  font-weight:800;
  letter-spacing:-.05em;
  max-width:690px;
  margin-bottom:24px;
}

.hero-v3-lead {
  font-size:18px;
  max-width:620px;
  color:#555a66;
  line-height:1.85;
}

.hero-v3-note {
  font-weight:700;
  color:#24242b;
  background:#fff8f2;
  border-left:4px solid var(--orange);
  border-radius:0 18px 18px 0;
  padding:15px 18px;
  max-width:620px;
}

.hero-v3-points {
  display:flex;
  flex-wrap:wrap;
  gap:14px 20px;
}

.hero-v3-points span {
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:800;
  color:#333742;
  font-size:14px;
}

.hero-v3-points i {
  color:var(--blue);
}

.hero-video-frame {
  position:relative;
  border-radius:30px;
  background:#fff;
  padding:14px;
  border:1px solid var(--line);
  box-shadow:0 30px 80px rgba(18,111,214,.14);
  overflow:hidden;
}

.hero-video-frame video {
  display:block;
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
  border-radius:22px;
}

.video-caption {
  position:absolute;
  left:28px;
  top:28px;
  display:inline-flex;
  align-items:center;
  gap:9px;
  background:rgba(16,16,20,.86);
  color:#fff;
  border-radius:999px;
  padding:10px 16px;
  font-weight:900;
  font-size:13px;
  backdrop-filter:blur(10px);
}

.video-caption i {
  color:var(--orange);
}

.bg-darkish {
  background:#101014;
  position:relative;
  overflow:hidden;
}

.bg-darkish:before {
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 18% 30%,rgba(243,107,33,.18),transparent 28%),radial-gradient(circle at 90% 70%,rgba(18,111,214,.18),transparent 32%);
  pointer-events:none;
}

.bg-darkish .container {
  position:relative;
  z-index:1;
}

.section-title {
  font-size:clamp(32px,4vw,52px);
  line-height:1.1;
  font-weight:800;
  letter-spacing:-.04em;
}

.section-subtitle {
  font-size:17px;
  line-height:1.85;
}

.text-white-70 {
  color:rgba(255,255,255,.72)!important;
}

.experience-list {
  display:grid;
  gap:18px;
}

.experience-list div {
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:24px;
  padding:24px;
  display:flex;
  gap:18px;
  align-items:center;
}

.experience-list strong {
  min-width:92px;
  color:#fff;
  font-size:28px;
  font-weight:900;
  line-height:1;
}

.experience-list span {
  color:rgba(255,255,255,.75);
  font-weight:700;
}

.contact-v3-section {
  background:linear-gradient(180deg,#fff 0%,#f8fbff 100%);
}

.contact-mini-list {
  display:grid;
  gap:13px;
  margin-top:26px;
}

.contact-mini-list span {
  display:flex;
  gap:10px;
  align-items:center;
  font-weight:800;
  color:#303442;
}

.contact-mini-list i {
  color:var(--orange);
}

.contact-form-card {
  background:#fff;
  border:1px solid var(--line);
  border-radius:30px;
  padding:34px;
  box-shadow:0 22px 70px rgba(16,16,20,.08);
}
.contact-form-card .form-control,

.contact-form-card .form-select {
  background:#f6f8fc;
  border:1px solid #edf0f5;
  border-radius:16px;
}

.about-v3-section .btn-dm {
  box-shadow:none;
}

.nav-link.active {
  color:var(--orange)!important;
}

@media(max-width:991px) {

  .home-v3-hero {
    padding:128px 0 76px;
  }

  .hero-video-frame {
    margin-top:14px;
  }

  .experience-list strong {
    min-width:78px;
  }
}

@media(max-width:575px) {

  .home-v3-hero h1 {
    font-size:39px;
  }

  .hero-v3-points {
    display:grid;
  }

  .contact-form-card {
    padding:24px;
  }

  .experience-list div {
    align-items:flex-start;
    flex-direction:column;
  }

  .video-caption {
    left:24px;
    top:24px;
  }
}

/* ===== About page expanded layout ===== */

.about-page-hero {
  overflow:hidden;
}

.about-page-hero .container {
  z-index:1;
}

.about-hero-panel {
  background:#fff;
  border:1px solid var(--line);
  border-radius:30px;
  padding:32px;
  box-shadow:0 24px 70px rgba(16,16,20,.08);
  position:relative;
  overflow:hidden;
}

.about-hero-panel:before {
  content:"";
  position:absolute;
  right:-60px;
  top:-60px;
  width:160px;
  height:160px;
  background:rgba(243,107,33,.12);
  border-radius:50%;
}

.about-hero-panel i {
  font-size:44px;
  color:var(--orange);
  display:block;
  margin-bottom:20px;
}

.about-hero-panel h3 {
  font-size:24px;
  letter-spacing:-.03em;
}

.about-hero-panel p {
  margin-bottom:0;
  color:var(--muted);
  line-height:1.75;
}

.about-mini-stats {
  display:grid;
  gap:16px;
  margin-top:34px;
}

.about-mini-stats div {
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:22px;
  display:flex;
  gap:18px;
  align-items:center;
  box-shadow:0 16px 45px rgba(16,16,20,.04);
}

.about-mini-stats strong {
  min-width:82px;
  color:var(--orange);
  font-size:30px;
  font-weight:900;
  line-height:1;
}

.about-mini-stats span {
  font-weight:800;
  color:#383d48;
}

.about-copy-card {
  background:#fff;
  border:1px solid var(--line);
  border-radius:32px;
  padding:38px;
  box-shadow:0 24px 70px rgba(16,16,20,.06);
  border-top:5px solid var(--blue);
}

.about-copy-card p {
  font-size:17px;
  line-height:1.9;
  color:#4f5561;
}

.about-copy-card p:last-child {
  margin-bottom:0;
}

.about-quote-block {
  position:relative;
}

.about-quote-block span {
  display:block;
  color:var(--orange);
  font-size:18px;
}

.about-step-card {
  height:100%;
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  padding:30px;
  position:relative;
  overflow:hidden;
  box-shadow:0 18px 55px rgba(16,16,20,.05);
  transition:.25s ease;
}

.about-step-card:hover {
  transform:translateY(-7px);
  box-shadow:0 24px 70px rgba(16,16,20,.1);
  border-color:rgba(243,107,33,.35);
}

.about-step-card span {
  position:absolute;
  right:24px;
  top:18px;
  font-size:44px;
  line-height:1;
  font-weight:900;
  color:#eef1f6;
}

.about-step-card i {
  font-size:36px;
  color:var(--orange);
  display:block;
  margin-bottom:22px;
}

.about-step-card h3 {
  font-size:22px;
  margin-bottom:12px;
}

.about-step-card p {
  color:var(--muted);
  line-height:1.75;
  margin:0;
}

.industry-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}

.industry-grid span {
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.13);
  border-radius:22px;
  padding:20px;
  color:#fff;
  font-weight:800;
  display:flex;
  gap:12px;
  align-items:center;
}

.industry-grid i {
  color:var(--orange);
  font-size:24px;
}

.support-pill-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}

.support-pill-grid a {
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:20px;
  text-decoration:none;
  color:#222;
  font-weight:900;
  display:flex;
  align-items:center;
  gap:14px;
  box-shadow:0 16px 45px rgba(16,16,20,.04);
  transition:.25s ease;
}

.support-pill-grid a:hover {
  transform:translateY(-5px);
  border-color:rgba(18,111,214,.35);
  color:var(--blue);
  box-shadow:0 24px 65px rgba(16,16,20,.09);
}

.support-pill-grid i {
  font-size:26px;
  color:var(--orange);
}

.about-support-section {
  background:linear-gradient(180deg,#fff 0%,#f8fbff 100%);
}

@media(max-width:991px) {

  .about-copy-card {
    padding:28px;
  }
  .industry-grid,

  .support-pill-grid {
    grid-template-columns:1fr;
  }

  .about-mini-stats strong {
    min-width:72px;
  }

  .about-page-hero {
    padding-top:140px;
  }
}

@media(max-width:575px) {
  .about-hero-panel,

  .about-copy-card {
    border-radius:24px;
    padding:24px;
  }

  .about-mini-stats div {
    align-items:flex-start;
    flex-direction:column;
  }

  .about-step-card {
    padding:26px;
  }

  .about-step-card span {
    font-size:36px;
  }

  .founder-quote p {
    font-size:20px;
  }
}

/* ===== Services page expanded readable additions ===== */

.services-hero {
  position: relative;
  overflow: hidden;
  padding-top: 165px;
  background:
    radial-gradient(circle at 82% 28%, rgba(18, 111, 214, 0.10), transparent 28%),
    radial-gradient(circle at 12% 82%, rgba(243, 107, 33, 0.12), transparent 25%),
    #ffffff;
}

.services-hero h1 {
  max-width: 780px;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.05;
}

.services-hero-text {
  max-width: 680px;
  font-size: 18px;
}

.service-hero-panel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 38px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(16, 16, 20, 0.08);
  overflow: hidden;
}

.service-hero-panel::after {
  content: "DIGITAL";
  position: absolute;
  right: -18px;
  bottom: -18px;
  color: rgba(18, 111, 214, 0.06);
  font-size: 74px;
  font-weight: 900;
  letter-spacing: -0.08em;
}
.service-hero-panel h2,
.service-hero-panel p,

.service-hero-panel .panel-kicker {
  position: relative;
  z-index: 1;
}

.service-hero-panel h2 {
  font-size: 34px;
  line-height: 1.15;
  margin: 16px 0;
}

.panel-kicker {
  display: inline-flex;
  border-radius: 999px;
  background: var(--cream);
  color: var(--orange);
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 900;
}

.service-logic-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.service-logic-flow div {
  position: relative;
  min-height: 126px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #ffffff;
  padding: 22px 16px;
  text-align: center;
  box-shadow: 0 16px 45px rgba(16, 16, 20, 0.05);
}

.service-logic-flow div:not(:last-child)::after {
  content: "\F138";
  font-family: "bootstrap-icons";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--orange);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 13px;
  z-index: 2;
}

.service-logic-flow i {
  display: block;
  color: var(--blue);
  font-size: 30px;
  margin-bottom: 13px;
}

.service-logic-flow span {
  font-weight: 900;
  color: #171820;
}

.services-detail-section {
  background: #ffffff;
}

.service-detail-card {
  padding-bottom: 30px;
}

.service-detail-card ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 18px 0 22px;
}

.service-detail-card li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  color: #555b67;
  font-size: 14px;
  line-height: 1.5;
}

.service-detail-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.portal-clarity-section {
  color: #ffffff;
}

.clarity-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.clarity-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  padding: 28px;
  backdrop-filter: blur(10px);
}

.clarity-card.full {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 18px;
}

.clarity-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(243, 107, 33, 0.14);
  color: var(--orange);
  font-size: 28px;
  margin-bottom: 16px;
}

.clarity-card.full i {
  margin-bottom: 0;
  flex: 0 0 auto;
}

.clarity-card h3 {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 10px;
}

.clarity-card.full h3 {
  margin-bottom: 0;
}

.clarity-card p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0;
}

@media (max-width: 991px) {

  .services-hero {
    padding-top: 130px;
  }

  .service-logic-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-logic-flow div:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 575px) {

  .service-hero-panel {
    padding: 28px;
  }
  .service-logic-flow,

  .clarity-cards {
    grid-template-columns: 1fr;
  }

  .clarity-card.full {
    display: block;
  }

  .clarity-card.full i {
    margin-bottom: 16px;
  }
}

/* ===== Service detail pages expanded additions ===== */

.service-page-hero {
  position: relative;
  overflow: hidden;
  padding-top: 165px;
  background:
    radial-gradient(circle at 88% 24%, rgba(18, 111, 214, 0.12), transparent 30%),
    radial-gradient(circle at 10% 78%, rgba(243, 107, 33, 0.12), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.service-page-hero h1 {
  max-width: 820px;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.05;
}

.service-page-hero p {
  max-width: 720px;
  font-size: 18px;
}

.service-page-icon-panel {
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(243, 107, 33, 0.10), rgba(18, 111, 214, 0.10)),
    #ffffff;
  box-shadow: 0 28px 80px rgba(16, 16, 20, 0.08);
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-page-icon-panel::after {
  content: "SERVICE";
  position: absolute;
  right: -20px;
  bottom: -18px;
  color: rgba(16, 16, 20, 0.05);
  font-size: 78px;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.service-page-icon-panel i {
  position: relative;
  z-index: 1;
  width: 116px;
  height: 116px;
  border-radius: 32px;
  display: grid;
  place-items: center;
  background: #ffffff;
  color: var(--orange);
  font-size: 58px;
  box-shadow: 0 22px 60px rgba(16, 16, 20, 0.10);
}

.service-page-icon-panel span {
  position: absolute;
  left: 30px;
  top: 30px;
  z-index: 1;
  display: inline-flex;
  border-radius: 999px;
  background: #ffffff;
  color: var(--blue);
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 900;
}

.service-content-section p {
  font-size: 17px;
}

.service-highlight-box {
  border-left: 5px solid var(--orange);
  border-radius: 24px;
  background: #ffffff;
  padding: 28px;
  box-shadow: 0 18px 55px rgba(16, 16, 20, 0.06);
}

.service-highlight-box h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.service-highlight-box p {
  margin-bottom: 0;
}

.service-side-panel {
  border-top: 5px solid var(--orange);
}

.service-scope-list li {
  font-size: 16px;
  line-height: 1.65;
}

.service-help-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.service-help-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(16, 16, 20, 0.04);
}

.service-help-list i {
  color: var(--orange);
  font-size: 22px;
  flex: 0 0 auto;
}

.service-help-list span {
  color: #3a3f4b;
  font-weight: 700;
}

.related-services-section {
  background: #ffffff;
}

.related-service-card {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  color: var(--text);
  background: #ffffff;
  text-decoration: none;
  font-weight: 900;
  transition: 0.25s ease;
  box-shadow: 0 14px 38px rgba(16, 16, 20, 0.04);
}

.related-service-card:hover {
  color: var(--blue);
  border-color: rgba(18, 111, 214, 0.35);
  transform: translateY(-5px);
  box-shadow: 0 22px 60px rgba(16, 16, 20, 0.08);
}

.related-service-card i {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--cream);
  color: var(--orange);
  font-size: 22px;
  flex: 0 0 auto;
}

.service-cta-strip {
  padding: 0 0 110px;
  background: #ffffff;
}

@media (max-width: 991px) {

  .service-page-hero {
    padding-top: 130px;
  }

  .service-page-icon-panel {
    min-height: 260px;
  }

  .service-cta-strip {
    padding-bottom: 78px;
  }
}

@media (max-width: 575px) {

  .service-page-icon-panel {
    min-height: 220px;
    border-radius: 28px;
  }

  .service-page-icon-panel i {
    width: 92px;
    height: 92px;
    font-size: 44px;
  }

  .service-page-icon-panel::after {
    font-size: 52px;
  }
}


@media (max-width: 575px) {
  .text-marquee {
    padding: 18px 0;
  }

  .marquee-list {
    gap: 42px;
  }

  .marquee-list + .marquee-list {
    margin-left: 42px;
  }

  .marquee-list li {
    font-size: 17px;
  }

  .marquee-list i {
    font-size: 16px;
  }
}

/* ===== Final UI polish - homepage/index ===== */

.site-nav {
  box-shadow: 0 10px 30px rgba(16, 16, 20, 0.04);
}

.home-v3-hero {
  padding-bottom: 104px;
}

.home-v3-hero h1 {
  text-wrap: balance;
}

.hero-v3-lead {
  margin-bottom: 18px;
}

.hero-video-frame {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.hero-video-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 34px 92px rgba(18, 111, 214, 0.18);
}

.video-caption {
  top: 28px;
  bottom: auto;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.approach-section .section-head p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.presence-flow {
  max-width:1150px;
  margin:auto;
  background:transparent;
  border:none;
  border-radius:0;
  padding:20px 0 0;
  box-shadow:none;
  position:relative;
}

.presence-flow:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 78px rgba(16, 16, 20, 0.08);
}

.service-card {
  isolation: isolate;
}

.contact-form-card {
  border-left: 5px solid var(--orange);
}

@media (max-width: 575px) {
  .home-v3-hero {
    padding-bottom: 78px;
  }

  .video-caption {
    top: 20px;
    left: 20px;
    bottom: auto;
  }
}

/* ================================
   Final service card hover polish
================================ */
.service-card i,
.service-card h3,
.service-card p,
.service-card .card-link,
.service-card .service-no {
  transition:.25s ease;
}

.service-card:hover i,
.service-card:hover h3,
.service-card:hover p,
.service-card:hover .card-link {
  color:#fff;
}

.service-card:hover i {
  transform:scale(1.05);
}

.service-card:hover .service-no {
  color:rgba(255,255,255,.18);
}

/* ===== Homepage About Preview Work Grid ===== */

.work-preview-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 18px;
  align-items: stretch;
}

.work-preview-card {
  position: relative;
  margin: 0;
  min-height: 230px;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.work-preview-card.large {
  grid-row: span 2;
  min-height: 520px;
}

.portfolio-preview {
  isolation: isolate;
}

.portfolio-scroll-window {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.portfolio-preview img {
  width: 100%;
  height: auto;
  min-height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  transform: translateY(0);
  transition: transform 7s ease-in-out;
  will-change: transform;
}

.portfolio-preview:hover img {
  transform: translateY(calc(-100% + 100%));
}

.portfolio-preview:hover .portfolio-scroll-window img {
  transform: translateY(calc(-100% + 520px));
}

.work-preview-card:not(.large).portfolio-preview:hover .portfolio-scroll-window img {
  transform: translateY(calc(-100% + 230px));
}

.work-preview-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.72));
  pointer-events: none;
  z-index: 1;
}

.work-preview-card figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.work-preview-card:hover {
  transform: translateY(-6px);
  border-color: rgba(243, 107, 33, 0.5);
}

@media (max-width: 991px) {
  .work-preview-grid {
    grid-template-columns: 1fr;
  }

  .work-preview-card.large,
  .work-preview-card {
    min-height: 360px;
  }

  .portfolio-preview:hover .portfolio-scroll-window img,
  .work-preview-card:not(.large).portfolio-preview:hover .portfolio-scroll-window img {
    transform: translateY(calc(-100% + 360px));
  }
}


/* =====================================
   HOMEPAGE HERO - BRAND DRAMA UPDATE
   Keeps existing message + right-side purpose video
===================================== */
.home-page .site-nav {
  background:rgba(8,20,32,.78);
  border-bottom:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(18px);
}

.home-page .site-nav.nav-scrolled {
  background:rgba(8,20,32,.94);
  box-shadow:0 14px 40px rgba(0,0,0,.22);
}

.home-page .nav-link {
  color:rgba(255,255,255,.86)!important;
}

.home-page .nav-link:hover,
.home-page .nav-link.active {
  color:var(--orange)!important;
}

.home-page .navbar-toggler {
  border-color:rgba(255,255,255,.18);
}

.home-page .navbar-toggler-icon {
  filter:invert(1) grayscale(1) brightness(2);
}

.home-page .home-v3-hero {
  min-height:100vh;
  display:flex;
  align-items:center;
  padding:148px 0 86px;
  background:
    radial-gradient(circle at 16% 28%, rgba(243,107,33,.20), transparent 28%),
    radial-gradient(circle at 82% 28%, rgba(18,111,214,.26), transparent 32%),
    linear-gradient(120deg, #06101c 0%, #091827 48%, #05090f 100%);
  color:#fff;
}

.home-page .home-v3-hero:before {
  background:
    linear-gradient(90deg, rgba(5,9,15,.88) 0%, rgba(8,20,32,.76) 44%, rgba(5,9,15,.38) 100%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.025) 0 1px, transparent 1px 84px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.018) 0 1px, transparent 1px 84px);
  opacity:1;
}

.home-page .home-v3-hero:after {
  content:"";
  position:absolute;
  inset:auto -10% -38% 46%;
  height:62%;
  background:radial-gradient(circle, rgba(250,67,43,.22), transparent 60%);
  filter:blur(20px);
  pointer-events:none;
}

.home-page .home-v3-hero .container {
  z-index:2;
}

.home-page .home-v3-hero .eyebrow {
  color:#62a8ff;
  letter-spacing:.18em;
}

.home-page .home-v3-hero .eyebrow:before {
  background:#62a8ff;
}

.home-page .home-v3-hero h1 {
  color:#fff;
  text-shadow:0 12px 40px rgba(0,0,0,.32);
}

.home-page .hero-v3-lead {
  color:rgba(255,255,255,.78);
}

.home-page .hero-v3-note {
  color:rgba(255,255,255,.88);
  background:rgba(255,255,255,.075);
  border-left-color:var(--orange);
  border-top:1px solid rgba(255,255,255,.10);
  border-right:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
  box-shadow:0 18px 45px rgba(0,0,0,.18);
  backdrop-filter:blur(14px);
}

.home-page .home-v3-hero .btn-dm {
  background:linear-gradient(135deg, var(--orange), #fa432b);
  box-shadow:0 18px 40px rgba(250,67,43,.28);
}

.home-page .home-v3-hero .btn-outline-dm {
  background:rgba(255,255,255,.055);
  border-color:rgba(57,123,200,.68);
  color:#fff;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.04);
}

.home-page .home-v3-hero .btn-outline-dm:hover {
  background:rgba(18,111,214,.16);
  border-color:#62a8ff;
  color:#fff;
}

.home-page .hero-video-frame {
  background:linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.05));
  border:1px solid rgba(255,255,255,.16);
  box-shadow:
    0 36px 90px rgba(0,0,0,.42),
    0 0 0 1px rgba(18,111,214,.18),
    -18px 18px 70px rgba(18,111,214,.18),
    18px -18px 70px rgba(243,107,33,.14);
  transform:perspective(1200px) rotateY(-4deg) rotateX(1deg);
}

.home-page .hero-video-frame:before {
  content:"";
  position:absolute;
  inset:0;
  border-radius:30px;
  background:linear-gradient(135deg, rgba(255,255,255,.24), transparent 35%, rgba(250,67,43,.14));
  pointer-events:none;
  z-index:2;
}

.home-page .hero-video-frame video {
  filter:saturate(1.08) contrast(1.04);
}

.home-page .video-caption {
  background:rgba(8,20,32,.82);
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 14px 34px rgba(0,0,0,.28);
  z-index:3;
}

.home-page .orb-orange {
  background:rgba(243,107,33,.32);
  left:-90px;
  top:18%;
}

.home-page .orb-blue {
  background:rgba(18,111,214,.32);
  right:-110px;
  top:12%;
}

@media(max-width:991px) {
  .home-page .home-v3-hero {
    min-height:auto;
    padding:126px 0 78px;
    text-align:center;
  }

  .home-page .home-v3-hero .eyebrow {
    justify-content:center;
  }

  .home-page .home-v3-hero h1,
  .home-page .hero-v3-lead,
  .home-page .hero-v3-note {
    margin-left:auto;
    margin-right:auto;
  }

  .home-page .home-v3-hero .d-flex {
    justify-content:center;
  }

  .home-page .hero-v3-note {
    border-left:0;
    border-top:4px solid var(--orange);
    border-radius:20px;
  }

  .home-page .hero-video-frame {
    max-width:720px;
    margin:24px auto 0;
    transform:none;
  }
}

@media(max-width:575px) {
  .home-page .home-v3-hero {
    padding:112px 0 62px;
  }

  .home-page .home-v3-hero h1 {
    font-size:38px;
    line-height:1.12;
  }

  .home-page .hero-v3-lead {
    font-size:16px;
    line-height:1.72;
  }

  .home-page .hero-v3-note {
    font-size:14px;
    padding:14px 15px;
  }

  .home-page .home-v3-hero .btn-dm,
  .home-page .home-v3-hero .btn-outline-dm {
    width:100%;
  }

  .home-page .hero-video-frame {
    border-radius:22px;
    padding:9px;
  }

  .home-page .hero-video-frame video {
    border-radius:16px;
  }

  .home-page .video-caption {
    left:18px;
    top:18px;
    padding:8px 12px;
    font-size:12px;
  }
}

/* =====================================
   HOMEPAGE HERO - V3 RESPONSIVE REFINEMENT
   Version note: keep video proportional, preserve announcement style,
   and reorder mobile hero content as: eyebrow, title, paragraph, video, announcement, CTAs.
===================================== */
.home-page .hero-video-frame {
  transform:none;
}

.home-page .hero-video-frame video {
  aspect-ratio:16 / 9;
  object-fit:cover;
}

@media(max-width:991px) {
  .home-page .home-v3-hero .row {
    display:flex;
    flex-direction:column;
    gap:0 !important;
  }

  .home-page .hero-copy-col,
  .home-page .hero-video-col {
    display:contents;
  }

  .home-page .hero-mobile-eyebrow {
    order:1;
    justify-content:center;
  }

  .home-page .hero-mobile-title {
    order:2;
  }

  .home-page .hero-mobile-lead {
    order:3;
  }

  .home-page .hero-mobile-video {
    order:4;
    width:100%;
    max-width:760px;
    margin:26px auto 0;
  }

  .home-page .hero-mobile-note {
    order:5;
    margin-top:26px;
    border-left:4px solid var(--orange);
    border-top:1px solid rgba(255,255,255,.10);
    border-radius:0 18px 18px 0;
    text-align:left;
  }

  .home-page .hero-mobile-actions {
    order:6;
    justify-content:center;
    width:100%;
    max-width:620px;
    margin:22px auto 0 !important;
  }
}

@media(max-width:575px) {
  .home-page .hero-mobile-actions {
    display:flex !important;
    flex-wrap:nowrap !important;
    gap:10px !important;
  }

  .home-page .hero-mobile-actions .btn-dm,
  .home-page .hero-mobile-actions .btn-outline-dm {
    flex:1 1 0;
    width:auto;
    min-width:0;
    padding-left:10px;
    padding-right:10px;
    font-size:13px;
    white-space:normal;
  }

  .home-page .hero-mobile-video {
    margin-top:22px;
  }

  .home-page .hero-mobile-note {
    margin-top:22px;
  }
}

/* =====================================
   HOMEPAGE HERO - V4 MOBILE POLISH
   Fixed mobile spacing, eyebrow visibility, video proportions,
   announcement left-border treatment, and combined 50/50 CTA control.
===================================== */

@media (max-width: 575px) {
  .home-page .site-nav .container,
  .home-page .home-v3-hero .container,
  .home-page section > .container,
  .home-page footer .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .home-page .home-v3-hero {
    padding-top: 96px;
    padding-bottom: 46px;
    overflow: hidden;
  }

  .home-page .home-v3-hero .row {
    margin-left: 0;
    margin-right: 0;
  }

  .home-page .hero-copy-col,
  .home-page .hero-video-col {
    padding-left: 0;
    padding-right: 0;
  }

  .home-page .hero-mobile-eyebrow,
  .home-page .home-v3-hero .eyebrow {
    display: flex;
    opacity: 1;
    visibility: visible;
    color: #62a8ff;
    font-size: 11px;
    line-height: 1.35;
    letter-spacing: .17em;
    font-weight: 800;
    margin-bottom: 14px;
    justify-content: center;
    text-align: center;
  }

  .home-page .home-v3-hero .eyebrow:before {
    display: inline-block;
    background: #62a8ff;
  }

  .home-page .home-v3-hero h1 {
    font-size: 34px;
    line-height: 1.12;
    letter-spacing: -.035em;
    margin-bottom: 16px;
  }

  .home-page .hero-v3-lead {
    font-size: 15px;
    line-height: 1.68;
    margin-bottom: 0;
  }

  .home-page .hero-mobile-video,
  .home-page .hero-video-frame {
    width: calc(100% + 40px);
    max-width: none;
    margin-left: -20px;
    margin-right: -20px;
    margin-top: 24px;
    padding: 0;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    background: #05090f;
    overflow: hidden;
    box-shadow: 0 20px 46px rgba(0,0,0,.34);
  }

  .home-page .hero-video-frame:before {
    display: none;
  }

  .home-page .hero-video-frame video {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    border-radius: 0;
    filter: none;
  }

  .home-page .video-caption {
    left: 14px;
    top: 14px;
    border-radius: 4px;
    padding: 7px 10px;
    font-size: 11px;
  }

  .home-page .hero-mobile-note,
  .home-page .hero-v3-note {
    display: block;
    width: 100%;
    margin-top: 22px;
    margin-bottom: 0;
    padding: 13px 14px 13px 16px;
    font-size: 13px;
    line-height: 1.62;
    text-align: left;
    color: rgba(255,255,255,.88);
    background: rgba(255,255,255,.075);
    border-left: 4px solid var(--orange);
    border-top: 1px solid rgba(255,255,255,.10);
    border-right: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
    border-radius: 0 14px 14px 0;
    box-shadow: 0 12px 30px rgba(0,0,0,.18);
  }

  .home-page .hero-mobile-actions {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    width: 100%;
    max-width: none;
    margin-top: 20px !important;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255,255,255,.055);
    box-shadow: 0 18px 38px rgba(0,0,0,.25);
  }

  .home-page .hero-mobile-actions .btn-dm,
  .home-page .hero-mobile-actions .btn-outline-dm {
    flex: 0 0 50%;
    width: 50%;
    min-width: 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 13px 8px;
    font-size: 12px;
    line-height: 1.25;
    white-space: normal;
    text-align: center;
  }

  .home-page .hero-mobile-actions .btn-dm {
    border-right: 1px solid rgba(255,255,255,.18);
  }

  .home-page .hero-mobile-actions .btn-outline-dm {
    background: transparent;
  }
}

/* =====================================
   HOMEPAGE HERO - V5 FINAL TUNING
   Eyebrow clearance, justified paragraph, brand-blue secondary CTA.
===================================== */
.home-page .hero-v3-lead {
  text-align: justify;
  text-justify: inter-word;
}

.home-page .home-v3-hero .btn-outline-dm {
  background: #397BC8;
  border-color: #397BC8;
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(57, 123, 200, .24);
}

.home-page .home-v3-hero .btn-outline-dm:hover,
.home-page .home-v3-hero .btn-outline-dm:focus {
  background: #123d6f;
  border-color: #123d6f;
  color: #ffffff;
}

@media (max-width: 575px) {
  .home-page .home-v3-hero {
    padding-top: 122px;
  }

  .home-page .hero-mobile-eyebrow,
  .home-page .home-v3-hero .eyebrow {
    margin-top: 10px;
    margin-bottom: 18px;
    color: #62a8ff;
  }

  .home-page .hero-v3-lead {
    text-align: justify;
    text-align-last: center;
    text-justify: inter-word;
  }

  .home-page .hero-mobile-actions .btn-outline-dm {
    background: #397BC8;
    color: #ffffff;
  }

  .home-page .hero-mobile-actions .btn-outline-dm:hover,
  .home-page .hero-mobile-actions .btn-outline-dm:focus {
    background: #123d6f;
    color: #ffffff;
  }
}


/* =====================================
   HOMEPAGE HERO - V6 COPY + CTA BORDER + PARAGRAPH FIX
   Updated announcement copy, corrected justified paragraph last line,
   and added clear white separation around CTA control.
===================================== */
.home-page .hero-v3-lead {
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
}

.home-page .home-v3-hero .btn-dm,
.home-page .home-v3-hero .btn-outline-dm {
  border: 1px solid rgba(255, 255, 255, .24);
}

.home-page .home-v3-hero .btn-dm:hover,
.home-page .home-v3-hero .btn-dm:focus {
  border-color: rgba(255, 255, 255, .34);
}

.home-page .home-v3-hero .btn-outline-dm:hover,
.home-page .home-v3-hero .btn-outline-dm:focus {
  background: #123d6f;
  border-color: rgba(255, 255, 255, .34);
}

@media (max-width: 575px) {
  .home-page .hero-v3-lead {
    text-align: justify;
    text-align-last: left;
    text-justify: inter-word;
    max-width: 100%;
  }

  .home-page .hero-mobile-actions {
    border: 1px solid rgba(255, 255, 255, .34);
  }

  .home-page .hero-mobile-actions .btn-dm,
  .home-page .hero-mobile-actions .btn-outline-dm {
    border: 0;
  }

  .home-page .hero-mobile-actions .btn-dm {
    border-right: 1px solid rgba(255, 255, 255, .34);
  }
}

/* =====================================
   HOMEPAGE HERO - V7 MOBILE RHYTHM + READABILITY
   More breathing room, softer announcement/button typography,
   increased padding, and clearer spacing between hero parts.
===================================== */
.home-page .hero-v3-note {
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0;
  color: rgba(255,255,255,.90);
  background: rgba(14,24,38,.82);
}

.home-page .home-v3-hero .btn-dm,
.home-page .home-v3-hero .btn-outline-dm {
  font-weight: 600;
  letter-spacing: 0;
}

@media (max-width: 991px) {
  .home-page .hero-mobile-title {
    margin-bottom: 24px;
  }

  .home-page .hero-mobile-lead {
    line-height: 1.85;
  }

  .home-page .hero-mobile-video,
  .home-page .hero-video-frame {
    margin-top: 32px;
  }

  .home-page .hero-mobile-note,
  .home-page .hero-v3-note {
    margin-top: 30px;
    padding: 24px 22px;
    font-size: 15px;
    line-height: 1.76;
    font-weight: 500;
    color: rgba(255,255,255,.90);
    background: rgba(14,24,38,.84);
    border-left-width: 4px;
  }

  .home-page .hero-mobile-actions {
    margin-top: 26px !important;
  }

  .home-page .hero-mobile-actions .btn-dm,
  .home-page .hero-mobile-actions .btn-outline-dm {
    min-height: 56px;
    padding: 16px 12px;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 600;
  }
}

@media (max-width: 575px) {
  .home-page .home-v3-hero {
    padding-bottom: 54px;
  }

  .home-page .home-v3-hero h1 {
    margin-bottom: 22px;
  }

  .home-page .hero-v3-lead {
    line-height: 1.86;
  }

  .home-page .hero-mobile-video,
  .home-page .hero-video-frame {
    margin-top: 30px;
  }

  .home-page .hero-mobile-note,
  .home-page .hero-v3-note {
    margin-top: 28px;
    padding: 22px 20px;
    font-size: 14px;
    line-height: 1.78;
    font-weight: 500;
  }

  .home-page .hero-mobile-actions {
    margin-top: 24px !important;
  }

  .home-page .hero-mobile-actions .btn-dm,
  .home-page .hero-mobile-actions .btn-outline-dm {
    min-height: 56px;
    padding: 16px 10px;
    font-size: 13px;
    font-weight: 600;
  }
}


/* =====================================
   HOMEPAGE HERO - V8 CTA BALANCE + DESKTOP RHYTHM
   Balanced CTA label, larger mobile button text, and smoother desktop vertical spacing.
===================================== */
.home-page .home-v3-hero {
  padding-top: 118px;
  padding-bottom: 78px;
}

.home-page .home-v3-hero .row {
  align-items: center;
}

.home-page .home-v3-hero .eyebrow {
  margin-bottom: 22px;
}

.home-page .home-v3-hero h1 {
  margin-bottom: 28px;
}

.home-page .hero-v3-lead {
  margin-bottom: 28px;
}

.home-page .hero-v3-note {
  margin-bottom: 30px;
}

.home-page .home-v3-hero .btn-dm,
.home-page .home-v3-hero .btn-outline-dm {
  font-size: 15px;
  min-height: 54px;
  padding: 15px 24px;
}

@media (min-width: 992px) {
  .home-page .hero-mobile-actions {
    margin-top: 0 !important;
  }

  .home-page .hero-video-frame {
    margin-top: 14px;
  }
}

@media (max-width: 991px) {
  .home-page .home-v3-hero {
    padding-top: 118px;
    padding-bottom: 62px;
  }
}

@media (max-width: 575px) {
  .home-page .home-v3-hero {
    padding-top: 116px;
    padding-bottom: 56px;
  }

  .home-page .hero-mobile-actions .btn-dm,
  .home-page .hero-mobile-actions .btn-outline-dm {
    font-size: 14px;
    line-height: 1.25;
    min-height: 58px;
    padding: 17px 9px;
  }
}

/* =====================================
   HOMEPAGE HERO - V9 RESPONSIVE SPACING CORRECTION
   Desktop/laptop rhythm refined separately while preserving v7 mobile spacing.
===================================== */
@media (min-width: 992px) {
  .home-page .home-v3-hero {
    min-height: calc(100vh - 70px);
    padding-top: 96px;
    padding-bottom: 64px;
  }

  .home-page .home-v3-hero .eyebrow {
    margin-bottom: 24px;
  }

  .home-page .home-v3-hero h1 {
    margin-bottom: 32px;
  }

  .home-page .hero-v3-lead {
    margin-bottom: 32px;
    line-height: 1.84;
  }

  .home-page .hero-v3-note {
    padding: 20px 22px;
    margin-bottom: 34px;
    line-height: 1.78;
  }

  .home-page .hero-mobile-actions {
    gap: 16px !important;
  }

  .home-page .home-v3-hero .btn-dm,
  .home-page .home-v3-hero .btn-outline-dm {
    min-height: 58px;
    padding: 17px 28px;
    font-size: 16px;
  }

  .home-page .hero-video-frame {
    margin-top: 0;
  }
}

@media (max-width: 991px) {
  .home-page .home-v3-hero {
    padding-top: 126px;
    padding-bottom: 78px;
  }
}

@media (max-width: 575px) {
  .home-page .home-v3-hero {
    padding-top: 122px;
    padding-bottom: 54px;
  }

  .home-page .hero-mobile-actions .btn-dm,
  .home-page .hero-mobile-actions .btn-outline-dm {
    font-size: 14px;
    line-height: 1.25;
    min-height: 58px;
    padding: 17px 9px;
  }
}

/* =====================================
   HOMEPAGE HERO - V10 MOBILE ANNOUNCEMENT SPACING FIX
   Only change: remove bottom margin from the mobile announcement block.
===================================== */
@media (max-width: 991px) {
  .home-page .hero-mobile-note,
  .home-page .hero-v3-note {
    margin-bottom: 0 !important;
  }
}


/* v11 boxed section refinement */

.approach-section{
    background:#050b16;
    position:relative;
    padding:110px 0;
}

.approach-section .container{
    background:linear-gradient(180deg,#081425 0%,#07111f 100%);
    border:1px solid rgba(255,255,255,0.06);
    border-radius:34px;
    padding:70px 56px;
    box-shadow:0 30px 80px rgba(0,0,0,0.28);
}

.approach-section .section-head h2{
    color:#ffffff;
    max-width:820px;
    margin-inline:auto;
}

.approach-section .section-head p{
    color:rgba(255,255,255,0.72);
}

.presence-flow{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    margin-top:60px !important;
}

.flow-node.main,
.flow-node.enquiry{
    display:none;
}

.flow-line{
    display:none;
}

.flow-grid{
    width:100%;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.flow-grid .flow-node{
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.07);
    border-radius:26px;
    min-height:220px;
    padding:34px 24px;
    position:relative;
    overflow:hidden;
    transition:all .35s ease;
}

.flow-grid .flow-node::after{
    content:"";
    position:absolute;
    top:50%;
    right:-20px;
    width:40px;
    height:2px;
    background:rgba(255,132,38,0.4);
}

.flow-grid .flow-node:last-child::after{
    display:none;
}

.flow-grid .flow-node:hover{
    transform:translateY(-6px);
    border-color:rgba(255,132,38,0.25);
    background:rgba(255,255,255,0.05);
}

.flow-grid .flow-node i{
    width:88px;
    height:88px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    color:#ff8426;
    border:1px solid rgba(255,132,38,0.35);
    margin-bottom:28px;
    background:rgba(255,132,38,0.06);
}

.flow-grid .flow-node span{
    display:block;
    color:#fff;
    font-size:1.28rem;
    font-weight:700;
    line-height:1.4;
}

.services-section{
    background:#050b16;
    padding-top:0;
    padding-bottom:120px;
}

.services-section .container{
    background:#ffffff;
    border-radius:34px;
    padding:70px 56px;
    box-shadow:0 30px 80px rgba(0,0,0,0.08);
}

@media(max-width:991px){

    .approach-section{
        padding:80px 0;
    }

    .approach-section .container,
    .services-section .container{
        border-radius:24px;
        padding:42px 22px;
    }

    .flow-grid{
        grid-template-columns:1fr;
        gap:16px;
    }

    .flow-grid .flow-node{
        min-height:auto;
        padding:28px 22px;
    }

    .flow-grid .flow-node::after{
        display:none;
    }

    .flow-grid .flow-node i{
        width:74px;
        height:74px;
        font-size:28px;
        margin-bottom:18px;
    }

    .flow-grid .flow-node span{
        font-size:1.08rem;
    }
}


.flow-grid{
  gap:22px;
  align-items:stretch;
}

.flow-node span{
  display:block;
  font-size:28px;
  font-weight:800;
  line-height:1.2;
}

.flow-grid .flow-node:not(:last-child):after{
  content:"";
  position:absolute;
  right:-22px;
  top:48%;
  width:22px;
  height:2px;
  background:rgba(250,103,34,.55);
}

.services-section{
  background:#fff;
}

.services-section .container{
  background:#fff;
  border-radius:42px;
  padding:10px 0 0;
}

.service-card{
  border-radius:30px;
  border:1px solid #edf1f5;
  box-shadow:0 18px 50px rgba(16,16,20,.05);
}

.service-card:hover{
  transform:translateY(-10px);
}

@media(max-width:991px){
  .approach-section{
    padding-top:70px;
    padding-bottom:70px;
  }
  .approach-section .container{
    border-radius:30px;
    padding:48px 24px;
  }
  .flow-grid{
    grid-template-columns:1fr;
  }
  .flow-grid .flow-node:not(:last-child):after{
    right:auto;
    left:50%;
    top:auto;
    bottom:-12px;
    width:2px;
    height:24px;
    transform:translateX(-50%);
  }
  .flow-node{
    min-height:auto;
  }
  .flow-node span{
    font-size:24px;
  }
}

/* =====================================
   DIGIMITRA V13 - Approach section visual correction
   White page background, dark inner box, dark interconnected cards.
   Hero and marquee remain untouched.
===================================== */
.approach-section{
  background: transparent !important;
  padding: 86px 0 74px !important;
  position: relative;
}

.approach-section .container{
  background: radial-gradient(circle at 50% 10%, rgba(30, 62, 98, 0.18), transparent 36%), linear-gradient(180deg, #07111f 0%, #050b16 100%) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  border-radius: 34px !important;
  padding: 62px 52px 62px !important;
  box-shadow: 0 34px 90px rgba(5, 12, 24, 0.22) !important;
  max-width: 1320px;
}

.approach-section .section-head{
  margin-bottom: 44px !important;
}

.approach-section .section-head .eyebrow{
  color: #ff6b22 !important;
  font-size: 14px !important;
  letter-spacing: 2.6px !important;
  font-weight: 800 !important;
  margin-bottom: 24px !important;
}

.approach-section .section-head h2{
  color: #ffffff !important;
  max-width: none !important;
  margin-inline: auto !important;
  font-size: clamp(2.15rem, 3.55vw, 3.65rem) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.05em !important;
  text-shadow: 0 4px 26px rgba(0,0,0,0.26) !important;
}

.approach-section .section-head h2::after{
  content: "";
  display: block;
  width: 96px;
  height: 4px;
  background: #ff6b22;
  margin: 24px auto 0;
  border-radius: 999px;
}

.presence-flow{
  margin-top: 0 !important;
  display: block !important;
}

.flow-grid{
  width: 100% !important;
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 30px !important;
  align-items: stretch !important;
}

.flow-grid .flow-node{
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018)) !important;
  border: 1px solid rgba(255,255,255,0.13) !important;
  border-radius: 22px !important;
  min-height: 285px !important;
  padding: 34px 24px 28px !important;
  position: relative !important;
  overflow: visible !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: center !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 18px 42px rgba(0,0,0,0.20) !important;
  transition: transform .35s ease, border-color .35s ease, background .35s ease !important;
}

.flow-grid .flow-node:not(:last-child)::after{
  content: "" !important;
  position: absolute !important;
  top: 124px !important;
  right: -31px !important;
  width: 31px !important;
  height: 2px !important;
  background: repeating-linear-gradient(90deg, rgba(255, 107, 34, .60) 0 5px, transparent 5px 10px) !important;
  transform: none !important;
  z-index: 3 !important;
}

.flow-grid .flow-node:not(:last-child)::before{
  content: "" !important;
  position: absolute !important;
  top: 116px !important;
  right: -42px !important;
  width: 18px !important;
  height: 18px !important;
  border-radius: 50% !important;
  background: #ff6b22 !important;
  border: 2px solid rgba(255,255,255,0.62) !important;
  box-shadow: 0 0 0 6px rgba(255,107,34,0.12) !important;
  z-index: 4 !important;
}

.flow-grid .flow-node:hover{
  transform: translateY(-6px) !important;
  border-color: rgba(255,107,34,0.35) !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.026)) !important;
}

.flow-grid .flow-icon{
  width: 138px !important;
  height: 138px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,107,34,0.62) !important;
  background: radial-gradient(circle, rgba(255,107,34,0.12), rgba(255,107,34,0.02) 68%) !important;
  margin: 0 auto 24px !important;
}

.flow-grid .flow-node i{
  width: auto !important;
  height: auto !important;
  border: 0 !important;
  background: transparent !important;
  margin: 0 !important;
  border-radius: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 48px !important;
  color: #ffffff !important;
}

.flow-grid .flow-no{
  display: block !important;
  color: #ff6b22 !important;
  font-size: 30px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  margin-bottom: 14px !important;
}

.flow-grid .flow-node h3{
  color: #ffffff !important;
  font-size: 24px !important;
  line-height: 1.18 !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  margin: 0 !important;
}

.flow-grid .flow-node h3::after{
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  background: #ff6b22;
  border-radius: 999px;
  margin: 18px auto 0;
}

.flow-grid .flow-node p{
  color: rgba(255,255,255,0.78) !important;
  font-size: 16px !important;
  line-height: 1.62 !important;
  font-weight: 400 !important;
  margin: 0 !important;
}

/* Services stays clean white, only cards are improved */
.services-section{
  background: #ffffff !important;
}

.services-section .container{
  background: #ffffff !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding-top: 0 !important;
}

.service-card{
  background: #ffffff !important;
  border: 1px solid #edf1f5 !important;
  border-radius: 26px !important;
  box-shadow: 0 18px 46px rgba(8, 20, 32, 0.06) !important;
}

.service-card:hover{
  transform: translateY(-8px) !important;
  box-shadow: 0 24px 58px rgba(8, 20, 32, 0.10) !important;
}

@media (max-width: 1199px){
  .flow-grid{
    grid-template-columns: repeat(5, minmax(170px, 1fr)) !important;
    overflow-x: auto !important;
    padding-bottom: 10px !important;
    scroll-snap-type: x mandatory;
  }
  .flow-grid .flow-node{
    scroll-snap-align: start;
  }
}

@media (max-width: 991px){
  .approach-section{
    padding: 54px 0 58px !important;
  }

  .approach-section .container{
    border-radius: 26px !important;
    padding: 42px 18px 42px !important;
  }

  .approach-section .section-head{
    margin-bottom: 36px !important;
  }

  .approach-section .section-head h2{
    font-size: clamp(2rem, 8vw, 3rem) !important;
  }

  .flow-grid{
    display: grid !important;
    grid-template-columns: 1fr !important;
    overflow: visible !important;
    gap: 18px !important;
    padding-bottom: 0 !important;
  }

  .flow-grid .flow-node{
    min-height: auto !important;
    padding: 28px 22px !important;
  }

  .flow-grid .flow-node:not(:last-child)::after,
  .flow-grid .flow-node:not(:last-child)::before{
    display: none !important;
  }

  .flow-grid .flow-icon{
    width: 94px !important;
    height: 94px !important;
    margin-bottom: 18px !important;
  }

  .flow-grid .flow-node i{
    font-size: 34px !important;
  }

  .flow-grid .flow-no{
    font-size: 24px !important;
  }

  .flow-grid .flow-node h3{
    font-size: 21px !important;
    margin-bottom: 14px !important;
  }

  .flow-grid .flow-node p{
    font-size: 15px !important;
  }
}


/* DIGIMITRA V14 - compact complete digital approach */
.flow-grid .flow-node p{
  display: none !important;
}
.approach-section .section-head h2{
  max-width: none !important;
}
@media (max-width: 991px){
  .flow-grid .flow-node{
    padding: 26px 20px !important;
  }
}

.service-card:hover i{background:#397BC8;color:#fff;padding:14px;border-radius:18px;}
.service-card:hover .card-link{color:var(--orange);}
.services-section .section-head p{max-width:620px;margin:auto;color:#6c7280;}

/* DIGIMITRA V16 - service card full hover surface fix */
.services-section .service-card{
  background:#ffffff !important;
  border:1px solid #edf1f5 !important;
  color:var(--text) !important;
  transition:background-color .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease !important;
}

.services-section .service-card i{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:58px !important;
  height:58px !important;
  padding:0 !important;
  border-radius:18px !important;
  background:rgba(57,123,200,.08) !important;
  color:#397BC8 !important;
  transition:background-color .25s ease, color .25s ease, transform .25s ease !important;
}

.services-section .service-card:hover{
  background:#397BC8 !important;
  border-color:#397BC8 !important;
  color:#ffffff !important;
  transform:translateY(-8px) !important;
  box-shadow:0 24px 58px rgba(57,123,200,.22) !important;
}

.services-section .service-card:hover h3,
.services-section .service-card:hover p,
.services-section .service-card:hover .card-link{
  color:#ffffff !important;
}

.services-section .service-card:hover > i{
  background:rgba(255,255,255,.18) !important;
  color:#ffffff !important;
  padding:0 !important;
  transform:none !important;
}

.services-section .service-card .card-link i{
  width:auto !important;
  height:auto !important;
  padding:0 !important;
  border-radius:0 !important;
  background:transparent !important;
  color:currentColor !important;
  font-size:22px !important;
  margin-bottom:0 !important;
}

.services-section .service-card:hover .card-link i{
  background:transparent !important;
  color:#ffffff !important;
  padding:0 !important;
}

.services-section .service-card:hover .service-no{
  color:rgba(255,255,255,.18) !important;
}

/* =====================================
   DIGIMITRA V17 - Service card orange uplift
   Real update from v16: subtle logo-orange border and soft orange numbers.
   Existing full-card blue hover behavior is preserved.
===================================== */
.services-section .service-card{
  border:1px solid rgba(250,103,34,.34) !important;
  box-shadow:0 18px 54px rgba(16,16,20,.055), 0 0 0 1px rgba(250,103,34,.03) inset !important;
}

.services-section .service-card .service-no{
  color:rgba(250,103,34,.14) !important;
}

.services-section .service-card:hover{
  background:#397bc8 !important;
  border-color:#397bc8 !important;
  box-shadow:0 26px 76px rgba(57,123,200,.24) !important;
}

.services-section .service-card:hover .service-no{
  color:rgba(255,255,255,.18) !important;
}

.services-section .service-card:hover i,
.services-section .service-card:hover h3,
.services-section .service-card:hover p,
.services-section .service-card:hover .card-link{
  color:#fff !important;
}


/* DIGIMITRA V18 - Approach heading outside dark box */
.approach-section{
  background: #ffffff !important;
  padding: 86px 0 78px !important;
}

.approach-section > .container{
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 12px !important;
  max-width: 1320px !important;
}

.approach-section .section-head{
  margin-bottom: 34px !important;
}

.approach-section .section-head .eyebrow{
  color: #ff6b22 !important;
  text-shadow: none !important;
  margin-bottom: 18px !important;
}

.approach-section .section-head h2{
  color: #081420 !important;
  text-shadow: none !important;
  font-size: clamp(2rem, 3.2vw, 3.2rem) !important;
  line-height: 1.13 !important;
  letter-spacing: -0.045em !important;
  max-width: none !important;
}

.approach-section .section-head h2::after{
  margin-top: 20px !important;
}

.approach-box{
  background: radial-gradient(circle at 50% 0%, rgba(38, 85, 135, 0.18), transparent 34%), linear-gradient(180deg, #07111f 0%, #050b16 100%) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  border-radius: 34px !important;
  padding: 48px 46px !important;
  box-shadow: 0 34px 90px rgba(5, 12, 24, 0.18) !important;
}

.approach-box .presence-flow{
  margin-top: 0 !important;
}

@media (max-width: 991px){
  .approach-section{
    padding: 58px 0 62px !important;
  }
  .approach-section > .container{
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
  .approach-section .section-head{
    margin-bottom: 28px !important;
  }
  .approach-section .section-head h2{
    font-size: clamp(1.9rem, 7.2vw, 2.6rem) !important;
  }
  .approach-box{
    border-radius: 26px !important;
    padding: 32px 16px !important;
  }
}

/* ===== About section comparison variant - dark editorial showcase ===== */
.about-showcase-dark {
  background: #ffffff;
  padding-top: 34px;
}

.about-showcase-panel {
  background:
    radial-gradient(circle at 78% 18%, rgba(57, 123, 200, 0.16), transparent 32%),
    radial-gradient(circle at 12% 82%, rgba(250, 67, 43, 0.13), transparent 28%),
    linear-gradient(145deg, #07111d 0%, #081624 52%, #050b13 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: 58px 54px 34px;
  box-shadow: 0 24px 70px rgba(7, 17, 29, 0.18);
  overflow: hidden;
  position: relative;
}

.about-showcase-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: .28;
  pointer-events: none;
}

.about-showcase-panel > * {
  position: relative;
  z-index: 1;
}

.about-showcase-dark .section-title {
  margin-bottom: 22px;
}

.about-showcase-dark .section-subtitle {
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 16px;
}

.about-soft-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.about-soft-points div {
  min-width: 0;
}

.about-soft-points i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--orange);
  font-size: 22px;
}

.about-soft-points strong {
  display: block;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 5px;
}

.about-soft-points span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.55;
}

.about-work-heading {
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

.about-work-heading span {
  color: var(--orange);
}

.about-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: end;
}

.about-showcase-card {
  position: relative;
  margin: 0;
  height: 420px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.28);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.about-showcase-card.tall {
  height: 480px;
}

.about-showcase-card:hover {
  transform: translateY(-6px);
  border-color: rgba(250, 67, 43, 0.42);
  box-shadow: 0 26px 74px rgba(0, 0, 0, 0.36);
}

.about-showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(5, 11, 19, 0.92));
  pointer-events: none;
  z-index: 1;
}

.about-showcase-card .portfolio-scroll-window {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.about-showcase-card img {
  width: 100%;
  height: auto;
  min-height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  transform: translateY(0);
  transition: transform 7s ease-in-out;
  will-change: transform;
}

.about-showcase-card:hover img {
  transform: translateY(calc(-100% + 420px));
}

.about-showcase-card.tall:hover img {
  transform: translateY(calc(-100% + 480px));
}

.about-showcase-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  color: #ffffff;
}

.about-showcase-card figcaption strong {
  display: block;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
}

.about-showcase-card figcaption span {
  display: block;
  margin-top: 4px;
  color: rgba(250, 67, 43, 0.92);
  font-size: 12px;
  font-weight: 800;
}

.about-soft-strip {
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.about-soft-strip div {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.about-soft-strip div:first-child {
  border-left-color: rgba(250, 67, 43, 0.52);
}

.about-soft-strip strong {
  display: block;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 850;
  margin-bottom: 5px;
}

.about-soft-strip span {
  display: block;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  line-height: 1.45;
}

@media (max-width: 1199px) {
  .about-showcase-panel {
    padding: 46px 34px 32px;
  }

  .about-showcase-grid {
    gap: 16px;
  }
}

@media (max-width: 991px) {
  .about-showcase-panel {
    border-radius: 24px;
  }

  .about-showcase-grid {
    grid-template-columns: 1fr;
  }

  .about-showcase-card,
  .about-showcase-card.tall {
    height: 360px;
  }

  .about-showcase-card:hover img,
  .about-showcase-card.tall:hover img {
    transform: translateY(calc(-100% + 360px));
  }

  .about-soft-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .about-showcase-dark {
    padding-top: 18px;
  }

  .about-showcase-panel {
    padding: 34px 18px 24px;
    border-radius: 22px;
  }

  .about-soft-points {
    grid-template-columns: 1fr;
  }

  .about-soft-strip {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* =====================================
   DIGIMITRA V21 - Real corrections
   CTA form, mobile spacing, about mobile refinements
===================================== */
.contact-form-card{
  border-radius:0 !important;
  border-left:4px solid var(--orange) !important;
  border-top:1px solid var(--line) !important;
  border-right:1px solid var(--line) !important;
  border-bottom:1px solid var(--line) !important;
}

.contact-mini-list span{
  font-weight:700 !important;
}

@media (max-width: 991px){
  .approach-section{
    padding-top:58px !important;
    padding-bottom:54px !important;
  }

  .services-section{
    padding-top:54px !important;
    padding-bottom:42px !important;
  }

  .services-section .container{
    padding-bottom:0 !important;
  }

  .about-v3-section,
  .about-showcase-dark{
    padding-top:54px !important;
  }

  .about-soft-points{
    grid-template-columns:1fr !important;
    gap:16px !important;
  }

  .about-soft-points div{
    display:grid !important;
    grid-template-columns:48px 1fr !important;
    column-gap:14px !important;
    align-items:center !important;
    padding:14px 0 !important;
  }

  .about-soft-points i{
    grid-row:1 / span 2 !important;
    grid-column:1 !important;
    margin:0 !important;
    width:46px !important;
    height:46px !important;
    border-radius:14px !important;
  }

  .about-soft-points strong{
    grid-column:2 !important;
    margin:0 0 4px !important;
  }

  .about-soft-points span{
    grid-column:2 !important;
    margin:0 !important;
  }

  .about-soft-strip{
    grid-template-columns:1fr !important;
    gap:14px !important;
    margin-top:32px !important;
    padding-top:22px !important;
  }

  .about-soft-strip div{
    position:relative !important;
    min-height:86px !important;
    padding:18px 48px 18px 22px !important;
    border:1px solid rgba(255,255,255,.18) !important;
    border-left:5px solid rgba(57,123,200,.95) !important;
    border-radius:0 !important;
    background:rgba(57,123,200,.22) !important;
    text-align:center !important;
    display:flex !important;
    flex-direction:column !important;
    justify-content:center !important;
  }

  .about-soft-strip div::after{
    content:"✓" !important;
    position:absolute !important;
    right:18px !important;
    top:50% !important;
    transform:translateY(-50%) !important;
    width:24px !important;
    height:24px !important;
    border-radius:50% !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    background:rgba(255,255,255,.12) !important;
    border:1px solid rgba(255,255,255,.28) !important;
    color:#ffffff !important;
    font-size:14px !important;
    font-weight:800 !important;
  }

  .about-soft-strip strong{
    color:#ffffff !important;
    font-size:15px !important;
    margin-bottom:6px !important;
  }

  .about-soft-strip span{
    color:rgba(255,255,255,.78) !important;
    font-size:12px !important;
    line-height:1.45 !important;
  }
}

@media (max-width: 575px){
  .contact-form-card{
    border-radius:0 !important;
    padding:24px 20px !important;
  }

  .approach-section{
    padding-top:52px !important;
    padding-bottom:48px !important;
  }

  .services-section{
    padding-top:48px !important;
    padding-bottom:34px !important;
  }

  .about-v3-section,
  .about-showcase-dark{
    padding-top:48px !important;
  }
}


/* v22 refinements */
.hero-mobile-actions .btn,
.hero-copy-col .btn{
    font-size:18px;
}

.about-soft-strip span{
    font-size:14px;
}

@media (max-width: 767.98px){
    .about-soft-points span{
        font-size:14px;
    }
}


/* v23 global justified paragraphs */
p,
.hero-v3-lead,
.hero-v3-note,
.section-subtitle,
.section-side-text,
.service-card p,
.contact-mini-list span,
.about-soft-points span,
.about-soft-strip span,
.site-footer p{
    text-align: justify;
    text-align-last: left;
}

/* v24 Global Responsive Section Rhythm */
.section-head .eyebrow,
.services-section .eyebrow,
.contact-v3-section .eyebrow,
.about-v3-section .eyebrow{
  margin-bottom:18px;
}

.section-head h2,
.section-title,
.services-section h2,
.contact-v3-section .section-title{
  margin-bottom:22px;
}

.section-head p,
.section-subtitle,
.section-side-text,
.contact-v3-section .section-subtitle{
  margin-bottom:46px;
}

@media (max-width: 767.98px){
  .section-pad{
    padding-top:72px;
    padding-bottom:72px;
  }

  .section-head .eyebrow,
  .services-section .eyebrow,
  .contact-v3-section .eyebrow,
  .about-v3-section .eyebrow{
    margin-bottom:12px;
  }

  .section-head h2,
  .section-title,
  .services-section h2,
  .contact-v3-section .section-title{
    margin-bottom:16px;
  }

  .section-head p,
  .section-subtitle,
  .section-side-text,
  .contact-v3-section .section-subtitle{
    margin-bottom:28px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px){
  .section-pad{
    padding-top:90px;
    padding-bottom:90px;
  }

  .section-head .eyebrow,
  .services-section .eyebrow,
  .contact-v3-section .eyebrow,
  .about-v3-section .eyebrow{
    margin-bottom:14px;
  }

  .section-head h2,
  .section-title,
  .services-section h2,
  .contact-v3-section .section-title{
    margin-bottom:18px;
  }

  .section-head p,
  .section-subtitle,
  .section-side-text,
  .contact-v3-section .section-subtitle{
    margin-bottom:36px;
  }
}

@media (min-width: 992px){
  .section-pad{
    padding-top:110px;
    padding-bottom:110px;
  }
}


/* =====================================
   INTERNAL CONTACT PAGE - V25
   Standard internal hero + contact cards + form system.
   Index/home page remains untouched.
===================================== */
.internal-page-hero {
  position: relative;
  overflow: hidden;
  padding: 145px 0 78px;
  background:
    radial-gradient(circle at 18% 20%, rgba(250, 67, 43, .18), transparent 32%),
    radial-gradient(circle at 82% 15%, rgba(57, 123, 200, .20), transparent 36%),
    linear-gradient(135deg, #07111d 0%, #091827 50%, #050a12 100%);
}

.internal-page-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: .16;
  pointer-events: none;
}

.internal-hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.internal-page-hero h1 {
  color: #ffffff;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.08;
  margin: 0 0 22px;
}

.internal-page-hero p:not(.eyebrow) {
  color: rgba(255,255,255,.78);
  font-size: 18px;
  max-width: 820px;
  margin: 0 auto;
  text-align: justify;
  text-align-last: center;
}

.inner-hero-orb {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  filter: blur(34px);
  opacity: .36;
  pointer-events: none;
}

.inner-hero-orb-orange {
  left: -90px;
  bottom: -90px;
  background: rgba(250, 67, 43, .44);
}

.inner-hero-orb-blue {
  right: -80px;
  top: -70px;
  background: rgba(57, 123, 200, .45);
}

.contact-method-section {
  background: #ffffff;
  padding-bottom: 54px;
}

.contact-method-card {
  position: relative;
  display: block;
  height: 100%;
  min-height: 230px;
  padding: 32px 28px;
  background: #ffffff;
  border: 1px solid rgba(243,107,33,.28);
  box-shadow: 0 18px 46px rgba(16,16,20,.055);
  color: #15151c;
  text-decoration: none;
  overflow: hidden;
  transition: all .28s ease;
}

.contact-method-card:before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  opacity: .85;
}

.contact-method-card:hover {
  transform: translateY(-5px);
  background: #f3f8ff;
  border-color: rgba(57,123,200,.42);
  box-shadow: 0 24px 60px rgba(57,123,200,.15);
  color: #15151c;
}

.contact-method-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(243,107,33,.10);
  color: var(--orange);
  font-size: 25px;
  margin-bottom: 24px;
  transition: all .28s ease;
}

.contact-method-card:hover .contact-method-icon {
  background: var(--blue);
  color: #ffffff;
}

.contact-method-label {
  display: block;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.contact-method-card strong {
  display: block;
  font-size: 20px;
  line-height: 1.35;
  color: #15151c;
  margin-bottom: 12px;
}

.contact-method-card small {
  display: block;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.contact-page-form-section {
  background: #ffffff;
}

.contact-page-copy {
  position: sticky;
  top: 110px;
}

.contact-page-list span {
  align-items: flex-start;
  line-height: 1.55;
}

.contact-page-form-card {
  border-radius: 0;
  border-left: 4px solid var(--orange);
  box-shadow: 0 24px 70px rgba(16,16,20,.085);
}

.contact-page-form-card .form-control,
.contact-page-form-card .form-select {
  min-height: 56px;
  background: #f6f8fc;
  border: 1px solid #edf0f5;
  border-radius: 0;
  padding: 15px 16px;
  box-shadow: none;
}

.contact-page-form-card textarea.form-control {
  min-height: 150px;
}

.contact-page-form-card .form-control:focus,
.contact-page-form-card .form-select:focus {
  border-color: rgba(57,123,200,.55);
  background: #ffffff;
  box-shadow: 0 0 0 .2rem rgba(57,123,200,.08);
}

.contact-page-form-card .btn-dm {
  min-height: 54px;
  border-radius: 0;
  padding-left: 30px;
  padding-right: 30px;
}

.contact-process-strip {
  background: #ffffff;
  padding: 0 0 90px;
}

.contact-process-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(57,123,200,.18);
  background: #07111d;
  box-shadow: 0 22px 60px rgba(7,17,29,.14);
}

.contact-process-box div {
  position: relative;
  padding: 26px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.10);
}

.contact-process-box div:last-child {
  border-right: 0;
}

.contact-process-box span {
  display: block;
  color: var(--orange);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .08em;
  margin-bottom: 8px;
}

.contact-process-box strong {
  display: block;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.35;
}

@media (min-width: 768px) and (max-width: 991px) {
  .internal-page-hero {
    padding: 132px 0 70px;
  }

  .internal-page-hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .contact-process-box {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-process-box div:nth-child(2) {
    border-right: 0;
  }

  .contact-process-box div:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,.10);
  }
}

@media (max-width: 575px) {
  .internal-page-hero {
    padding: 122px 0 62px;
  }

  .internal-page-hero h1 {
    font-size: 38px;
  }

  .internal-page-hero p:not(.eyebrow) {
    font-size: 16px;
    text-align-last: left;
  }

  .contact-method-section {
    padding-top: 66px;
    padding-bottom: 42px;
  }

  .contact-method-card {
    min-height: auto;
    padding: 26px 22px;
  }

  .contact-page-form-section {
    padding-top: 0;
  }

  .contact-page-copy {
    position: static;
  }

  .contact-page-form-card {
    padding: 24px;
  }

  .contact-process-strip {
    padding-bottom: 72px;
  }

  .contact-process-box {
    grid-template-columns: 1fr;
  }

  .contact-process-box div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.10);
  }

  .contact-process-box div:last-child {
    border-bottom: 0;
  }
}

/* =====================================
   DIGIMITRA V27 - About page editorial redesign
   More breathing space, dual-colour title emphasis, varied containers/cards
===================================== */
.about-v27-hero h1 span,
.about-v27-intro .section-title span,
.about-v27-journey .section-head h2 span,
.about-v27-understanding .section-title span,
.about-v27-proof .section-title span,
.about-v27-thinking .section-head h2 span {
  color: var(--orange);
}

.about-v27-hero.internal-page-hero {
  padding-top: 154px;
  padding-bottom: 96px;
}

.about-v27-hero .internal-hero-content {
  max-width: 980px;
}

.about-v27-hero h1 {
  max-width: 980px;
}

.about-v27-intro,
.about-v27-journey,
.about-v27-proof,
.about-v27-thinking {
  background: #ffffff;
}

.about-v27-intro .section-title,
.about-v27-journey .section-head h2,
.about-v27-proof .section-title,
.about-v27-thinking .section-head h2 {
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.about-v27-intro .section-subtitle,
.about-v27-proof .section-subtitle {
  max-width: 680px;
}

.about-v27-founder-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #07111d 0%, #081928 100%);
  color: #ffffff;
  padding: 54px 48px;
  border-radius: 0;
  border-left: 5px solid var(--orange);
  box-shadow: 0 26px 70px rgba(7,17,29,.18);
}

.about-v27-founder-card::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -120px;
  top: -140px;
  background: radial-gradient(circle, rgba(57,123,200,.35), transparent 68%);
  pointer-events: none;
}

.about-v27-founder-card > * {
  position: relative;
  z-index: 1;
}

.founder-card-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.founder-card-label::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--orange);
}

.about-v27-founder-card h3 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -0.045em;
  margin-bottom: 22px;
  color: #ffffff;
}

.about-v27-founder-card p {
  color: rgba(255,255,255,.72);
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 34px;
}

.founder-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.founder-card-grid div {
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.10);
  padding: 18px 16px;
}

.founder-card-grid strong,
.founder-card-grid span {
  display: block;
}

.founder-card-grid strong {
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 7px;
}

.founder-card-grid span {
  color: rgba(255,255,255,.60);
  font-size: 13px;
  line-height: 1.45;
}

.about-v27-journey {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.about-journey-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1.15fr;
  gap: 24px;
  margin-top: 56px;
}

.journey-card {
  position: relative;
  min-height: 360px;
  padding: 34px 28px;
  background: #ffffff;
  border: 1px solid rgba(7,17,29,.09);
  box-shadow: 0 20px 56px rgba(7,17,29,.06);
  transition: .28s ease;
  display: flex;
  flex-direction: column;
}

.journey-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 78px rgba(7,17,29,.12);
  border-color: rgba(250,67,43,.28);
}

.journey-card span {
  position: absolute;
  right: 26px;
  top: 22px;
  font-size: 58px;
  line-height: 1;
  font-weight: 900;
  color: rgba(250,67,43,.10);
}

.journey-card i {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(57,123,200,.09);
  color: var(--blue);
  font-size: 30px;
  margin-bottom: 52px;
}

.journey-card h3 {
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}

.journey-card p {
  color: var(--muted);
  line-height: 1.85;
  margin: 0;
}

.journey-card.feature-card {
  background: #07111d;
  border-color: rgba(255,255,255,.08);
  color: #ffffff;
}

.journey-card.feature-card h3 {
  color: #ffffff;
}

.journey-card.feature-card p {
  color: rgba(255,255,255,.68);
}

.journey-card.feature-card i {
  background: rgba(250,67,43,.14);
  color: var(--orange);
}

.journey-card.blue-card {
  background: linear-gradient(145deg, #07111d 0%, #0b2d4e 100%);
}

.about-v27-understanding {
  background: #ffffff;
}

.about-v27-darkbox {
  background:
    radial-gradient(circle at 90% 10%, rgba(57,123,200,.18), transparent 32%),
    radial-gradient(circle at 10% 90%, rgba(250,67,43,.14), transparent 30%),
    linear-gradient(145deg, #07111d 0%, #081624 55%, #050b13 100%);
  padding: 72px 64px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 26px 70px rgba(7,17,29,.16);
}

.industry-insight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.industry-insight-grid div {
  min-height: 190px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  padding: 26px 24px;
  color: #ffffff;
}

.industry-insight-grid i {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  background: rgba(250,67,43,.12);
  font-size: 23px;
  margin-bottom: 24px;
}

.industry-insight-grid strong,
.industry-insight-grid span {
  display: block;
}

.industry-insight-grid strong {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.industry-insight-grid span {
  color: rgba(255,255,255,.62);
  font-size: 14px;
  line-height: 1.65;
}

.about-v27-proof {
  background: linear-gradient(180deg, #ffffff 0%, #fbf7f2 100%);
}

.about-v27-work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: end;
}

.about-v27-work-grid .about-showcase-card {
  height: 440px;
  border-radius: 0;
  border: 1px solid rgba(7,17,29,.12);
  box-shadow: 0 24px 64px rgba(7,17,29,.14);
}

.about-v27-work-grid .about-showcase-card.tall {
  height: 500px;
}

.about-v27-work-grid .about-showcase-card:hover img {
  transform: translateY(calc(-100% + 440px));
}

.about-v27-work-grid .about-showcase-card.tall:hover img {
  transform: translateY(calc(-100% + 500px));
}

.thinking-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 52px;
}

.thinking-card-grid div {
  background: #ffffff;
  border: 1px solid rgba(7,17,29,.08);
  border-top: 4px solid rgba(250,67,43,.72);
  box-shadow: 0 20px 56px rgba(7,17,29,.055);
  padding: 30px 28px;
  min-height: 280px;
  transition: .25s ease;
}

.thinking-card-grid div:hover {
  transform: translateY(-7px);
  border-color: rgba(57,123,200,.25);
  box-shadow: 0 28px 76px rgba(7,17,29,.105);
}

.thinking-card-grid i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(57,123,200,.10);
  color: var(--blue);
  font-size: 27px;
  margin-bottom: 28px;
}

.thinking-card-grid h3 {
  font-size: 21px;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.thinking-card-grid p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

.about-v27-cta {
  padding-top: 96px;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .about-journey-grid,
  .thinking-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-v27-darkbox {
    padding: 58px 42px;
  }
}

@media (max-width: 991px) {
  .about-v27-hero.internal-page-hero {
    padding-top: 132px;
    padding-bottom: 74px;
  }

  .about-v27-founder-card {
    padding: 40px 32px;
  }

  .founder-card-grid {
    grid-template-columns: 1fr;
  }

  .about-v27-work-grid {
    grid-template-columns: 1fr;
  }

  .about-v27-work-grid .about-showcase-card,
  .about-v27-work-grid .about-showcase-card.tall {
    height: 380px;
  }

  .about-v27-work-grid .about-showcase-card:hover img,
  .about-v27-work-grid .about-showcase-card.tall:hover img {
    transform: translateY(calc(-100% + 380px));
  }
}

@media (max-width: 575px) {
  .about-v27-hero.internal-page-hero {
    padding-top: 124px;
    padding-bottom: 66px;
  }

  .about-v27-intro .section-title,
  .about-v27-journey .section-head h2,
  .about-v27-proof .section-title,
  .about-v27-thinking .section-head h2 {
    font-size: 36px;
  }

  .about-journey-grid,
  .industry-insight-grid,
  .thinking-card-grid {
    grid-template-columns: 1fr;
  }

  .about-journey-grid {
    margin-top: 36px;
  }

  .journey-card {
    min-height: auto;
    padding: 30px 24px;
  }

  .journey-card i {
    margin-bottom: 36px;
  }

  .about-v27-darkbox {
    padding: 40px 22px;
  }

  .industry-insight-grid div,
  .thinking-card-grid div {
    min-height: auto;
  }
}


/* ===== Services page v30 clean practical layout ===== */
.services-page .internal-page-hero h1 span {
  color: var(--orange);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.services-inner-hero .internal-hero-content {
  max-width: 950px;
}

.services-intent-section {
  background: #ffffff;
}

.services-intent-box {
  border: 1px solid var(--line);
  border-left: 5px solid var(--orange);
  background: #ffffff;
  padding: 44px;
  box-shadow: 0 22px 70px rgba(16, 16, 20, 0.06);
}

.services-intent-box .section-title {
  margin-bottom: 0;
}

.services-page-head {
  max-width: 980px;
  margin-bottom: 46px;
}

.services-page-head h2 {
  max-width: 100%;
}

.services-offer-section {
  background: #ffffff;
}

.service-offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 34px 28px 30px;
  background: #ffffff;
  border: 1px solid rgba(243, 107, 33, 0.26);
  color: var(--text);
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(16, 16, 20, 0.055);
  transition: all 0.28s ease;
}

.service-offer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18, 111, 214, 0.08), rgba(243, 107, 33, 0.05));
  opacity: 0;
  transition: opacity 0.28s ease;
}

.service-offer-card > * {
  position: relative;
  z-index: 1;
}

.service-offer-card:hover {
  transform: translateY(-8px);
  border-color: rgba(18, 111, 214, 0.42);
  background: #f3f8ff;
  color: var(--text);
  box-shadow: 0 28px 80px rgba(18, 111, 214, 0.13);
}

.service-offer-card:hover::before {
  opacity: 1;
}

.service-offer-no {
  position: absolute;
  right: 22px;
  top: 18px;
  color: rgba(243, 107, 33, 0.14);
  font-size: 54px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.service-offer-icon {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: rgba(18, 111, 214, 0.08);
  color: var(--blue);
  font-size: 27px;
  margin-bottom: 24px;
  transition: all 0.28s ease;
}

.service-offer-card:hover .service-offer-icon {
  background: var(--blue);
  color: #ffffff;
}

.service-offer-card h3 {
  font-size: 23px;
  line-height: 1.16;
  margin-bottom: 16px;
}

.service-offer-card p {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 26px;
}

.service-offer-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 800;
  font-size: 14px;
}

.service-offer-card:hover .service-offer-link {
  color: var(--blue);
}

.services-fit-section {
  background: #f7f9fd;
}

.services-fit-copy {
  height: 100%;
  background: #ffffff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--orange);
  padding: 42px;
  box-shadow: 0 20px 60px rgba(16, 16, 20, 0.05);
}

.services-fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  height: 100%;
}

.services-fit-grid div {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 30px;
  box-shadow: 0 18px 50px rgba(16, 16, 20, 0.045);
}

.services-fit-grid i {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  background: rgba(243, 107, 33, 0.10);
  color: var(--orange);
  font-size: 22px;
  margin-bottom: 20px;
}

.services-fit-grid strong {
  display: block;
  font-size: 20px;
  color: #15151c;
  margin-bottom: 9px;
}

.services-fit-grid span {
  display: block;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.services-cta-section .section-title {
  max-width: 820px;
}

.services-cta-section .section-subtitle {
  max-width: 760px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .services-intent-box,
  .services-fit-copy {
    padding: 38px;
  }
}

@media (max-width: 767px) {
  .services-intent-box,
  .services-fit-copy {
    padding: 30px 24px;
  }
  .services-fit-grid {
    grid-template-columns: 1fr;
  }
  .service-offer-card {
    padding: 30px 24px 28px;
  }
  .service-offer-card h3 {
    font-size: 22px;
  }
  .service-offer-card p {
    font-size: 15px;
  }
}

/* ===== Domain Names service page v32 ===== */
.domain-page-hero h1 span {
  color: var(--orange);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.domain-intro-section,
.domain-scope-section,
.domain-faq-section,
.related-services-section {
  background: #ffffff;
}

.domain-intro-card {
  border-left: 5px solid var(--orange);
  background: #ffffff;
  padding: 42px;
  box-shadow: 0 22px 70px rgba(16, 16, 20, 0.06);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.domain-intro-card p:last-child {
  margin-bottom: 0;
}

.domain-tld-section {
  background: #ffffff;
  padding-top: 0;
}

.domain-dark-box {
  background:
    radial-gradient(circle at 15% 15%, rgba(243, 107, 33, 0.17), transparent 30%),
    radial-gradient(circle at 85% 25%, rgba(18, 111, 214, 0.20), transparent 36%),
    linear-gradient(135deg, #07111d 0%, #091827 54%, #050a12 100%);
  padding: 64px;
  box-shadow: 0 28px 90px rgba(7, 17, 29, 0.18);
  overflow: hidden;
}

.tld-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.tld-card {
  min-height: 220px;
  padding: 30px 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.28s ease;
}

.tld-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.12);
  border-color: rgba(243,107,33,0.42);
}

.tld-card span {
  display: block;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -0.08em;
  font-weight: 900;
  color: #ffffff;
}

.tld-card p {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  line-height: 1.7;
  margin: 28px 0 0;
}

.domain-support-card {
  height: 100%;
  background: #ffffff;
  border: 1px solid rgba(243,107,33,0.25);
  padding: 34px 28px;
  box-shadow: 0 18px 48px rgba(16,16,20,0.055);
  transition: all 0.28s ease;
}

.domain-support-card:hover {
  transform: translateY(-7px);
  background: #f3f8ff;
  border-color: rgba(18,111,214,0.38);
  box-shadow: 0 26px 74px rgba(18,111,214,0.12);
}

.domain-support-card i {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: rgba(18,111,214,0.08);
  color: var(--blue);
  font-size: 26px;
  margin-bottom: 24px;
  transition: all 0.28s ease;
}

.domain-support-card:hover i {
  background: var(--blue);
  color: #ffffff;
}

.domain-support-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.domain-support-card p {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 0;
}

.domain-control-section {
  background: #f7f9fd;
}

.domain-control-title,
.domain-control-card {
  height: 100%;
}

.domain-control-card {
  background: #ffffff;
  border-left: 5px solid var(--orange);
  padding: 42px;
  box-shadow: 0 22px 70px rgba(16,16,20,0.06);
}

.domain-control-card p {
  font-size: 17px;
}

.domain-control-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.domain-control-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #24242b;
  font-weight: 800;
  background: #f8fbff;
  border: 1px solid var(--line);
  padding: 16px;
}

.domain-control-points i {
  color: var(--orange);
  font-size: 20px;
}

.domain-faq {
  max-width: 980px;
  margin-top: 44px;
}

.domain-faq .accordion-item {
  border: 1px solid var(--line);
  border-radius: 0;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 14px 42px rgba(16,16,20,0.035);
}

.domain-faq .accordion-button {
  font-weight: 800;
  font-size: 17px;
  padding: 22px 24px;
  color: #15151c;
  background: #ffffff;
  box-shadow: none;
}

.domain-faq .accordion-button:not(.collapsed) {
  color: var(--blue);
  background: #f3f8ff;
}

.domain-faq .accordion-body {
  color: var(--muted);
  line-height: 1.8;
  padding: 0 24px 24px;
  text-align: justify;
  text-align-last: left;
}

@media (max-width: 991px) {
  .domain-dark-box {
    padding: 48px 34px;
  }
  .tld-card-grid {
    grid-template-columns: 1fr;
  }
  .tld-card {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .domain-intro-card,
  .domain-control-card {
    padding: 32px 24px;
  }
  .domain-dark-box {
    padding: 40px 22px;
  }
  .domain-control-points {
    grid-template-columns: 1fr;
  }
  .domain-faq .accordion-button {
    font-size: 16px;
    padding: 20px;
  }
  .domain-faq .accordion-body {
    padding: 0 20px 22px;
  }
}


/* ===== Hosting / VPS service page v34 ===== */
.hosting-page-hero h1 span {
  color: var(--orange);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.hosting-intro-section,
.hosting-support-section,
.hosting-faq-section {
  background: #ffffff;
}

.hosting-intro-card {
  border-left: 5px solid var(--orange);
  background: #ffffff;
  padding: 42px;
  box-shadow: 0 22px 70px rgba(16, 16, 20, 0.06);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hosting-intro-card p:last-child {
  margin-bottom: 0;
}

.hosting-types-section {
  background: #ffffff;
  padding-top: 0;
}

.hosting-dark-box {
  background:
    radial-gradient(circle at 15% 15%, rgba(243, 107, 33, 0.16), transparent 30%),
    radial-gradient(circle at 86% 24%, rgba(18, 111, 214, 0.20), transparent 36%),
    linear-gradient(135deg, #07111d 0%, #091827 54%, #050a12 100%);
  padding: 64px;
  box-shadow: 0 28px 90px rgba(7, 17, 29, 0.18);
  overflow: hidden;
}

.hosting-dark-box .section-head h2 {
  color: #ffffff;
}

.hosting-dark-box .section-head {
  max-width: 900px;
}

.hosting-type-card {
  position: relative;
  min-height: 100%;
  padding: 32px 26px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: #ffffff;
  overflow: hidden;
  transition: all 0.28s ease;
}

.hosting-type-card:hover {
  transform: translateY(-7px);
  background: rgba(255,255,255,0.12);
  border-color: rgba(243,107,33,0.42);
}

.hosting-type-card i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.10);
  color: var(--orange);
  font-size: 27px;
  margin-bottom: 30px;
}

.hosting-type-card span {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 48px;
  line-height: 1;
  font-weight: 900;
  color: rgba(255,255,255,0.10);
  letter-spacing: -0.08em;
}

.hosting-type-card h3 {
  color: #ffffff;
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hosting-type-card p {
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 0;
}

.hosting-fit-section {
  background: #f7f9fd;
}

.hosting-fit-copy,
.hosting-fit-grid {
  height: 100%;
}

.hosting-fit-copy {
  background: #ffffff;
  border-left: 5px solid var(--orange);
  padding: 42px;
  box-shadow: 0 22px 70px rgba(16,16,20,0.06);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hosting-fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.hosting-fit-grid div {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 30px;
  box-shadow: 0 18px 50px rgba(16,16,20,0.045);
}

.hosting-fit-grid i {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  background: rgba(18,111,214,0.08);
  color: var(--blue);
  font-size: 23px;
  margin-bottom: 20px;
}

.hosting-fit-grid strong {
  display: block;
  font-size: 20px;
  margin-bottom: 9px;
  color: #15151c;
}

.hosting-fit-grid span {
  display: block;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.hosting-support-card {
  height: 100%;
  background: #ffffff;
  border: 1px solid rgba(243,107,33,0.25);
  padding: 34px 28px;
  box-shadow: 0 18px 48px rgba(16,16,20,0.055);
  transition: all 0.28s ease;
}

.hosting-support-card:hover {
  transform: translateY(-7px);
  background: #f3f8ff;
  border-color: rgba(18,111,214,0.38);
  box-shadow: 0 26px 74px rgba(18,111,214,0.12);
}

.hosting-support-card i {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: rgba(18,111,214,0.08);
  color: var(--blue);
  font-size: 26px;
  margin-bottom: 24px;
  transition: all 0.28s ease;
}

.hosting-support-card:hover i {
  background: var(--blue);
  color: #ffffff;
}

.hosting-support-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.hosting-support-card p {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 0;
}

.hosting-faq {
  max-width: 980px;
  margin-top: 44px;
}

@media (max-width: 991px) {
  .hosting-dark-box {
    padding: 48px 34px;
  }
  .hosting-fit-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .hosting-intro-card,
  .hosting-fit-copy {
    padding: 32px 24px;
  }
  .hosting-dark-box {
    padding: 40px 22px;
  }
  .hosting-type-card {
    min-height: auto;
  }
}


/* =====================================
   SEO SERVICE PAGE - V35
   Practical search visibility page system.
===================================== */
.seo-page-hero h1 span {
  color: var(--orange);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.seo-intro-section,
.seo-support-section,
.seo-faq-section {
  background: #ffffff;
}

.seo-intro-card,
.seo-fit-copy {
  border-left: 5px solid var(--orange);
  background: #ffffff;
  padding: 42px;
  box-shadow: 0 22px 70px rgba(16, 16, 20, 0.06);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.seo-intro-card p:last-child,
.seo-fit-copy p:last-child {
  margin-bottom: 0;
}

.seo-focus-section {
  background: #ffffff;
  padding-top: 0;
}

.seo-dark-box {
  background:
    radial-gradient(circle at 15% 15%, rgba(243, 107, 33, 0.16), transparent 30%),
    radial-gradient(circle at 86% 24%, rgba(18, 111, 214, 0.20), transparent 36%),
    linear-gradient(135deg, #07111d 0%, #091827 54%, #050a12 100%);
  padding: 64px;
  box-shadow: 0 28px 90px rgba(7, 17, 29, 0.18);
  overflow: hidden;
}

.seo-dark-box .section-head,
.seo-dark-box .section-head h2 {
  color: #ffffff;
}

.seo-focus-card {
  position: relative;
  min-height: 100%;
  padding: 32px 26px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: #ffffff;
  overflow: hidden;
  transition: all 0.28s ease;
}

.seo-focus-card:hover {
  transform: translateY(-7px);
  background: rgba(255,255,255,0.12);
  border-color: rgba(243,107,33,0.42);
}

.seo-focus-card i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.10);
  color: var(--orange);
  font-size: 27px;
  margin-bottom: 30px;
}

.seo-focus-card span {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 48px;
  line-height: 1;
  font-weight: 900;
  color: rgba(255,255,255,0.10);
  letter-spacing: -0.08em;
}

.seo-focus-card h3 {
  color: #ffffff;
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.seo-focus-card p {
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 0;
}

.seo-fit-section {
  background: #f7f9fd;
}

.seo-fit-copy,
.seo-fit-grid {
  height: 100%;
}

.seo-fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.seo-fit-grid div {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 30px;
  box-shadow: 0 18px 50px rgba(16,16,20,0.045);
}

.seo-fit-grid i {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  background: rgba(18,111,214,0.08);
  color: var(--blue);
  font-size: 23px;
  margin-bottom: 20px;
}

.seo-fit-grid strong {
  display: block;
  font-size: 20px;
  margin-bottom: 9px;
  color: #15151c;
}

.seo-fit-grid span {
  display: block;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.seo-support-card {
  height: 100%;
  background: #ffffff;
  border: 1px solid rgba(243,107,33,0.25);
  padding: 34px 28px;
  box-shadow: 0 18px 48px rgba(16,16,20,0.055);
  transition: all 0.28s ease;
}

.seo-support-card:hover {
  transform: translateY(-7px);
  background: #f3f8ff;
  border-color: rgba(18,111,214,0.38);
  box-shadow: 0 26px 74px rgba(18,111,214,0.12);
}

.seo-support-card i {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: rgba(18,111,214,0.08);
  color: var(--blue);
  font-size: 26px;
  margin-bottom: 24px;
  transition: all 0.28s ease;
}

.seo-support-card:hover i {
  background: var(--blue);
  color: #ffffff;
}

.seo-support-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.seo-support-card p {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 0;
}

.seo-faq {
  max-width: 980px;
  margin-top: 44px;
}

@media (max-width: 991px) {
  .seo-dark-box {
    padding: 48px 34px;
  }
  .seo-fit-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .seo-intro-card,
  .seo-fit-copy {
    padding: 32px 24px;
  }
  .seo-dark-box {
    padding: 40px 22px;
  }
  .seo-focus-card {
    min-height: auto;
  }
}


/* ===== Content Writing page v36 practical business content layout ===== */
.content-writing-page .internal-page-hero h1 span {
  color: var(--orange);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.content-writing-hero .internal-hero-content {
  max-width: 980px;
}

.cw-purpose-section {
  background: #ffffff;
}

.cw-purpose-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--orange);
  padding: 44px;
  box-shadow: 0 22px 70px rgba(16, 16, 20, 0.06);
}

.cw-purpose-card p:last-child,
.cw-process-copy p:last-child {
  margin-bottom: 0;
}

.cw-fit-section {
  background: #ffffff;
}

.cw-dark-box {
  background: linear-gradient(135deg, #07111d 0%, #0b1a2b 100%);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 64px 46px;
  box-shadow: 0 32px 90px rgba(7, 17, 29, 0.20);
}

.cw-dark-box .section-head h2 {
  color: #ffffff;
  max-width: 920px;
}

.cw-fit-card {
  position: relative;
  min-height: 100%;
  padding: 32px 28px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.12);
  color: #ffffff;
  overflow: hidden;
}

.cw-fit-card i {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(243, 107, 33, 0.15);
  color: var(--orange);
  font-size: 25px;
  margin-bottom: 30px;
}

.cw-fit-card span {
  position: absolute;
  right: 22px;
  top: 20px;
  color: rgba(255,255,255,0.18);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.cw-fit-card h3 {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 14px;
}

.cw-fit-card p {
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 0;
}

.cw-writing-section {
  background: #f7f9fd;
}

.cw-work-card {
  height: 100%;
  background: #ffffff;
  border: 1px solid rgba(243, 107, 33, 0.22);
  padding: 34px 30px;
  box-shadow: 0 18px 52px rgba(16, 16, 20, 0.055);
  transition: all 0.28s ease;
}

.cw-work-card:hover {
  transform: translateY(-7px);
  background: #f3f8ff;
  border-color: rgba(18, 111, 214, 0.40);
  box-shadow: 0 28px 80px rgba(18, 111, 214, 0.12);
}

.cw-work-card i {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(18, 111, 214, 0.08);
  color: var(--blue);
  font-size: 25px;
  margin-bottom: 26px;
  transition: all 0.28s ease;
}

.cw-work-card:hover i {
  background: var(--blue);
  color: #ffffff;
}

.cw-work-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.cw-work-card p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 0;
}

.cw-process-section {
  background: #ffffff;
}

.cw-process-copy {
  height: 100%;
  background: #ffffff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--orange);
  padding: 42px;
  box-shadow: 0 20px 60px rgba(16, 16, 20, 0.05);
}

.cw-process-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  height: 100%;
}

.cw-process-list div {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 30px;
  box-shadow: 0 18px 50px rgba(16, 16, 20, 0.045);
}

.cw-process-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(243, 107, 33, 0.11);
  color: var(--orange);
  font-weight: 900;
  margin-bottom: 22px;
}

.cw-process-list strong {
  display: block;
  font-size: 20px;
  color: #15151c;
  margin-bottom: 9px;
}

.cw-process-list p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0;
}

.cw-faq-section {
  background: #f7f9fd;
}

.cw-faq {
  max-width: 960px;
}

@media (max-width: 991px) {
  .cw-dark-box {
    padding: 48px 26px;
  }
  .cw-purpose-card,
  .cw-process-copy {
    padding: 34px 28px;
  }
  .cw-process-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .cw-fit-card,
  .cw-work-card,
  .cw-process-list div {
    padding: 28px 22px;
  }
  .cw-dark-box {
    padding: 40px 18px;
  }
}


/* ===== Business Listing page v37 practical listing presence layout ===== */
.business-listing-page .internal-page-hero h1 span {
  color: var(--orange);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.business-listing-hero .internal-hero-content {
  max-width: 980px;
}

.bl-intro-section,
.bl-support-section,
.bl-faq-section {
  background: #ffffff;
}

.bl-intro-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--orange);
  padding: 44px;
  box-shadow: 0 22px 70px rgba(16, 16, 20, 0.06);
}

.bl-intro-card p:last-child,
.bl-experience-copy p:last-child {
  margin-bottom: 0;
}

.bl-platform-section {
  background: #ffffff;
}

.bl-dark-box {
  background: linear-gradient(135deg, #07111d 0%, #0b1a2b 100%);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 64px 46px;
  box-shadow: 0 32px 90px rgba(7, 17, 29, 0.20);
}

.bl-dark-box .section-head h2 {
  color: #ffffff;
  max-width: 960px;
}

.bl-platform-card {
  position: relative;
  min-height: 100%;
  padding: 32px 28px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.12);
  color: #ffffff;
  overflow: hidden;
}

.bl-platform-card i {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.10);
  color: var(--orange);
  font-size: 27px;
  margin-bottom: 24px;
}

.bl-platform-card h3 {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 14px;
}

.bl-platform-card p {
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 0;
}

.bl-support-card {
  height: 100%;
  background: #ffffff;
  border: 1px solid rgba(243,107,33,0.25);
  padding: 34px 28px;
  box-shadow: 0 18px 48px rgba(16,16,20,0.055);
  transition: all 0.28s ease;
}

.bl-support-card:hover {
  transform: translateY(-7px);
  background: #f3f8ff;
  border-color: rgba(18,111,214,0.38);
  box-shadow: 0 26px 74px rgba(18,111,214,0.12);
}

.bl-support-card i {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: rgba(18,111,214,0.08);
  color: var(--blue);
  font-size: 26px;
  margin-bottom: 24px;
  transition: all 0.28s ease;
}

.bl-support-card:hover i {
  background: var(--blue);
  color: #ffffff;
}

.bl-support-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.bl-support-card p {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 0;
}

.bl-experience-section {
  background: #f7f9fd;
}

.bl-experience-copy,
.bl-experience-grid {
  height: 100%;
}

.bl-experience-copy {
  background: #ffffff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--orange);
  padding: 44px;
  box-shadow: 0 20px 60px rgba(16,16,20,0.055);
}

.bl-experience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.bl-experience-grid div {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 30px;
  box-shadow: 0 18px 50px rgba(16,16,20,0.045);
}

.bl-experience-grid i {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  background: rgba(18,111,214,0.08);
  color: var(--blue);
  font-size: 23px;
  margin-bottom: 20px;
}

.bl-experience-grid strong {
  display: block;
  font-size: 20px;
  margin-bottom: 9px;
  color: #15151c;
}

.bl-experience-grid span {
  display: block;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.bl-faq {
  max-width: 980px;
  margin-top: 44px;
}

.bl-faq .accordion-item {
  border: 1px solid var(--line);
  margin-bottom: 14px;
  box-shadow: 0 14px 40px rgba(16,16,20,0.04);
}

.bl-faq .accordion-button {
  font-weight: 800;
  font-size: 17px;
  padding: 22px 24px;
}

.bl-faq .accordion-button:not(.collapsed) {
  color: var(--blue);
  background: #f3f8ff;
}

.bl-faq .accordion-body {
  color: var(--muted);
  line-height: 1.8;
  padding: 0 24px 24px;
}

@media (max-width: 991px) {
  .bl-dark-box {
    padding: 48px 34px;
  }
  .bl-experience-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .bl-intro-card,
  .bl-experience-copy {
    padding: 32px 24px;
  }
  .bl-dark-box {
    padding: 40px 22px;
  }
  .bl-faq .accordion-button {
    font-size: 16px;
    padding: 20px;
  }
  .bl-faq .accordion-body {
    padding: 0 20px 22px;
  }
}


/* ===== Product Listing page v38 practical catalogue presentation layout ===== */
.product-listing-page .internal-page-hero h1 span {
  color: var(--orange);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.product-listing-hero .internal-hero-content {
  max-width: 980px;
}

.pl-purpose-section,
.pl-fit-section,
.pl-method-section,
.pl-faq-section {
  background: #ffffff;
}

.pl-purpose-card,
.pl-method-copy {
  background: #ffffff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--orange);
  padding: 44px;
  box-shadow: 0 22px 70px rgba(16, 16, 20, 0.06);
}

.pl-purpose-card p:last-child,
.pl-method-copy p:last-child {
  margin-bottom: 0;
}

.pl-dark-box {
  background: linear-gradient(135deg, #07111d 0%, #0b1a2b 100%);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 64px 46px;
  box-shadow: 0 32px 90px rgba(7, 17, 29, 0.20);
}

.pl-dark-box .section-head h2 {
  color: #ffffff;
  max-width: 920px;
}

.pl-fit-card {
  position: relative;
  min-height: 100%;
  padding: 32px 28px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.12);
  color: #ffffff;
  overflow: hidden;
}

.pl-fit-card i {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(243, 107, 33, 0.15);
  color: var(--orange);
  font-size: 25px;
  margin-bottom: 30px;
}

.pl-fit-card span {
  position: absolute;
  right: 22px;
  top: 20px;
  color: rgba(255,255,255,0.18);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.pl-fit-card h3 {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 14px;
}

.pl-fit-card p {
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 0;
}

.pl-support-section {
  background: #f7f9fd;
}

.pl-support-card {
  height: 100%;
  background: #ffffff;
  border: 1px solid rgba(243, 107, 33, 0.22);
  padding: 34px 30px;
  box-shadow: 0 18px 52px rgba(16, 16, 20, 0.055);
  transition: all 0.28s ease;
}

.pl-support-card:hover {
  transform: translateY(-7px);
  background: #f3f8ff;
  border-color: rgba(18, 111, 214, 0.40);
  box-shadow: 0 28px 80px rgba(18, 111, 214, 0.12);
}

.pl-support-card i {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(18, 111, 214, 0.08);
  color: var(--blue);
  font-size: 25px;
  margin-bottom: 26px;
  transition: all 0.28s ease;
}

.pl-support-card:hover i {
  background: var(--blue);
  color: #ffffff;
}

.pl-support-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.pl-support-card p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 0;
}

.pl-method-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  height: 100%;
}

.pl-method-grid div {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 30px;
  box-shadow: 0 18px 50px rgba(16, 16, 20, 0.045);
}

.pl-method-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(243, 107, 33, 0.11);
  color: var(--orange);
  font-weight: 900;
  margin-bottom: 22px;
}

.pl-method-grid strong {
  display: block;
  font-size: 20px;
  color: #15151c;
  margin-bottom: 9px;
}

.pl-method-grid p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0;
}

.pl-faq {
  max-width: 980px;
  margin-top: 44px;
}

.pl-faq .accordion-item {
  border: 1px solid rgba(18, 111, 214, 0.12);
  margin-bottom: 14px;
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(16, 16, 20, 0.04);
}

.pl-faq .accordion-button {
  font-weight: 700;
  font-size: 17px;
  padding: 22px 24px;
  box-shadow: none;
}

.pl-faq .accordion-button:not(.collapsed) {
  color: #ffffff;
  background: var(--blue);
}

.pl-faq .accordion-body {
  color: var(--muted);
  line-height: 1.75;
  padding: 22px 24px 26px;
}

@media (max-width: 991px) {
  .pl-dark-box {
    padding: 48px 34px;
  }
  .pl-method-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .pl-purpose-card,
  .pl-method-copy {
    padding: 32px 24px;
  }
  .pl-dark-box {
    padding: 40px 22px;
  }
  .pl-fit-card {
    min-height: auto;
  }
  .pl-faq .accordion-button {
    font-size: 16px;
    padding: 20px 18px;
  }
  .pl-faq .accordion-body {
    padding: 20px 18px 22px;
  }
}


/* =====================================
   WEBSITE MAINTENANCE PAGE - V40
   Practical service page for WordPress, OpenCart, PHP, HTML and routine website updates.
===================================== */
.website-maintenance-page .internal-page-hero h1 span {
  color: var(--orange);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.maintenance-purpose-section,
.maintenance-support-section,
.maintenance-faq-section {
  background: #ffffff;
}

.maintenance-purpose-card {
  border-left: 5px solid var(--orange);
  background: #ffffff;
  padding: 42px;
  box-shadow: 0 22px 70px rgba(16, 16, 20, 0.06);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.maintenance-purpose-card p:last-child {
  margin-bottom: 0;
}

.maintenance-care-section {
  background: #ffffff;
  padding-top: 0;
}

.maintenance-dark-box {
  background:
    radial-gradient(circle at 15% 15%, rgba(243, 107, 33, 0.16), transparent 30%),
    radial-gradient(circle at 86% 24%, rgba(18, 111, 214, 0.20), transparent 36%),
    linear-gradient(135deg, #07111d 0%, #091827 54%, #050a12 100%);
  padding: 64px;
  box-shadow: 0 28px 90px rgba(7, 17, 29, 0.18);
  overflow: hidden;
}

.maintenance-dark-box .section-head,
.maintenance-dark-box .section-head h2 {
  max-width: 920px;
  color: #ffffff;
}

.maintenance-care-card {
  position: relative;
  min-height: 100%;
  padding: 32px 26px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: #ffffff;
  overflow: hidden;
  transition: all 0.28s ease;
}

.maintenance-care-card:hover {
  transform: translateY(-7px);
  background: rgba(255,255,255,0.12);
  border-color: rgba(243,107,33,0.42);
}

.maintenance-care-card i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.10);
  color: var(--orange);
  font-size: 27px;
  margin-bottom: 30px;
}

.maintenance-care-card span {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 48px;
  line-height: 1;
  font-weight: 900;
  color: rgba(255,255,255,0.10);
  letter-spacing: -0.08em;
}

.maintenance-care-card h3 {
  color: #ffffff;
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.maintenance-care-card p {
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 0;
}

.maintenance-support-card {
  height: 100%;
  background: #ffffff;
  border: 1px solid rgba(243,107,33,0.25);
  padding: 34px 28px;
  box-shadow: 0 18px 48px rgba(16,16,20,0.055);
  transition: all 0.28s ease;
}

.maintenance-support-card:hover {
  transform: translateY(-7px);
  background: #f3f8ff;
  border-color: rgba(18,111,214,0.38);
  box-shadow: 0 26px 74px rgba(18,111,214,0.12);
}

.maintenance-support-card i {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: rgba(18,111,214,0.08);
  color: var(--blue);
  font-size: 26px;
  margin-bottom: 24px;
  transition: all 0.28s ease;
}

.maintenance-support-card:hover i {
  background: var(--blue);
  color: #ffffff;
}

.maintenance-support-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.maintenance-support-card p {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 0;
}

.maintenance-fit-section {
  background: #f7f9fd;
}

.maintenance-fit-copy,
.maintenance-fit-grid {
  height: 100%;
}

.maintenance-fit-copy {
  background: #ffffff;
  border-left: 5px solid var(--orange);
  padding: 42px;
  box-shadow: 0 22px 70px rgba(16,16,20,0.06);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.maintenance-fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.maintenance-fit-grid div {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 30px;
  box-shadow: 0 18px 50px rgba(16,16,20,0.045);
}

.maintenance-fit-grid i {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  background: rgba(18,111,214,0.08);
  color: var(--blue);
  font-size: 23px;
  margin-bottom: 20px;
}

.maintenance-fit-grid strong {
  display: block;
  font-size: 20px;
  margin-bottom: 9px;
  color: #15151c;
}

.maintenance-fit-grid span {
  display: block;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.maintenance-faq {
  max-width: 980px;
  margin-top: 44px;
}

.maintenance-faq .accordion-item {
  border: 1px solid var(--line);
  margin-bottom: 14px;
  box-shadow: 0 12px 36px rgba(16,16,20,0.04);
}

.maintenance-faq .accordion-button {
  font-weight: 800;
  font-size: 17px;
  padding: 22px 24px;
  box-shadow: none;
}

.maintenance-faq .accordion-button:not(.collapsed) {
  color: var(--blue);
  background: #f3f8ff;
}

.maintenance-faq .accordion-body {
  color: var(--muted);
  line-height: 1.75;
  padding: 0 24px 24px;
}

@media (max-width: 991px) {
  .maintenance-dark-box {
    padding: 48px 34px;
  }
  .maintenance-fit-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .maintenance-purpose-card,
  .maintenance-fit-copy {
    padding: 32px 24px;
  }
  .maintenance-dark-box {
    padding: 40px 22px;
  }
  .maintenance-care-card {
    min-height: auto;
  }
}


/* V40 maintenance refinement: simple business-friendly update support */
.website-maintenance-page .maintenance-purpose-card p,
.website-maintenance-page .maintenance-care-card p,
.website-maintenance-page .maintenance-support-card p,
.website-maintenance-page .maintenance-fit-copy p,
.website-maintenance-page .maintenance-fit-grid span,
.website-maintenance-page .maintenance-faq .accordion-body {
  text-align: justify;
  text-align-last: left;
}
.website-maintenance-page .maintenance-care-card h3,
.website-maintenance-page .maintenance-support-card h3 {
  min-height: auto;
}
@media (min-width: 1200px) {
  .website-maintenance-page .maintenance-care-card {
    padding: 34px 28px;
  }
}


/* V42 Website Designing page */
.website-designing-hero h1 span {
  color: var(--orange);
}

.website-designing-panel {
  border-left: 5px solid var(--orange);
}

.website-purpose-box {
  background: #ffffff;
  border-left: 5px solid var(--orange);
  padding: 42px;
  box-shadow: 0 22px 70px rgba(16,16,20,0.06);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.website-purpose-box h3 {
  font-size: 24px;
  margin-bottom: 24px;
}

.website-type-card {
  height: 100%;
  background: #ffffff;
  border: 1px solid rgba(243,107,33,0.22);
  padding: 34px 28px;
  box-shadow: 0 18px 48px rgba(16,16,20,0.055);
  transition: all 0.28s ease;
}

.website-type-card:hover {
  transform: translateY(-7px);
  background: #f3f8ff;
  border-color: rgba(18,111,214,0.38);
  box-shadow: 0 26px 74px rgba(18,111,214,0.12);
}

.website-type-card i {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: rgba(18,111,214,0.08);
  color: var(--blue);
  font-size: 26px;
  margin-bottom: 24px;
  transition: all 0.28s ease;
}

.website-type-card:hover i {
  background: var(--blue);
  color: #ffffff;
}

.website-type-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.website-type-card p {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 0;
}

.website-process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.website-process-grid div {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 32px;
  box-shadow: 0 18px 55px rgba(16,16,20,0.045);
  transition: all 0.28s ease;
}

.website-process-grid div:hover {
  transform: translateY(-6px);
  border-color: rgba(243,107,33,0.32);
}

.website-process-grid span {
  display: block;
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
  color: rgba(243,107,33,0.20);
  margin-bottom: 22px;
}

.website-process-grid strong {
  display: block;
  color: #15151c;
  font-size: 22px;
  margin-bottom: 12px;
}

.website-process-grid p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 0;
}

.website-showcase-service {
  background: radial-gradient(circle at 12% 18%, rgba(243,107,33,0.10), transparent 30%), #07111d;
  color: #ffffff;
}

.website-showcase-service .section-head h2 {
  color: #ffffff;
}

.website-showcase-service .section-head p {
  color: rgba(255,255,255,0.72);
}

.website-showcase-service .about-showcase-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}

.website-showcase-service .about-showcase-card figcaption strong {
  color: #ffffff;
}

.website-showcase-service .about-showcase-card figcaption span {
  color: rgba(255,255,255,0.68);
}

.website-fit-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.website-fit-box div {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 30px;
  box-shadow: 0 18px 50px rgba(16,16,20,0.045);
}

.website-fit-box i {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  background: rgba(18,111,214,0.08);
  color: var(--blue);
  font-size: 23px;
  margin-bottom: 20px;
}

.website-fit-box strong {
  display: block;
  font-size: 20px;
  margin-bottom: 9px;
  color: #15151c;
}

.website-fit-box span {
  display: block;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.website-designing-page p,
.website-purpose-box li,
.website-type-card p,
.website-process-grid p,
.website-fit-box span,
.website-faq-section .accordion-body {
  text-align: justify;
  text-align-last: left;
}

@media (max-width: 991px) {
  .website-process-grid,
  .website-fit-box {
    grid-template-columns: 1fr;
  }
  .website-purpose-box {
    padding: 34px 26px;
  }
}

@media (max-width: 767px) {
  .website-type-card,
  .website-process-grid div,
  .website-fit-box div {
    padding: 28px 22px;
  }
}


/* V43 Website Development page planned redesign */
.website-build-hero h1 span {
  color: var(--orange);
}

.inner-hero-center {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.inner-hero-center p:not(.eyebrow) {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.website-build-intro-card {
  background: #ffffff;
  border-left: 5px solid var(--orange);
  padding: 46px;
  box-shadow: 0 24px 74px rgba(16,16,20,0.065);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.website-build-intro-card p:last-child {
  margin-bottom: 0;
}

.website-build-card {
  position: relative;
  height: 100%;
  background: #ffffff;
  border: 1px solid rgba(243,107,33,0.24);
  padding: 36px 28px;
  box-shadow: 0 18px 50px rgba(16,16,20,0.055);
  transition: all 0.28s ease;
  overflow: hidden;
}

.website-build-card:hover {
  transform: translateY(-7px);
  background: #f3f8ff;
  border-color: rgba(18,111,214,0.38);
  box-shadow: 0 26px 74px rgba(18,111,214,0.12);
}

.website-build-card > span {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 46px;
  line-height: 1;
  font-weight: 900;
  color: rgba(243,107,33,0.16);
  letter-spacing: -0.08em;
}

.website-build-card i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: rgba(18,111,214,0.08);
  color: var(--blue);
  font-size: 27px;
  margin-bottom: 26px;
  transition: all 0.28s ease;
}

.website-build-card:hover i {
  background: var(--blue);
  color: #ffffff;
}

.website-build-card h3 {
  font-size: 21px;
  line-height: 1.25;
  margin-bottom: 14px;
}

.website-build-card p {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 0;
}

.website-build-dark-section {
  background: #ffffff;
}

.website-build-dark-box {
  background:
    radial-gradient(circle at 12% 14%, rgba(243,107,33,0.13), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(18,111,214,0.16), transparent 32%),
    #07111d;
  padding: 64px;
  color: #ffffff;
  box-shadow: 0 28px 90px rgba(7,17,29,0.16);
}

.website-build-dark-box h2 {
  color: #ffffff;
}

.website-build-dark-box p {
  color: rgba(255,255,255,0.72);
}

.website-build-focus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.website-build-focus-grid div {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.13);
  padding: 30px;
  transition: all 0.28s ease;
}

.website-build-focus-grid div:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.12);
  border-color: rgba(243,107,33,0.38);
}

.website-build-focus-grid i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.10);
  color: var(--orange);
  font-size: 25px;
  margin-bottom: 22px;
}

.website-build-focus-grid strong {
  display: block;
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 9px;
}

.website-build-focus-grid span {
  display: block;
  color: rgba(255,255,255,0.70);
  font-size: 15px;
  line-height: 1.7;
}

.website-build-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.website-build-steps div {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 34px 30px;
  box-shadow: 0 18px 55px rgba(16,16,20,0.045);
  transition: all 0.28s ease;
}

.website-build-steps div:hover {
  transform: translateY(-6px);
  border-color: rgba(243,107,33,0.34);
}

.website-build-steps span {
  display: block;
  font-size: 44px;
  line-height: 1;
  font-weight: 900;
  color: rgba(243,107,33,0.20);
  margin-bottom: 22px;
}

.website-build-steps strong {
  display: block;
  color: #15151c;
  font-size: 21px;
  margin-bottom: 12px;
}

.website-build-steps p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 0;
}

.website-build-showcase {
  background: #07111d;
  color: #ffffff;
}

.website-build-showcase .section-head h2 {
  color: #ffffff;
}

.website-build-showcase .section-head p {
  color: rgba(255,255,255,0.72);
}

.website-build-showcase .about-showcase-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}

.website-build-showcase .about-showcase-card figcaption strong {
  color: #ffffff;
}

.website-build-showcase .about-showcase-card figcaption span {
  color: rgba(255,255,255,0.68);
}

.website-build-fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.website-build-fit-grid div {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 30px;
  box-shadow: 0 18px 50px rgba(16,16,20,0.045);
}

.website-build-fit-grid i {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  background: rgba(18,111,214,0.08);
  color: var(--blue);
  font-size: 23px;
  margin-bottom: 20px;
}

.website-build-fit-grid strong {
  display: block;
  font-size: 20px;
  margin-bottom: 9px;
  color: #15151c;
}

.website-build-fit-grid span {
  display: block;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.website-build-intro-card p,
.website-build-card p,
.website-build-dark-box p,
.website-build-focus-grid span,
.website-build-steps p,
.website-build-fit-grid span,
.website-faq-section .accordion-body {
  text-align: justify;
  text-align-last: left;
}

@media (max-width: 991px) {
  .website-build-dark-box {
    padding: 48px 34px;
  }
  .website-build-focus-grid,
  .website-build-steps,
  .website-build-fit-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .website-build-intro-card,
  .website-build-dark-box {
    padding: 36px 24px;
  }
  .website-build-card,
  .website-build-focus-grid div,
  .website-build-steps div,
  .website-build-fit-grid div {
    padding: 28px 22px;
  }
}


/* V45 Website Development parity refinement */
.website-development-hero h1 span {
  color: var(--orange);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

/* Keep the website development page on the same internal hero system as other service pages */
.website-development-hero .internal-hero-content {
  max-width: 920px;
}

/* Normalize website development section headings with other service pages */
.website-build-intro .section-title,
.website-build-process .section-title,
.website-build-fit .section-title {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

/* Reduce custom hero leftovers from older website development iterations */
.website-build-hero,
.website-designing-hero {
  background: none;
}

/* Make showcase cards behave like about/service visual examples without changing other pages */
.website-build-showcase .about-showcase-card {
  border-radius: 0;
}

.website-build-showcase .portfolio-scroll-window {
  border-radius: 0;
}

@media (max-width: 767px) {
  .website-development-hero h1 {
    font-size: clamp(34px, 10vw, 48px);
  }
}


/* V46 global navigation service dropdown */
.dm-services-dropdown {
  position: relative;
}

.dm-services-menu {
  min-width: 285px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(7, 17, 29, 0.98);
  box-shadow: 0 24px 70px rgba(0,0,0,0.24);
  border-radius: 0;
}

.dm-services-menu .dropdown-item {
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 0;
}

.dm-services-menu .dropdown-item:hover,
.dm-services-menu .dropdown-item:focus {
  color: #ffffff;
  background: rgba(57,123,200,0.22);
}

.dm-services-menu .dropdown-divider {
  border-color: rgba(255,255,255,0.12);
  margin: 8px 0;
}

.site-nav .dropdown-toggle::after {
  margin-left: 7px;
  vertical-align: 0.12em;
}

@media (min-width: 992px) {
  .dm-services-dropdown:hover .dm-services-menu {
    display: block;
  }

  .dm-services-dropdown .dropdown-toggle {
    pointer-events: auto;
  }
}

@media (max-width: 991px) {
  .dm-services-menu {
    display: block;
    position: static;
    min-width: 100%;
    margin: 8px 0 10px;
    padding: 8px 0 8px 16px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .dm-services-menu .dropdown-item {
    color: rgba(255,255,255,0.78);
    padding: 8px 0;
    font-size: 14px;
  }

  .dm-services-menu .dropdown-item:hover,
  .dm-services-menu .dropdown-item:focus {
    background: transparent;
    color: #ffffff;
  }

  .dm-services-menu .dropdown-divider {
    display: none;
  }
}


/* V47 navigation refinement + WhatsApp floating button */
.dm-whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 26px;
  width: 54px;
  height: 54px;
  z-index: 1100;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 16px 42px rgba(37, 211, 102, 0.32);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dm-whatsapp-float i {
  font-size: 26px;
  line-height: 1;
}

.dm-whatsapp-float:hover {
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(37, 211, 102, 0.42);
}

@media (max-width: 991px) {
  .site-nav .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-nav .navbar-toggler {
    margin-right: 0;
  }

  .nav-discuss-item {
    display: none !important;
  }

  .dm-services-menu {
    margin: 10px 0 12px;
    padding: 10px 0 10px 18px;
    background: rgba(255,255,255,0.055);
    border-left: 3px solid var(--orange);
  }

  .dm-services-menu .dropdown-item {
    color: rgba(255,255,255,0.92);
    padding: 9px 0;
    line-height: 1.35;
  }

  .dm-services-menu .dropdown-item:hover,
  .dm-services-menu .dropdown-item:focus {
    color: #ffffff;
  }

  .dm-whatsapp-float {
    right: 18px;
    bottom: 20px;
    width: 50px;
    height: 50px;
  }

  .dm-whatsapp-float i {
    font-size: 24px;
  }
}
