/* ==========================================================
   PAGE CSS CONTROLLER - FLEXIBLE DEVELOPER PAGE
   Change these variables first. They control this page only.
   ========================================================== */
body.dt-page-flexible-developer-landing-page {
  --dt-h1-size: clamp(32px, 4.05vw, 68px);
  --dt-h2-size: clamp(32px, 4vw, 58px);
  --dt-p-size: 18px;
  --dt-mobile-h1-size: clamp(31px, 9.5vw, 42px);
  --dt-mobile-h2-size: 30px;
  --dt-mobile-p-size: 16px;

  --page-first-section-padding-top: 146px;
  --page-mobile-first-section-padding-top: 96px;
  --page-small-first-section-padding-top: 86px;

  --developer-hero-title-size: clamp(32px, 4.05vw, 68px);
  --developer-hero-text-size: clamp(16px, 1.55vw, 25px);
  --developer-hero-check-size: clamp(16px, 1.45vw, 25px);
  --developer-section-padding-y: 120px;
  --developer-button-height: 70px;
}

:root {
      --ink: #1d2636;
      --muted: #555d6f;
      --blue: #2039bd;
      --blue-2: #1230ad;
      --line: #d9dce6;
      --soft: #f7f7fa;
      --panel: #f3f3f6;
      --white: #fff;
      --shadow: 0 24px 80px rgba(31, 47, 99, 0.12);
      --radius: 14px;
      --ease: cubic-bezier(.2, .8, .2, 1);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
      width: 100%;
    }

    body {
      margin: 0;
      color: var(--ink);
      background: #fff;
      font-family: "Inter", "Poppins", "Segoe UI", Arial, sans-serif;
      font-size: 16px;
      line-height: 1.5;
      overflow-x: hidden;
      width: 100%;
      max-width: 100vw;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      display: block;
      max-width: 100%;
    }

    .page {
      width: 100%;
      max-width: 100vw;
      overflow-x: hidden;
    }

    .container {
      width: min(1600px, calc(100% - 156px));
      margin: 0 auto;
      max-width: 100%;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 70px;
      padding: 18px 26px;
      border-radius: 12px;
      border: 1px solid transparent;
      background: var(--blue);
      color: #fff;
      font-weight: 700;
      font-size: 18px;
      letter-spacing: -0.02em;
      box-shadow: 0 18px 44px rgba(32, 57, 189, 0.22);
      transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
    }

    .btn:hover {
      transform: translateY(-4px);
      background: #1029a8;
      box-shadow: 0 24px 58px rgba(32, 57, 189, 0.3);
    }

    .btn span[aria-hidden] {
      display: inline-block;
      transition: transform .3s var(--ease);
    }

    .btn:hover span[aria-hidden] {
      transform: translateX(5px);
    }

    .btn--light {
      background: #fff;
      color: var(--blue);
      box-shadow: none;
    }

    .btn--outline {
      background: transparent;
      color: #fff;
      border-color: rgba(255, 255, 255, .8);
      box-shadow: none;
    }

    .section {
      position: relative;
      padding: 120px 0;
      overflow-x: hidden;
    }

    .split {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(360px, 450px);
      gap: 72px;
      align-items: start;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,.88);
      color: #3d35ee;
      box-shadow: 0 10px 28px rgba(0,0,0,.11);
      font-weight: 700;
      font-size: 15px;
      transition: box-shadow .3s var(--ease), transform .3s var(--ease);
    }

    .eyebrow:hover {
      box-shadow: 0 14px 34px rgba(0,0,0,.16);
      transform: translateY(-2px);
    }

    .eyebrow .fa {
      color: #f8a51f;
    }

    .gradient-word {
      color: var(--blue);
    }

    .hero {
      min-height: 635px;
      display: grid;
      place-items: center;
      text-align: center;
      isolation: isolate;
      padding-bottom: 56px;
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(800px 360px at 50% 20%, rgba(255,255,255,.92), transparent 70%),
        repeating-conic-gradient(from -38deg at 50% 100%, rgba(31, 38, 56, .07) 0deg 4deg, transparent 4deg 11deg),
        linear-gradient(180deg, #fff 0%, #f9f9fb 100%);
    }

    .hero:before,
    .hero:after {
      content: "";
      position: absolute;
      border-radius: 50%;
      filter: blur(5px);
      opacity: .5;
      z-index: -1;
    }

    .hero:before {
      width: 420px;
      height: 420px;
      left: -120px;
      bottom: -150px;
      background: radial-gradient(circle, rgba(32,57,189,.15), transparent 66%);
    }

    .hero:after {
      width: 360px;
      height: 360px;
      right: -120px;
      top: -110px;
      background: radial-gradient(circle, rgba(32,57,189,.12), transparent 65%);
    }

    .hero__content {
      width: min(1370px, calc(100% - 40px));
      padding-top: 30px;
    }

    .hero h1 {
      max-width: 1050px;
      margin: 34px auto 24px;
      font-size: clamp(32px, 4.05vw, 68px);
      line-height: 1.14;
      letter-spacing: -0.055em;
      font-weight: 760;
    }

    .hero p {
      max-width: 1030px;
      margin: 0 auto;
      color: #080a12;
      font-size: clamp(16px, 1.55vw, 25px);
      line-height: 1.3;
      font-weight: 500;
    }

    .hero__checks {
      display: flex;
      justify-content: center;
      gap: clamp(28px, 4vw, 72px);
      flex-wrap: wrap;
      margin: 34px auto 26px;
      color: #3f4655;
      font-size: clamp(16px, 1.45vw, 25px);
    }

    .check-item {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      white-space: nowrap;
    }

    .check-item .fa {
      display: grid;
      place-items: center;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: var(--blue);
      color: #fff;
      font-size: 16px;
      box-shadow: 0 10px 24px rgba(32,57,189,.24);
      transition: transform .3s var(--ease);
      flex-shrink: 0;
    }

    .check-item:hover .fa {
      transform: scale(1.15);
    }

    .metrics-strip {
      background: var(--blue);
      padding: 48px 0 62px;
    }

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

    .metric-pill {
      min-height: 75px;
      border-radius: 12px;
      background: #fff;
      color: var(--blue);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 36px;
      font-size: clamp(20px, 2.2vw, 31px);
      letter-spacing: -0.04em;
      font-weight: 500;
      box-shadow: 0 20px 48px rgba(0,0,0,.08);
      transform: translateY(0);
      transition: transform .35s var(--ease), box-shadow .35s var(--ease);
      padding: 0 20px;
      text-align: center;
    }

    .metric-pill:hover {
      transform: translateY(-5px);
      box-shadow: 0 26px 60px rgba(0,0,0,.12);
    }

    .metric-pill .fa {
      font-size: 38px;
      font-weight: 400;
      flex-shrink: 0;
    }

    .why {
      background: var(--panel);
    }

    .why h2,
    .expertise h2,
    .hiring h2,
    .projects h2,
    .testimonials h2,
    .faq h2 {
      margin: 0;
      letter-spacing: -0.055em;
      font-weight: 760;
      line-height: 1.16;
      font-size: clamp(32px, 4vw, 58px);
    }

    .why__intro {
      max-width: 1120px;
    }

    .why__intro p {
      max-width: 1030px;
      margin: 50px 0 48px;
      color: #02040a;
      font-size: clamp(17px, 1.5vw, 25px);
      line-height: 1.3;
    }

    .feature-card {
      min-height: 250px;
      border: 1.5px solid var(--blue);
      border-radius: 20px;
      padding: 48px 54px;
      background: linear-gradient(180deg, #f8f8fa, #f2f2f5);
      box-shadow: inset 0 0 0 12px rgba(255,255,255,.32);
      transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
    }

    .feature-card:hover {
      transform: translateY(-7px);
      box-shadow: var(--shadow);
      background: #fff;
    }

    /* Direct child only: this must NOT match the small arrow icon nested
       inside the card's link, which was previously inheriting this
       52px size + 42px bottom margin and rendering huge/misaligned. */
    .feature-card > .fa {
      color: var(--blue);
      font-size: 52px;
      margin-bottom: 42px;
      display: block;
      transition: transform .35s var(--ease);
    }

    .feature-card:hover > .fa {
      transform: translateY(-4px) scale(1.06);
    }

    .feature-card h3 {
      margin: 0 0 24px;
      color: #03040b;
      font-size: 30px;
      line-height: 1.2;
      letter-spacing: -0.035em;
    }

    .feature-card p {
      margin: 0 0 22px;
      color: #191b24;
      font-size: 22px;
      line-height: 1.45;
    }

    .feature-card a {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      width: fit-content;
      color: var(--blue);
      font-size: 21px;
      font-weight: 500;
      line-height: 1;
    }

    .feature-card a i {
      font-size: 0.8em;
      line-height: 1;
      display: inline-flex;
      align-items: center;
      transition: transform .3s var(--ease);
    }

    .feature-card a:hover i {
      transform: translateX(5px);
    }

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

    .tall-card {
      min-height: 336px;
    }

    .expertise {
      background: #fff;
      position: relative;
      overflow: hidden;
    }

    .wave-mark {
      position: absolute;
      top: -58px;
      right: 24px;
      width: 360px;
      height: 220px;
      opacity: .35;
      pointer-events: none;
      background:
        repeating-radial-gradient(ellipse at center, transparent 0 12px, rgba(32,57,189,.38) 13px 15px);
      border-radius: 50%;
      transform: rotate(18deg);
      mask-image: linear-gradient(90deg, transparent 0%, #000 35%, #000 100%);
    }

    .expertise__head,
    .testimonial-head {
      display: grid;
      grid-template-columns: 1fr 1.05fr;
      gap: 80px;
      align-items: start;
      margin-bottom: 92px;
    }

    .expertise__head {
      margin-bottom: 40px;
    }

    .expertise__head p,
    .testimonial-head p {
      margin: 0 0 28px;
      color: #11131b;
      font-size: clamp(18px, 1.6vw, 26px);
      line-height: 1.3;
    }

    .expertise-list {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 70px;
      margin-top: 12px;
    }

    .expertise-item {
      min-height: 260px;
      padding: 6px;
      border-radius: 12px;
      display: flex;
      flex-direction: column;
      transition: transform .3s var(--ease);
    }

    .expertise-item:hover {
      transform: translateY(-4px);
    }

    /* Underline now sits below the description (last item in the
       flex column) instead of under the title, and spans the full
       card width rather than just the text width. */
    .expertise-item:after {
      content: "";
      display: block;
      margin-top: 26px;
      height: 3px;
      width: 0;
      border-radius: 2px;
      background: var(--blue);
      transition: width .4s var(--ease);
    }

    .expertise-item:hover:after {
      width: 100%;
    }

    .expertise-item .num {
      display: block;
      color: var(--blue);
      font-size: clamp(60px, 6.8vw, 90px);
      line-height: 1;
      font-weight: 500;
      letter-spacing: -.05em;
      margin-bottom: 16px;
      transition: color .3s var(--ease), transform .3s var(--ease);
    }

    .expertise-item:hover .num {
      color: var(--blue-2);
      transform: translateX(4px);
    }

    .expertise-item h3 {
      margin: 0 0 24px;
      color: #05070e;
      font-size: 29px;
      line-height: 1.24;
      letter-spacing: -.035em;
    }

    .expertise-item p {
      max-width: 270px;
      margin: 0;
      color: #10131b;
      font-size: 22px;
      line-height: 1.45;
    }

    .hiring {
      background: #f4f4f6;
      padding-top: 0;
    }

    .hiring-grid {
      display: grid;
      grid-template-columns: minmax(380px, .95fr) 1.1fr;
      gap: 38px;
      align-items: center;
    }

    .photo-card {
      position: relative;
      min-height: 585px;
      border-radius: 0 16px 16px 0;
      overflow: hidden;
      background:
        linear-gradient(135deg, rgba(32,57,189,.14), rgba(255,255,255,.1)),
        url("/assets/uploads/2026/07/frame-2147208413-20260703101238-8ce53f7c.webp") center / cover;
      box-shadow: 0 16px 46px rgba(0,0,0,.08);
      transition: transform .45s var(--ease), box-shadow .45s var(--ease);
    }

    .photo-card:hover {
      transform: scale(1.015);
      box-shadow: 0 24px 60px rgba(0,0,0,.14);
    }

    .photo-card:after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(255,255,255,.12), transparent 45%);
    }

    .hiring-copy {
      padding: 52px 0;
      overflow: hidden;
    }

    .hiring-copy h2 {
      max-width: 820px;
      margin-bottom: 34px;
    }

    .hiring-copy > p {
      max-width: 820px;
      margin: 0 0 44px;
      color: #11131a;
      font-size: clamp(18px, 1.6vw, 26px);
      line-height: 1.3;
    }

    .hiring-item {
      max-width: 920px;
      margin: 0 0 48px 0;
      padding: 16px 22px 16px 0;
      border-radius: 14px;
      border: 1.5px solid transparent;
      transition: transform .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
    }

    .hiring-item:hover {
      transform: scale(1.04);
      background: #fff;
      border-color: var(--blue);
      box-shadow: 0 18px 42px rgba(32,57,189,.14);
    }

    .hiring-item h3 {
      margin: 0 0 4px;
      color: #05070e;
      font-size: 30px;
      line-height: 1.18;
      letter-spacing: -.035em;
    }

    .hiring-item p {
      margin: 0;
      color: #11131b;
      font-size: 24px;
      line-height: 1.45;
    }

    .projects {
      background: #fff;
    }

    /* Carousel viewport: clips horizontal slide movement while a
       buffer of padding + matching negative margin keeps hover
       lift/reveal transforms on child cards from being cut off,
       without adding any extra space to the page flow. */
    .carousel-viewport {
      overflow: hidden;
      position: relative;
      padding: 40px 0;
      margin: -40px 0;
      max-width: 100%;
    }

    .project-grid {
      display: flex;
      gap: 18px;
      margin-top: 40px;
      cursor: grab;
      user-select: none;
      touch-action: pan-y;
      width: max-content;
    }

    .project-grid:active {
      cursor: grabbing;
    }

    .project-grid .project-card {
      flex: 0 0 calc(33.333vw - 12px);
      width: calc(33.333vw - 12px);
      max-width: 500px;
    }

    .project-card {
      position: relative;
      min-height: 446px;
      border: 1px solid #c9cdd7;
      border-radius: 10px;
      overflow: hidden;
      background: #f4f4f7;
      box-shadow: 0 20px 48px rgba(0,0,0,.08);
      transition: transform .4s var(--ease), box-shadow .4s var(--ease);
    }

    .project-card:hover {
      transform: translateY(-8px) scale(1.01);
      box-shadow: 0 30px 72px rgba(0,0,0,.14);
    }

    .project-card img {
      width: 100%;
      height: 100%;
      min-height: 446px;
      object-fit: cover;
      transition: transform .55s var(--ease);
      -webkit-user-drag: none;
      user-select: none;
      pointer-events: none;
    }

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

    .project-info {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 20px 34px;
      color: #090b11;
      background: rgba(255,255,255,.72);
      backdrop-filter: blur(16px);
      font-weight: 760;
      font-size: 18px;
    }

    .project-info a {
      color: var(--blue);
      font-weight: 500;
      transition: text-decoration-color .3s var(--ease);
    }

    .project-info a:hover {
      text-decoration: underline;
    }

    .image-fallback {
      position: absolute;
      inset: 0;
      display: none;
      place-items: center;
      padding: 28px;
      text-align: center;
      color: #182138;
      font-size: 30px;
      font-weight: 760;
      background:
        radial-gradient(circle at 72% 18%, rgba(243, 122, 46, .2), transparent 35%),
        radial-gradient(circle at 20% 80%, rgba(32,57,189,.18), transparent 38%),
        linear-gradient(135deg, #fff, #f2f2f7);
    }

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

    .project-card.is-missing .image-fallback {
      display: grid;
    }

    .testimonials {
      background: #f4f4f6;
    }

    .testimonial-head {
      margin-bottom: 58px;
    }

    .testimonial-track {
      display: flex;
      gap: 20px;
      padding: 4px 0 14px;
      cursor: grab;
      user-select: none;
      touch-action: pan-y;
      width: max-content;
    }

    .testimonial-track:active {
      cursor: grabbing;
    }

    .testimonial-card {
      min-width: 430px;
      width: 430px;
      min-height: 370px;
      padding: 42px 48px;
      background: #fff;
      box-shadow: 18px 0 0 rgba(0,0,0,.045);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      animation: floatCard 7s ease-in-out infinite;
      transition: transform .35s var(--ease), box-shadow .35s var(--ease);
    }

    .testimonial-card:hover {
      animation-play-state: paused;
      transform: translateY(-8px);
      box-shadow: 0 22px 54px rgba(32,57,189,.16);
    }

    .testimonial-card:nth-child(2) { animation-delay: .4s; }
    .testimonial-card:nth-child(3) { animation-delay: .8s; }
    .testimonial-card:nth-child(4) { animation-delay: 1.2s; }

    .stars {
      display: flex;
      gap: 12px;
      color: #ffb51f;
      margin-bottom: 36px;
      font-size: 20px;
    }

    .testimonial-card p {
      margin: 0 0 36px;
      color: #222630;
      font-size: 21px;
      line-height: 1.55;
    }

    .author {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .author-info {
      display: flex;
      align-items: center;
      gap: 18px;
      color: #05070c;
      font-size: 22px;
      font-weight: 760;
    }

    .avatar {
      display: grid;
      place-items: center;
      width: 78px;
      height: 78px;
      border-radius: 50%;
      color: #fff;
      font-weight: 760;
      background: linear-gradient(135deg, #2039bd, #f57841);
      box-shadow: 0 10px 26px rgba(32,57,189,.18);
      transition: transform .3s var(--ease);
      flex-shrink: 0;
    }

    .testimonial-card:hover .avatar {
      transform: scale(1.08) rotate(-4deg);
    }

    .quote {
      color: rgba(32,57,189,.18);
      font-size: 62px;
      line-height: 1;
    }

    .faq {
      background: #fff;
    }

    .faq h2 {
      margin-bottom: 56px;
    }

    .accordion {
      display: grid;
      gap: 26px;
    }

    .faq-item {
      border: 1px solid var(--line);
      border-radius: 8px;
      overflow: hidden;
      background: #fff;
      transition: border-color .35s var(--ease), box-shadow .35s var(--ease);
    }

    .faq-item:hover {
      border-color: rgba(32,57,189,.4);
      box-shadow: 0 12px 32px rgba(32,57,189,.08);
    }

    .faq-item.open {
      border-color: rgba(32,57,189,.45);
      box-shadow: 0 18px 46px rgba(32,57,189,.1);
    }

    .faq-question {
      width: 100%;
      min-height: 98px;
      border: 0;
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
      padding: 24px 38px;
      cursor: pointer;
      text-align: left;
      color: #06070c;
      font: inherit;
      font-size: 22px;
      font-weight: 760;
      letter-spacing: -0.025em;
    }

    .faq-question .fa {
      font-size: 24px;
      color: #333;
      transition: transform .3s var(--ease), color .3s var(--ease);
      flex-shrink: 0;
    }

    .faq-item:hover .faq-question .fa {
      color: var(--blue);
    }

    .faq-item.open .faq-question .fa {
      color: var(--blue);
      transform: rotate(90deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s var(--ease);
    }

    .faq-answer p {
      margin: 0;
      padding: 0 38px 32px;
      color: var(--muted);
      font-size: 19px;
      max-width: 1080px;
    }

    /* Final CTA strip: replaces the old inline "1fr auto" grid style,
       which never stacked on small screens and squeezed the button
       next to the heading. */
    .final-cta {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 28px;
      align-items: center;
    }

    .final-cta__title {
      margin: 0 0 8px;
      color: #fff;
      font-size: clamp(28px, 4vw, 56px);
      line-height: 1.15;
      letter-spacing: -0.05em;
    }

    .final-cta__text {
      margin: 0;
      color: rgba(255,255,255,.86);
      font-size: clamp(16px, 1.6vw, 21px);
    }

    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity .75s var(--ease), transform .75s var(--ease);
    }

    .reveal.in {
      opacity: 1;
      transform: translateY(0);
    }

    .delay-1 { transition-delay: .08s; }
    .delay-2 { transition-delay: .16s; }
    .delay-3 { transition-delay: .24s; }
    .delay-4 { transition-delay: .32s; }

    @keyframes floatCard {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *:before, *:after {
        animation: none !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
      }
      .reveal {
        opacity: 1;
        transform: none;
      }
    }

    @media (max-width: 1320px) {
      .container {
        width: min(1180px, calc(100% - 64px));
      }

      .split,
      .expertise__head,
      .testimonial-head {
        gap: 48px;
      }

      .card-grid,
      .expertise-list {
        gap: 22px;
      }

      .feature-card {
        padding: 38px 36px;
      }

      .feature-card h3 {
        font-size: 27px;
      }
    }

    @media (max-width: 1024px) {
      .section {
        padding: 86px 0;
      }

      .hero {
        min-height: 650px;
      }

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

      .metric-pill {
        justify-content: flex-start;
        padding: 0 34px;
      }

      .split,
      .expertise__head,
      .hiring-grid,
      .testimonial-head {
        grid-template-columns: 1fr;
      }

      .tall-card {
        min-height: auto;
      }

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

      .photo-card {
        min-height: 430px;
        border-radius: 16px;
      }

      .project-grid .project-card {
        flex: 0 0 calc(50vw - 9px);
        width: calc(50vw - 9px);
      }

      .project-card,
      .project-card img {
        min-height: 360px;
      }

      .final-cta {
        grid-template-columns: 1fr auto;
        gap: 24px;
      }
    }

    @media (max-width: 720px) {
      .container {
        width: calc(100% - 34px);
      }

      .hero {
        min-height: 710px;
        padding: 42px 0 56px;
      }

      .hero__checks {
        align-items: flex-start;
        justify-content: flex-start;
        gap: 16px;
        margin: 28px 0 34px;
      }

      .check-item {
        width: 100%;
        white-space: normal;
        justify-content: flex-start;
        font-size: 17px;
      }

      .btn {
        width: 100%;
        min-height: 58px;
        font-size: 16px;
      }

      .metrics-strip {
        padding: 30px 0;
      }

      .metric-pill {
        min-height: 66px;
        gap: 18px;
        font-size: 22px;
      }

      .why__intro p,
      .expertise__head p,
      .testimonial-head p,
      .hiring-copy > p {
        font-size: 18px;
      }

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

      .feature-card > .fa {
        font-size: 42px;
        margin-bottom: 24px;
      }

      .feature-card h3 {
        font-size: 25px;
      }

      .feature-card p,
      .feature-card a,
      .expertise-item p,
      .hiring-item p {
        font-size: 18px;
      }

      .expertise-list {
        grid-template-columns: 1fr;
      }

      .expertise__head,
      .testimonial-head {
        margin-bottom: 50px;
      }

      .expertise__head {
        margin-bottom: 28px;
      }

      .hiring-copy {
        padding: 20px 0 0;
      }

      .hiring-item {
        margin-left: 0;
        padding-left: 0;
      }

      .hiring-item h3 {
        font-size: 24px;
      }

      .photo-card {
        min-height: 330px;
      }

      .project-grid .project-card {
        flex: 0 0 calc(100vw - 68px);
        width: calc(100vw - 68px);
      }

      .project-info {
        padding: 16px 18px;
        font-size: 16px;
      }

      .testimonial-card {
        min-width: 86vw;
        width: 86vw;
        min-height: 330px;
        padding: 34px 28px;
      }

      .testimonial-card p {
        font-size: 18px;
      }

      .author-info {
        font-size: 18px;
      }

      .avatar {
        width: 58px;
        height: 58px;
      }

      .faq-question {
        min-height: 78px;
        padding: 20px 22px;
        font-size: 18px;
      }

      .faq-answer p {
        padding: 0 22px 24px;
        font-size: 16px;
      }


      /* Stack the closing CTA instead of squeezing the button
         next to the heading, and left-align to match the rest of the page. */
      .final-cta {
        grid-template-columns: 1fr;
        text-align: left;
      }

      .final-cta .btn {
        width: 100%;
      }
    }

    @media (max-width: 420px) {
      .container {
        width: calc(100% - 24px);
      }

      .eyebrow {
        font-size: 13px;
        padding: 7px 12px;
      }

      .hero h1 {
        letter-spacing: -0.04em;
      }

      .metric-pill {
        padding: 0 22px;
        font-size: 19px;
        gap: 14px;
      }

      .metric-pill .fa {
        font-size: 30px;
      }

      .expertise-item .num {
        font-size: 52px;
      }

      .expertise-item h3 {
        font-size: 24px;
      }

      .hiring-item h3 {
        font-size: 21px;
      }

      .testimonial-card {
        min-width: 90vw;
        width: 90vw;
        padding: 28px 22px;
      }

      .final-cta__title {
        font-size: 26px;
      }
    }

/* Page controller mappings - FLEXIBLE DEVELOPER PAGE */
body.dt-page-flexible-developer-landing-page .hero h1 {
  font-size: var(--developer-hero-title-size);
}

body.dt-page-flexible-developer-landing-page .hero p {
  font-size: var(--developer-hero-text-size);
}

body.dt-page-flexible-developer-landing-page .hero__checks {
  font-size: var(--developer-hero-check-size);
}

body.dt-page-flexible-developer-landing-page .section {
  padding-top: var(--developer-section-padding-y);
  padding-bottom: var(--developer-section-padding-y);
}

body.dt-page-flexible-developer-landing-page .btn {
  min-height: var(--developer-button-height);
}

/* ==========================================================
   FINAL CLEAN PAGE FIX - layout, typography, sliders, mobile
   ========================================================== */

body.dt-page-flexible-developer-landing-page {
  --developer-section-padding-y: 86px;
  --developer-button-height: 56px;
  --blue: #2138c4;
  --blue-2: #142aa9;
  --ink: #1d2636;
  --muted: #303744;
  --panel: #f5f6fa;
  --shadow: 0 22px 62px rgba(31, 47, 99, 0.12);
  overflow-x: hidden;
}

body.dt-page-flexible-developer-landing-page .page {
  overflow: hidden;
}

body.dt-page-flexible-developer-landing-page .container {
  width: min(1540px, calc(100% - 96px));
}

body.dt-page-flexible-developer-landing-page .section {
  padding-top: 86px !important;
  padding-bottom: 86px !important;
  overflow: visible;
}

body.dt-page-flexible-developer-landing-page .hero {
  min-height: auto;
  padding: 104px 0 88px;
  background:
    radial-gradient(700px 300px at 50% 8%, rgba(255,255,255,.9), transparent 72%),
    linear-gradient(180deg, #fff 0%, #f8f9fc 100%);
}

body.dt-page-flexible-developer-landing-page .hero::before,
body.dt-page-flexible-developer-landing-page .hero::after {
  display: none;
}

body.dt-page-flexible-developer-landing-page .hero__content {
  width: min(1180px, calc(100% - 36px));
  padding-top: 0;
}

body.dt-page-flexible-developer-landing-page .hero h1 {
  max-width: 960px;
  margin: 26px auto 20px;
  font-size: clamp(38px, 4vw, 58px) !important;
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 600;
}

body.dt-page-flexible-developer-landing-page .hero p {
  max-width: 900px;
  font-size: clamp(17px, 1.35vw, 22px) !important;
  line-height: 1.45;
  font-weight: 500;
}

body.dt-page-flexible-developer-landing-page .hero__checks {
  gap: 20px 38px;
  margin: 28px auto 30px;
  font-size: clamp(15px, 1.1vw, 18px) !important;
}

body.dt-page-flexible-developer-landing-page .eyebrow {
  color: #111827;
  background: #f6f7fa;
  border: 1px solid #e3e6ef;
  box-shadow: none;
}

body.dt-page-flexible-developer-landing-page .btn,
body.dt-page-flexible-developer-landing-page .btn:visited {
  min-height: 56px !important;
  padding: 14px 24px;
  border-radius: 11px;
  color: #fff !important;
  background: var(--blue);
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 20px 44px rgba(33, 56, 196, .18);
}

body.dt-page-flexible-developer-landing-page .btn:hover,
body.dt-page-flexible-developer-landing-page .btn:focus-visible {
  color: #fff !important;
  background: var(--blue-2) !important;
  box-shadow: 0 24px 54px rgba(33, 56, 196, .24);
}

body.dt-page-flexible-developer-landing-page .btn--light,
body.dt-page-flexible-developer-landing-page .btn--light:visited {
  color: var(--blue) !important;
  background: #fff !important;
}

body.dt-page-flexible-developer-landing-page .btn--light:hover,
body.dt-page-flexible-developer-landing-page .btn--light:focus-visible {
  color: var(--blue-2) !important;
  background: #fff !important;
}

body.dt-page-flexible-developer-landing-page .metrics-strip {
  padding: 34px 0;
  background: var(--blue);
  overflow: visible;
}

body.dt-page-flexible-developer-landing-page .metrics-grid {
  gap: 18px;
}

body.dt-page-flexible-developer-landing-page .metric-pill {
  min-height: 62px;
  gap: 18px;
  font-size: clamp(17px, 1.35vw, 22px);
  letter-spacing: -0.025em;
  box-shadow: 0 14px 32px rgba(0,0,0,.08);
}

body.dt-page-flexible-developer-landing-page .metric-pill .fa {
  font-size: 26px;
}

body.dt-page-flexible-developer-landing-page .why h2,
body.dt-page-flexible-developer-landing-page .expertise h2,
body.dt-page-flexible-developer-landing-page .hiring h2,
body.dt-page-flexible-developer-landing-page .projects h2,
body.dt-page-flexible-developer-landing-page .testimonials h2,
body.dt-page-flexible-developer-landing-page .faq h2 {
  font-size: clamp(36px, 3.45vw, 54px);
  line-height: 1.15;
  letter-spacing: -0.04em;
  font-weight: 600;
}

body.dt-page-flexible-developer-landing-page .why__intro p,
body.dt-page-flexible-developer-landing-page .expertise__head p,
body.dt-page-flexible-developer-landing-page .testimonial-head p,
body.dt-page-flexible-developer-landing-page .hiring-copy > p {
  font-size: clamp(17px, 1.25vw, 22px);
  line-height: 1.55;
  color: #111827;
}

body.dt-page-flexible-developer-landing-page .split {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: 56px;
  align-items: center;
}

body.dt-page-flexible-developer-landing-page .card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

body.dt-page-flexible-developer-landing-page .feature-card {
  min-height: auto;
  padding: 34px 32px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(31, 47, 99, .08);
}

body.dt-page-flexible-developer-landing-page .feature-card h3 {
  font-size: clamp(24px, 1.8vw, 31px);
  line-height: 1.18;
  font-weight: 600;
}

body.dt-page-flexible-developer-landing-page .feature-card p {
  font-size: 17px;
  line-height: 1.55;
}

body.dt-page-flexible-developer-landing-page .feature-card a,
body.dt-page-flexible-developer-landing-page .project-info a {
  color: var(--blue) !important;
}

body.dt-page-flexible-developer-landing-page .feature-card a:hover,
body.dt-page-flexible-developer-landing-page .project-info a:hover {
  color: var(--blue-2) !important;
}

body.dt-page-flexible-developer-landing-page .expertise {
  overflow: visible;
}

body.dt-page-flexible-developer-landing-page .wave-mark {
  top: -18px;
  right: 0;
  width: min(430px, 28vw);
  height: min(260px, 18vw);
  opacity: .72;
  border-radius: 0;
  transform: none;
  background: url("assets/uploads/2026/07/group-1-1-20260703125937-510793c5.png") right top / contain no-repeat;
  mask-image: none;
}

body.dt-page-flexible-developer-landing-page .expertise__head,
body.dt-page-flexible-developer-landing-page .testimonial-head {
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 58px;
  margin-bottom: 56px;
}

body.dt-page-flexible-developer-landing-page .expertise-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 74px);
}

body.dt-page-flexible-developer-landing-page .expertise-item {
  min-height: 0;
  padding: 0 0 24px;
}

body.dt-page-flexible-developer-landing-page .expertise-item .num {
  font-size: clamp(58px, 5.2vw, 82px);
  margin-bottom: 12px;
}

body.dt-page-flexible-developer-landing-page .expertise-item h3 {
  margin-bottom: 18px;
  font-size: clamp(21px, 1.65vw, 29px);
  line-height: 1.22;
  font-weight: 600;
}

body.dt-page-flexible-developer-landing-page .expertise-item p {
  max-width: 300px;
  font-size: clamp(16px, 1.1vw, 20px);
  line-height: 1.55;
}

body.dt-page-flexible-developer-landing-page .hiring {
  padding-top: 50px !important;
  overflow: hidden;
}

body.dt-page-flexible-developer-landing-page .hiring-grid {
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 54px;
}

body.dt-page-flexible-developer-landing-page .photo-card {
  min-height: 480px;
  border-radius: 16px;
  overflow: hidden;
}

body.dt-page-flexible-developer-landing-page .photo-card img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

body.dt-page-flexible-developer-landing-page .hiring-copy {
  padding: 22px 0;
  overflow: visible;
}

body.dt-page-flexible-developer-landing-page .hiring-item {
  margin-bottom: 28px;
  padding: 18px 20px;
  background: rgba(255,255,255,.56);
}

body.dt-page-flexible-developer-landing-page .hiring-item:hover {
  transform: translateY(-4px);
}

body.dt-page-flexible-developer-landing-page .hiring-item h3 {
  font-size: clamp(25px, 2vw, 34px);
  font-weight: 600;
}

body.dt-page-flexible-developer-landing-page .hiring-item p {
  font-size: clamp(16px, 1.15vw, 20px);
  line-height: 1.55;
}

body.dt-page-flexible-developer-landing-page .projects,
body.dt-page-flexible-developer-landing-page .testimonials {
  overflow: hidden;
}

body.dt-page-flexible-developer-landing-page .projects .expertise__head {
  margin-bottom: 28px;
}

body.dt-page-flexible-developer-landing-page .carousel-viewport {
  position: relative;
  overflow: hidden;
  padding: 34px 0 86px;
  margin: 0;
  max-width: 100%;
}

body.dt-page-flexible-developer-landing-page .project-grid,
body.dt-page-flexible-developer-landing-page .testimonial-track {
  gap: 22px;
  margin-top: 0;
  width: auto;
  will-change: transform;
}

body.dt-page-flexible-developer-landing-page .project-grid .project-card {
  flex: 0 0 calc((100% - 44px) / 3);
  width: calc((100% - 44px) / 3);
  max-width: none;
}

body.dt-page-flexible-developer-landing-page .project-card {
  min-height: 380px;
  border-radius: 12px;
  box-shadow: 0 20px 46px rgba(31,47,99,.12);
}

body.dt-page-flexible-developer-landing-page .project-card img {
  min-height: 380px;
}

body.dt-page-flexible-developer-landing-page .project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 58px rgba(31,47,99,.16);
}

body.dt-page-flexible-developer-landing-page .project-info {
  padding: 18px 24px;
  font-size: 17px;
  background: rgba(255,255,255,.86);
}

body.dt-page-flexible-developer-landing-page .testimonial-track {
  padding: 0;
}

body.dt-page-flexible-developer-landing-page .testimonial-card {
  flex: 0 0 calc((100% - 44px) / 3);
  min-width: 0;
  width: calc((100% - 44px) / 3);
  min-height: 300px;
  padding: 32px;
  border-radius: 14px;
  box-shadow: 0 20px 46px rgba(31,47,99,.1);
  animation: none;
}

body.dt-page-flexible-developer-landing-page .testimonial-card p {
  font-size: 17px;
  line-height: 1.55;
}

body.dt-page-flexible-developer-landing-page .stars {
  margin-bottom: 24px;
}

body.dt-page-flexible-developer-landing-page .author-info {
  font-size: 18px;
}

body.dt-page-flexible-developer-landing-page .avatar {
  width: 58px;
  height: 58px;
}

body.dt-page-flexible-developer-landing-page .quote {
  font-size: 48px;
}

body.dt-page-flexible-developer-landing-page .carousel-controls {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transform: translateX(-50%);
}

body.dt-page-flexible-developer-landing-page .carousel-arrow,
body.dt-page-flexible-developer-landing-page .carousel-dot {
  appearance: none;
  border: 0;
  cursor: pointer;
}

body.dt-page-flexible-developer-landing-page .carousel-arrow {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 28px rgba(33,56,196,.2);
  transition: background .22s var(--ease), opacity .22s var(--ease), transform .22s var(--ease);
}

body.dt-page-flexible-developer-landing-page .carousel-arrow:not(:disabled):hover {
  color: #fff;
  background: var(--blue-2);
  transform: translateY(-2px);
}

body.dt-page-flexible-developer-landing-page .carousel-arrow:disabled {
  opacity: .4;
  cursor: default;
}

body.dt-page-flexible-developer-landing-page .carousel-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 48px;
}

body.dt-page-flexible-developer-landing-page .carousel-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 999px;
  background: #c9ced8;
  transition: width .22s var(--ease), background .22s var(--ease);
}

body.dt-page-flexible-developer-landing-page .carousel-dot.is-active {
  width: 28px;
  background: var(--blue);
}

body.dt-page-flexible-developer-landing-page .faq h2 {
  margin-bottom: 38px;
}

body.dt-page-flexible-developer-landing-page .accordion {
  gap: 16px;
}

body.dt-page-flexible-developer-landing-page .faq-question {
  min-height: 72px;
  padding: 20px 28px;
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 650;
}

body.dt-page-flexible-developer-landing-page .faq-answer p {
  padding: 0 28px 24px;
  font-size: 17px;
  line-height: 1.55;
}

body.dt-page-flexible-developer-landing-page .final-cta {
  padding-top: 14px;
  padding-bottom: 14px;
}

@media (max-width: 1320px) {
  body.dt-page-flexible-developer-landing-page .container {
    width: min(1180px, calc(100% - 56px));
  }

  body.dt-page-flexible-developer-landing-page .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  body.dt-page-flexible-developer-landing-page .section {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }

  body.dt-page-flexible-developer-landing-page .split,
  body.dt-page-flexible-developer-landing-page .expertise__head,
  body.dt-page-flexible-developer-landing-page .hiring-grid,
  body.dt-page-flexible-developer-landing-page .testimonial-head {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  body.dt-page-flexible-developer-landing-page .expertise-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.dt-page-flexible-developer-landing-page .project-grid .project-card,
  body.dt-page-flexible-developer-landing-page .testimonial-card {
    flex-basis: calc((100% - 22px) / 2);
    width: calc((100% - 22px) / 2);
  }
}

@media (max-width: 720px) {
  body.dt-page-flexible-developer-landing-page .container {
    width: calc(100% - 28px);
  }

  body.dt-page-flexible-developer-landing-page .section {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }

  body.dt-page-flexible-developer-landing-page .hero {
    padding: 70px 0 58px;
  }

  body.dt-page-flexible-developer-landing-page .hero h1 {
    font-size: clamp(34px, 10vw, 42px) !important;
  }

  body.dt-page-flexible-developer-landing-page .why h2,
  body.dt-page-flexible-developer-landing-page .expertise h2,
  body.dt-page-flexible-developer-landing-page .hiring h2,
  body.dt-page-flexible-developer-landing-page .projects h2,
  body.dt-page-flexible-developer-landing-page .testimonials h2,
  body.dt-page-flexible-developer-landing-page .faq h2 {
    font-size: clamp(31px, 9vw, 38px);
    line-height: 1.15;
  }

  body.dt-page-flexible-developer-landing-page .hero__checks {
    justify-content: center;
  }

  body.dt-page-flexible-developer-landing-page .check-item {
    justify-content: flex-start;
    width: 100%;
  }

  body.dt-page-flexible-developer-landing-page .metrics-grid,
  body.dt-page-flexible-developer-landing-page .card-grid,
  body.dt-page-flexible-developer-landing-page .expertise-list {
    grid-template-columns: 1fr;
  }

  body.dt-page-flexible-developer-landing-page .metric-pill {
    justify-content: center;
    min-height: 58px;
    font-size: 18px;
  }

  body.dt-page-flexible-developer-landing-page .wave-mark {
    width: 190px;
    height: 120px;
    opacity: .45;
  }

  body.dt-page-flexible-developer-landing-page .photo-card,
  body.dt-page-flexible-developer-landing-page .photo-card img {
    min-height: 300px;
  }

  body.dt-page-flexible-developer-landing-page .carousel-viewport {
    padding: 24px 0 76px;
  }

  body.dt-page-flexible-developer-landing-page .project-grid .project-card,
  body.dt-page-flexible-developer-landing-page .testimonial-card {
    flex-basis: 100%;
    width: 100%;
  }

  body.dt-page-flexible-developer-landing-page .project-card,
  body.dt-page-flexible-developer-landing-page .project-card img {
    min-height: 330px;
  }

  body.dt-page-flexible-developer-landing-page .testimonial-card {
    min-height: auto;
    padding: 26px 22px;
  }

  body.dt-page-flexible-developer-landing-page .carousel-arrow {
    width: 38px;
    height: 38px;
  }

  body.dt-page-flexible-developer-landing-page .btn {
    width: 100%;
  }

  body.dt-page-flexible-developer-landing-page .final-cta {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Final WordPress Page Corrections: hero gap + enquiry form
========================================================= */

body.dt-page-flexible-developer-landing-page main.page > section.hero {
  padding: 155px 0 64px !important;
  min-height: auto !important;
  display: grid !important;
  place-items: start center !important;
}

body.dt-page-flexible-developer-landing-page main.page > section.hero .hero__content {
  padding-top: 0 !important;
}

body.dt-page-flexible-developer-landing-page main.page > section.hero h1 {
  margin-top: 38px !important;
}

body.dt-page-flexible-developer-landing-page .wordpress-lead-form-section {
  background:
    radial-gradient(780px 280px at 16% 12%, rgba(32, 57, 189, .12), transparent 72%),
    radial-gradient(760px 280px at 88% 20%, rgba(248, 165, 31, .12), transparent 72%),
    #f7f8fb;
}

body.dt-page-flexible-developer-landing-page .wordpress-lead-form-layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 54px;
  align-items: start;
}

body.dt-page-flexible-developer-landing-page .wordpress-lead-copy .eyebrow {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(31, 47, 99, .10);
}

body.dt-page-flexible-developer-landing-page .wordpress-lead-copy h2 {
  margin: 28px 0 18px;
  max-width: 620px;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.055em;
  font-weight: 760;
}

body.dt-page-flexible-developer-landing-page .wordpress-lead-copy p {
  max-width: 560px;
  margin: 0;
  color: #555d6f;
  font-size: 20px;
  line-height: 1.58;
}

body.dt-page-flexible-developer-landing-page .wordpress-contact-form {
  padding: 34px;
  border: 1px solid rgba(29, 38, 54, .08);
  border-radius: 28px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 28px 80px rgba(31, 47, 99, .12);
}

body.dt-page-flexible-developer-landing-page .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

body.dt-page-flexible-developer-landing-page .form-field {
  display: grid;
  gap: 9px;
  color: var(--blue);
  font-size: 16px;
  font-weight: 700;
}

body.dt-page-flexible-developer-landing-page .form-field-full {
  grid-column: 1 / -1;
}

body.dt-page-flexible-developer-landing-page .form-field em {
  color: #777f8e;
  font-style: normal;
  font-weight: 500;
}

body.dt-page-flexible-developer-landing-page .form-field input,
body.dt-page-flexible-developer-landing-page .form-field select,
body.dt-page-flexible-developer-landing-page .form-field textarea {
  width: 100%;
  border: 1.5px solid #dce1ea;
  border-radius: 14px;
  background-color: #fff;
  color: #080a12;
  font: inherit;
  font-size: 17px;
  font-weight: 500;
  outline: none;
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease);
}

body.dt-page-flexible-developer-landing-page .form-field input,
body.dt-page-flexible-developer-landing-page .form-field select {
  min-height: 58px;
  padding: 0 18px;
}

body.dt-page-flexible-developer-landing-page .form-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #0b1224 50%),
    linear-gradient(135deg, #0b1224 50%, transparent 50%);
  background-position:
    calc(100% - 23px) 50%,
    calc(100% - 15px) 50%;
  background-size: 8px 8px, 8px 8px;
  background-repeat: no-repeat;
  padding-right: 48px;
}

body.dt-page-flexible-developer-landing-page .form-field textarea {
  min-height: 132px;
  padding: 16px 18px;
  resize: vertical;
}

body.dt-page-flexible-developer-landing-page .form-field input:focus,
body.dt-page-flexible-developer-landing-page .form-field select:focus,
body.dt-page-flexible-developer-landing-page .form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 5px rgba(32, 57, 189, .10);
}

body.dt-page-flexible-developer-landing-page .form-honey {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

body.dt-page-flexible-developer-landing-page .wordpress-contact-form .btn {
  min-width: 230px;
  min-height: 58px;
}

@media (max-width: 1024px) {
  body.dt-page-flexible-developer-landing-page .wordpress-lead-form-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 720px) {
  body.dt-page-flexible-developer-landing-page main.page > section.hero {
    padding: 125px 0 58px !important;
  }

  body.dt-page-flexible-developer-landing-page main.page > section.hero h1 {
    margin-top: 28px !important;
  }

  body.dt-page-flexible-developer-landing-page .wordpress-contact-form {
    padding: 22px;
    border-radius: 22px;
  }

  body.dt-page-flexible-developer-landing-page .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  body.dt-page-flexible-developer-landing-page .form-field input,
  body.dt-page-flexible-developer-landing-page .form-field select {
    min-height: 54px;
    font-size: 16px;
  }
}

/* =========================================================
   Final Premium Dark Form Override
   Keep this block at the very bottom of the page CSS.
========================================================= */

body.dt-page-flexible-developer-landing-page .wordpress-lead-form-section {
  padding: 115px 0 !important;
  background:
    radial-gradient(900px 420px at 12% 18%, rgba(124, 58, 237, 0.38), transparent 68%),
    radial-gradient(760px 360px at 88% 12%, rgba(32, 57, 189, 0.30), transparent 70%),
    linear-gradient(135deg, #080b1f 0%, #11173a 42%, #071025 100%) !important;
  overflow: hidden !important;
}

body.dt-page-flexible-developer-landing-page .wordpress-lead-form-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr) !important;
  gap: 56px !important;
  align-items: center !important;
}

body.dt-page-flexible-developer-landing-page .wordpress-lead-copy .eyebrow {
  background: rgba(255, 255, 255, 0.10) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  color: #ffffff !important;
  box-shadow: none !important;
  backdrop-filter: blur(14px) !important;
}

body.dt-page-flexible-developer-landing-page .wordpress-lead-copy .eyebrow .fa {
  color: #ff9f1c !important;
}

body.dt-page-flexible-developer-landing-page .wordpress-lead-copy h2 {
  color: #ffffff !important;
  text-shadow: 0 14px 45px rgba(0, 0, 0, 0.28) !important;
}

body.dt-page-flexible-developer-landing-page .wordpress-lead-copy p {
  color: rgba(255, 255, 255, 0.78) !important;
}

body.dt-page-flexible-developer-landing-page .wordpress-contact-form {
  padding: 34px !important;
  border-radius: 30px !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  background: rgba(255, 255, 255, 0.96) !important;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.90) !important;
}

body.dt-page-flexible-developer-landing-page .form-field span {
  color: #2039bd !important;
}

body.dt-page-flexible-developer-landing-page .form-field input,
body.dt-page-flexible-developer-landing-page .form-field select,
body.dt-page-flexible-developer-landing-page .form-field textarea {
  background: #ffffff !important;
  border: 1.5px solid #d9deea !important;
  color: #101525 !important;
  box-shadow: none !important;
}

body.dt-page-flexible-developer-landing-page .form-field input::placeholder,
body.dt-page-flexible-developer-landing-page .form-field textarea::placeholder {
  color: #667085 !important;
}

body.dt-page-flexible-developer-landing-page .form-field input:focus,
body.dt-page-flexible-developer-landing-page .form-field select:focus,
body.dt-page-flexible-developer-landing-page .form-field textarea:focus {
  border-color: #2039bd !important;
  box-shadow: 0 0 0 5px rgba(32, 57, 189, 0.12) !important;
}

body.dt-page-flexible-developer-landing-page .wordpress-contact-form .btn {
  min-width: 290px !important;
  min-height: 64px !important;
  border-radius: 14px !important;
  background: #2039bd !important;
  color: #ffffff !important;
  box-shadow: 0 22px 52px rgba(32, 57, 189, 0.30) !important;
}

body.dt-page-flexible-developer-landing-page .wordpress-contact-form .btn:hover {
  background: #1029a8 !important;
  transform: translateY(-3px) !important;
}

@media (max-width: 1024px) {
  body.dt-page-flexible-developer-landing-page .wordpress-lead-form-layout {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }

  body.dt-page-flexible-developer-landing-page .wordpress-lead-copy {
    text-align: center !important;
  }

  body.dt-page-flexible-developer-landing-page .wordpress-lead-copy h2,
  body.dt-page-flexible-developer-landing-page .wordpress-lead-copy p {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (max-width: 720px) {
  body.dt-page-flexible-developer-landing-page .wordpress-lead-form-section {
    padding: 72px 0 !important;
  }

  body.dt-page-flexible-developer-landing-page .wordpress-contact-form {
    padding: 22px !important;
    border-radius: 22px !important;
  }

  body.dt-page-flexible-developer-landing-page .wordpress-contact-form .btn {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 56px !important;
  }
}
