/* ==========================================================
   PAGE CSS CONTROLLER - HOME
   Change these variables first. They control this page only.
   Heading defaults still come from global, but this page can
   override them here when a custom size is needed.
   ========================================================== */
body.dt-page-home {
  --dt-h1-size: clamp(46px, 5.2vw, 74px);
  --dt-h2-size: clamp(30px, 3.5vw, 52px);
  --dt-p-size: 18px;
  --dt-mobile-h1-size: clamp(32px, 10vw, 44px);
  --dt-mobile-h2-size: clamp(28px, 8vw, 40px);
  --dt-mobile-p-size: 16px;

  --page-first-section-padding-top: 118px;
  --page-mobile-first-section-padding-top: 104px;
  --page-small-first-section-padding-top: 92px;

  --home-hero-min-height: min(760px, 100vh);
  --home-hero-padding-bottom: 72px;
  --home-hero-title-size: clamp(46px, 5.2vw, 74px);
  --home-hero-title-line-height: 1.16;
  --home-hero-title-weight: 600;
  --home-hero-text-size: clamp(15px, 1.25vw, 18px);
  --home-hero-text-line-height: 1.55;
  --home-hero-text-max-width: 850px;
  --home-hero-label-size: 13px;

  --home-mobile-hero-title-size: clamp(32px, 10vw, 44px);
  --home-mobile-hero-text-size: 16px;
  --home-mobile-hero-min-height: auto;
  --home-mobile-hero-padding-top: 92px;
  --home-mobile-hero-padding-bottom: 14px;
  --home-intro-pill-size: 16px;
  --home-intro-pill-weight: 900;
  --home-intro-pill-padding: 12px 15px;
  --home-intro-pill-gap: 8px;
  --home-mobile-intro-pill-size: 15px;
  --home-mobile-intro-pill-padding: 13px 16px;
}

:root {
  --ink: #07152f;
  --text: #1b2234;
  --muted: #707789;
  --line: rgba(15, 22, 48, 0.1);
  --paper: #ffffff;
  --wash: #f6f4ff;
  --violet: #6b22f2;
  --violet-2: #8b55f4;
  --pink: #ef63a8;
  --orange: #ff8a18;
  --blue: #0688dc;
  --dark: #09071d;
  --shadow: 0 18px 50px rgba(22, 14, 64, 0.1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.container {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}


.hero {
  min-height: 820px;
  padding: 76px 0 80px;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 28%, rgba(107, 34, 242, 0.12), transparent 31%),
    radial-gradient(circle at 94% 20%, rgba(239, 99, 168, 0.16), transparent 32%),
    linear-gradient(180deg, #fbfaff 0%, #fff 76%);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: 58px;
}

.mini-label,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--violet);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 740px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(48px, 6.8vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero-text {
  max-width: 680px;
  margin: 28px 0 0;
  color: #4b5264;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.55;
}

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

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 25px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--pink), var(--orange));
  box-shadow: 0 14px 34px rgba(107, 34, 242, 0.25);
}

.btn.primary:hover {
  box-shadow: 0 18px 42px rgba(107, 34, 242, 0.35);
}

.btn.ghost {
  color: var(--ink);
  border: 1px solid var(--line);
  background: #fff;
}

.btn.ghost:hover {
  background: var(--wash);
  border-color: rgba(107, 34, 242, 0.3);
}

.btn.outline {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  background: transparent;
}

.btn.outline:hover {
  background: rgba(255,255,255,0.08);
}

.hero-showcase {
  position: relative;
  min-height: 560px;
}

.image-shell {
  height: 540px;
  overflow: hidden;
  border: 1px solid rgba(107, 34, 242, 0.12);
  border-radius: 34px;
  background: #17152b;
  box-shadow: 0 24px 70px rgba(13, 9, 43, 0.18);
}

.image-shell img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-shell:hover img {
  transform: scale(1.04);
}

.image-shell.image-missing {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #17152b, #2a1970);
}

.image-shell.image-missing::after {
  content: "Digital Tales";
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
}

.image-shell.image-missing img { display: none; }

.hero-note {
  position: absolute;
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}

.hero-note:hover {
  transform: translateY(-4px);
}

.note-one {
  left: -26px;
  bottom: 34px;
}

.note-one strong {
  color: var(--violet);
  font-size: 43px;
  line-height: 0.95;
}

.note-two {
  right: 24px;
  top: 24px;
  grid-template-columns: 42px 1fr;
  align-items: center;
  max-width: 250px;
}

.note-two i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: var(--violet);
}

.hero-note span {
  color: #53596c;
  font-weight: 800;
}

.proof-strip {
  padding: 28px 0;
  background: var(--dark);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.proof-grid div {
  padding: 28px 24px;
  border-radius: 18px;
  color: #fff;
  background: rgba(255,255,255,0.06);
  text-align: center;
  transition: transform 0.22s ease, background 0.22s ease;
}

.proof-grid div:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.1);
}

.proof-grid strong,
.proof-grid span {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  font-weight: 950;
}

.proof-grid span { color: var(--orange); }

.proof-number {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0;
  white-space: nowrap;
}

.proof-number strong,
.proof-number span {
  flex: 0 0 auto;
}

.proof-number strong {
  color: #fff;
}

.proof-number > span {
  color: var(--orange);
}

.proof-grid p {
  margin: 9px 0 0;
  color: rgba(255,255,255,0.7);
  font-weight: 800;
}

.section {
  padding: 96px 0;
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.section-title {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-title.compact {
  max-width: 850px;
}

.section h2,
.intro h2,
.portfolio-heading h2,
.testimonial-layout h2{
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.intro {
  background: #fff;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: start;
}

.intro-copy p {
  margin: 0;
  color: #666d7c;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.62;
}

.intro-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.intro-list span {
  display: inline-flex;
  align-items: center;
  gap: var(--home-intro-pill-gap);
  padding: var(--home-intro-pill-padding);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: var(--home-intro-pill-size);
  font-weight: var(--home-intro-pill-weight);
  background: #fff;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}

.intro-list span:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(22, 14, 64, 0.1);
}

.intro-list i { color: var(--violet); }

.services {
  background:
    radial-gradient(circle at 0 14%, rgba(107,34,242,0.1), transparent 28%),
    #f8f7ff;
}

.service-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 335px;
  grid-column: span 4;
  padding: 28px;
  border: 1px solid rgba(107, 34, 242, 0.12);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(22, 14, 64, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(22, 14, 64, 0.14);
}

.service-card.large {
  grid-column: span 4;
  color: #fff;
  background:
    radial-gradient(circle at 80% 16%, rgba(255,138,24,0.42), transparent 26%),
    linear-gradient(135deg, #21176b, #6b22f2);
}

.service-card:nth-child(2) { grid-column: span 4; }

.service-card:nth-child(4),
.service-card:nth-child(5) {
  grid-column: span 6;
  min-height: 300px;
}

.service-card.dark {
  color: #fff;
  background: #0d0b22;
}

.service-card.accent {
  background:
    radial-gradient(circle at 100% 0, rgba(239,99,168,0.22), transparent 34%),
    #fff;
}

.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  font-size: 23px;
  background: linear-gradient(135deg, var(--violet), var(--pink), var(--orange));
  transition: transform 0.25s ease;
}

.service-card:hover .icon {
  transform: rotate(-8deg) scale(1.06);
}

.service-name {
  margin: 22px 0 12px;
  color: var(--violet);
  font-size: 15px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dark .service-name,
.large .service-name {
  color: rgba(255,255,255,0.72);
}

.service-card h3 {
  margin: 0;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.service-card p:not(.service-name) {
  margin: 18px 0 0;
  color: #676e7e;
  font-size: 17px;
  line-height: 1.52;
}

.service-card.large p:not(.service-name),
.service-card.dark p:not(.service-name) {
  color: rgba(255,255,255,0.75);
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-weight: 950;
  transition: gap 0.2s ease;
}

.service-card a:hover {
  gap: 13px;
}

.work-system {
  background: #fff;
}

.system-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
}

.system-card {
  padding: 36px;
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 30% 0, rgba(39, 197, 245, 0.28), transparent 34%),
    #0d0b22;
}

.system-card h2 {
  color: #fff;
}

.system-card p:last-child {
  color: rgba(255,255,255,0.75);
  font-size: 20px;
  line-height: 1.55;
}

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

.process-list article,
.why-grid article,
.testimonial-stack article {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.process-list article:hover,
.why-grid article:hover,
.testimonial-stack article:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(22, 14, 64, 0.1);
}

.process-list article {
  padding: 28px;
}

.process-list span {
  color: var(--pink);
  font-weight: 950;
}

.process-list h3,
.why-grid h3 {
  margin: 10px 0 10px;
  color: var(--ink);
  font-size: 25px;
  letter-spacing: -0.035em;
}

.process-list p,
.why-grid p {
  margin: 0;
  color: #747b8c;
  line-height: 1.5;
}

.why {
  background:
    linear-gradient(rgba(107,34,242,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107,34,242,0.06) 1px, transparent 1px),
    #f7f8ff;
  background-size: 48px 48px;
}

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

.why-grid article {
  padding: 26px;
}

.why-grid i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  font-size: 22px;
  background: var(--dark);
  transition: transform 0.25s ease;
}

.why-grid article:hover i {
  transform: rotate(-8deg) scale(1.08);
}

.clients {
  background: #fff;
}

.logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.logo-grid span {
  min-height: 118px;
  display: grid;
  place-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  flex: 0 0 calc(25% - 9px);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.logo-grid span:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(22, 14, 64, 0.1);
}

.logo-grid img {
  max-width: 82%;
  max-height: 64px;
  object-fit: contain;
}

.logo-grid b {
  display: none;
  color: var(--ink);
  text-align: center;
}

.logo-grid span.logo-missing {
  background: linear-gradient(135deg, #fff, #f8f6ff);
}

.logo-grid span.logo-missing img { display: none; }
.logo-grid span.logo-missing b { display: block; }

.portfolio {
  color: #fff;
  background: var(--dark);
}

.portfolio-heading {
  max-width: 1080px;
  margin-bottom: 40px;
}

.portfolio-heading h2 {
  color: #fff;
}

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

.project-card {
  min-height: 420px;
  overflow: hidden;
  position: relative;
  border-radius: 26px;
  background: #18152f;
}

.project-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-card > a {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
}

.project-card:hover img {
  transform: scale(1.06);
}

.project-card.image-missing {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #20175f, #0d0b22);
}

.project-card.image-missing img { display: none; }

.project-card.image-missing::before {
  content: "Digital Tales Project";
  color: #fff;
  font-size: 32px;
  font-weight: 950;
}

.project-card div {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: end;
  padding: 18px;
  border-radius: 18px;
  color: #fff;
  background: rgba(9, 7, 29, 0.82);
}

.project-card h3,
.project-card p {
  margin: 0;
}

.project-card h3 {
  font-size: 28px;
}

.project-card p {
  color: rgba(255,255,255,0.72);
  font-weight: 900;
}

.portfolio-cta {
  margin-top: 44px;
  display: flex;
  justify-content: center;
}

.testimonials {
  background: #fff;
}

.testimonial-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 40px;
}

.testimonial-slider {
  min-width: 0;
}

.testimonial-window {
  overflow: hidden;
  width: 100%;
}

.testimonial-stack {
  display: flex;
  gap: 18px;
  transition: transform .48s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}

.testimonial-stack article {
  flex: 0 0 calc((100% - 18px) / 2);
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(12, 16, 32, .08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(16, 22, 52, .08);
}

.stars {
  color: #ffb51d;
  letter-spacing: 4px;
}

.testimonial-stack p {
  color: #6e7585;
  font-size: 18px;
  line-height: 1.55;
}

.testimonial-stack strong {
  color: var(--ink);
  font-size: 20px;
}

.testimonial-controls {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.testimonial-arrow,
.testimonial-dot {
  appearance: none;
  border: 0;
  cursor: pointer;
}

.testimonial-arrow {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: #fff;
  background: var(--violet);
  box-shadow: 0 14px 32px rgba(129,80,237,.24);
  transition: transform .22s ease, opacity .22s ease, background .22s ease;
}

.testimonial-arrow:not(:disabled):hover {
  transform: translateY(-2px);
  background: #6f3fe0;
}

.testimonial-arrow:disabled {
  cursor: default;
  opacity: .38;
}

.testimonial-dots {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.testimonial-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 999px;
  background: rgba(14, 18, 37, .25);
  transition: width .22s ease, background .22s ease;
}

.testimonial-dot.is-active {
  width: 28px;
  background: var(--violet);
}


/* ===== Footer ===== */
.footer {
  padding: 76px 0 32px;
  color: #fff;
  background: #07041b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.55fr 0.75fr 0.8fr;
  gap: 34px;
}

.footer-logo { color: #fff; }

.footer p {
  max-width: 430px;
  color: rgba(255,255,255,0.72);
  font-size: 18px;
  line-height: 1.5;
}

.footer h3 {
  margin: 0 0 18px;
}


.socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.socials a {
  width: 44px;
  height: 44px;
  display: grid !important;
  place-items: center;
  border-radius: 50%;
  color: #fff !important;
  background: linear-gradient(135deg, var(--violet), var(--pink), var(--orange));
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.socials a:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(107, 34, 242, 0.4);
}

.copyright {
  margin-top: 40px;
  color: rgba(255,255,255,0.62);
}
/* ===== End Footer ===== */



@media (max-width: 980px) {
  .hero-layout,
  .intro-grid,
  .system-grid,
  .testimonial-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 118px;
  }

  .hero-showcase {
    min-height: auto;
  }

  .image-shell {
    height: 420px;
  }

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

  .logo-grid span {
    flex: 0 0 calc(50% - 6px);
  }

  .testimonial-stack article {
    flex-basis: 100%;
  }

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

  .service-card,
  .service-card.large,
  .service-card:nth-child(2),
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1240px);
  }

  .hero {
    min-height: auto;
    padding: 100px 0 52px;
  }

  .hero h1 {
    font-size: 45px;
  }

  .hero-text {
    font-size: 17px;
  }

  .btn {
    width: 100%;
  }

  .image-shell {
    height: 320px;
    border-radius: 22px;
  }

  .hero-note {
    position: static;
    margin-top: 12px;
  }

  .proof-grid,
  .process-list,
  .why-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid {
    gap: 10px;
  }

  .proof-grid div {
    display: grid;
    justify-items: center;
    padding: 24px 18px;
  }

  .proof-number {
    white-space: nowrap;
  }

  .proof-number strong,
  .proof-number span {
    font-size: clamp(34px, 11vw, 46px);
  }

  .intro-list span {
    width: 100%;
    justify-content: center;
    white-space: nowrap;
    font-size: var(--home-mobile-intro-pill-size);
    padding: var(--home-mobile-intro-pill-padding);
  }

  .service-bento {
    grid-template-columns: 1fr;
  }

  .logo-grid span {
    flex: 0 0 100%;
  }

  .section {
    padding: 68px 0;
  }

  .section h2,
  .intro h2,
  .portfolio-heading h2,
  .testimonial-layout h2{
    font-size: 38px;
  }

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

  .project-card {
    min-height: 310px;
  }

  .testimonial-stack article {
    flex-basis: 100%;
  }


}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

/* Home hero matches the provided art direction: image-led, purple overlay, left copy. */
.dt-page-home .hero {
  min-height: min(760px, 100vh) !important;
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  overflow: hidden !important;
  color: #fff !important;
  isolation: isolate;
  background: #171257 !important;
}

.dt-page-home .hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: -2 !important;
  background:
    linear-gradient(90deg, rgba(27, 22, 102, .96) 0%, rgba(33, 28, 116, .90) 38%, rgba(32, 26, 106, .52) 66%, rgba(16, 13, 54, .20) 100%),
    url("https://digitaltales.in/wp-content/uploads/2025/11/Frame2147208293-ezgif.com-png-to-webp-converter.webp") center right / cover no-repeat !important;
}

.dt-page-home .hero::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: -1 !important;
  background:
    radial-gradient(720px 460px at 22% 52%, rgba(107, 34, 242, .28), transparent 68%),
    linear-gradient(90deg, rgba(22, 18, 86, .32), transparent 74%) !important;
}

.dt-page-home .hero-layout {
  display: block !important;
  width: min(1240px, calc(100% - 48px)) !important;
  margin: 0 auto !important;
}

.dt-page-home .hero-copy {
  max-width: 850px !important;
}

.hero-copy {
    padding-top: 50px;
}

.dt-page-home .hero-showcase {
  display: none !important;
}

.dt-page-home .mini-label {
  min-height: 64px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 18px !important;
  padding: 0 30px 0 18px !important;
  border-radius: 999px !important;
  color: #fff !important;
  background: linear-gradient(135deg, #6b22f2, #ef63a8, #ff8a18) !important;
  box-shadow: 0 20px 60px rgba(107, 34, 242, .28) !important;
}

.dt-page-home .mini-label i {
  width: 46px !important;
  height: 46px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 50% !important;
  color: #fff !important;
  background: rgba(7, 4, 27, .38) !important;
}

.dt-page-home .hero h1 {
  max-width: 940px !important;
  margin-top: 58px !important;
  color: #fff !important;
  font-size: clamp(46px, 5.2vw, 74px) !important;
  line-height: 1.16 !important;
  letter-spacing: -0.055em !important;
  font-weight: 600 !important;
}

.dt-page-home .hero-text {
  max-width: 850px !important;
  color: rgba(255,255,255,.9) !important;
  font-size: clamp(19px, 1.65vw, 27px) !important;
  line-height: 1.55 !important;
}

.dt-page-home .hero-actions {
  display: none !important;
}

@media (max-width: 768px) {
  .dt-page-home .hero {
    min-height: auto !important;
    padding-top: var(--home-mobile-hero-padding-top) !important;
    padding-bottom: var(--home-mobile-hero-padding-bottom) !important;
  }

  .dt-page-home .hero::before {
    background:
      linear-gradient(90deg, rgba(27, 22, 102, .97) 0%, rgba(33, 28, 116, .92) 58%, rgba(16, 13, 54, .72) 100%),
      url("https://digitaltales.in/wp-content/uploads/2025/11/Frame2147208293-ezgif.com-png-to-webp-converter.webp") center right / cover no-repeat !important;
  }

  .dt-page-home .mini-label {
    min-height: 52px !important;
    padding: 0 18px 0 10px !important;
    font-size: 13px !important;
  }

  .dt-page-home .mini-label i {
    width: 38px !important;
    height: 38px !important;
  }

  .dt-page-home .hero h1 {
    margin-top: 22px !important;
    font-size: clamp(36px, 11vw, 52px) !important;
  }

  .dt-page-home .hero-text {
    margin-top: 16px !important;
  }
}

@media (max-width: 520px) {
  .dt-page-home .hero {
    padding-top: var(--home-mobile-hero-padding-top) !important;
    padding-bottom: var(--home-mobile-hero-padding-bottom) !important;
  }

  .dt-page-home .mini-label {
    width: fit-content !important;
    max-width: 100% !important;
    min-height: 48px !important;
    gap: 10px !important;
    padding: 7px 14px 7px 8px !important;
    white-space: normal !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
  }

  .dt-page-home .mini-label i {
    width: 34px !important;
    height: 34px !important;
    flex: 0 0 34px !important;
  }

  .dt-page-home .hero h1 {
    margin-top: 18px !important;
    max-width: 100% !important;
    font-size: clamp(32px, 10vw, 44px) !important;
    line-height: 1.15 !important;
    letter-spacing: -0.035em !important;
  }

  .dt-page-home .hero-text {
    max-width: 100% !important;
    font-size: 16px !important;
    line-height: 1.55 !important;
    margin-bottom: 0 !important;
  }
}

body.dt-page-home .proof-strip {
  position: relative;
  z-index: 1;
  margin-top: 0;
}

body.dt-page-home .proof-number {
  display: inline-flex !important;
  flex-wrap: nowrap !important;
  align-items: baseline !important;
  justify-content: center !important;
  white-space: nowrap !important;
}

body.dt-page-home .proof-number strong,
body.dt-page-home .proof-number > span {
  display: inline-block !important;
  flex: 0 0 auto !important;
}

/* Page controller mappings - HOME */
body.dt-page-home .hero {
  min-height: var(--home-hero-min-height) !important;
  padding-bottom: var(--home-hero-padding-bottom) !important;
}

body.dt-page-home .hero h1 {
  font-size: var(--home-hero-title-size) !important;
  line-height: var(--home-hero-title-line-height) !important;
  font-weight: var(--home-hero-title-weight) !important;
}

body.dt-page-home .hero-text,
body.dt-page-home .hero-text p {
  max-width: var(--home-hero-text-max-width) !important;
  font-size: var(--home-hero-text-size) !important;
  line-height: var(--home-hero-text-line-height) !important;
}

body.dt-page-home .mini-label {
  font-size: var(--home-hero-label-size) !important;
}

@media (max-width: 768px) {
  body.dt-page-home .hero {
    min-height: var(--home-mobile-hero-min-height) !important;
    padding-top: var(--home-mobile-hero-padding-top) !important;
    padding-bottom: var(--home-mobile-hero-padding-bottom) !important;
  }

  body.dt-page-home .hero h1 {
    font-size: var(--home-mobile-hero-title-size) !important;
  }

  body.dt-page-home .hero-text,
  body.dt-page-home .hero-text p {
    font-size: var(--home-mobile-hero-text-size) !important;
  }
}

@media (max-width: 520px) {
  body.dt-page-home .hero {
    min-height: var(--home-mobile-hero-min-height) !important;
    padding-top: var(--home-mobile-hero-padding-top) !important;
    padding-bottom: var(--home-mobile-hero-padding-bottom) !important;
  }
}
