/* design-development.css � Page-specific styles only. Shared: base.css + theme.css + components.css */

/* design-development.css � Page-specific styles only. Shared: base.css + theme.css + components.css */
:root {
  --dev-bg: #030712;
  --dev-panel: #0b1221;
  --dev-panel-2: #101827;
  --dev-border: rgba(148, 163, 184, .16);
  --dev-text: #f8fafc;
  --dev-muted: #94a3b8;
  --dev-soft: #cbd5e1;
  --dev-blue: var(--brand-blue);
  --dev-blue-2: #0ea5e9;
  --dev-green: #22d07e;
  --dev-orange: #ff8a2a;
  --dev-purple: #8b5cf6;
  --dev-shadow: 0 28px 80px rgba(0, 0, 0, .35)
}
 
html {
  scroll-behavior: smooth
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--dev-bg);
  color: var(--dev-text);
  overflow-x: hidden
}

.container-custom { max-width: var(--container-max, 1400px)
}

.navbar {
  position: relative;
  z-index: 50
}



.dev-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 100px 0;
  background: radial-gradient(circle at 76% 22%, rgba(47, 134, 255, .28), transparent 31rem), radial-gradient(circle at 13% 70%, rgba(34, 208, 126, .1), transparent 27rem), linear-gradient(180deg, #050b16 0%, #030712 100%);
  border-bottom: 1px solid rgba(148, 163, 184, .09)
}

/* .dev-hero: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: 78px 78px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .75), transparent 76%);
  z-index: -2
} */

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: .55;
  z-index: -1
}

.hero-glow-one {
  width: 360px;
  height: 360px;
  right: 9%;
  top: 145px;
  background: rgba(47, 134, 255, .22)
}

.hero-glow-two {
  width: 260px;
  height: 260px;
  left: 7%;
  bottom: 90px;
  background: rgba(20, 184, 166, .14)
}

.dev-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  max-width: 100%;
  padding: 10px 14px;
  border-radius: 999px;
  color: #93c5fd;
  background: rgba(47, 134, 255, .13);
  border: 1px solid rgba(47, 134, 255, .24);
  font-weight: 800;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .08em
}

.dev-eyebrow.mini {
  font-size: .68rem;
  padding: 8px 12px;
  margin-bottom: 16px
}

.dev-hero h1 {
  font-size: clamp(3.15rem, 6.15vw, 6.7rem);
  line-height: .94;
  letter-spacing: -0.01em;
  font-weight: 800;
  margin: 24px 0 24px;
  color: #fff;
  max-width: 760px
}

.hero-copy,
.side-copy,
.section-title p {
  color: var(--dev-soft);
  font-size: 1rem;
  line-height: 1.84;
  max-width: 660px
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 30px 0 24px
}

.dev-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: .25s;
  border: 1px solid transparent
}

.dev-btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-blue-dark, #1d6fd6), var(--brand-blue));
  box-shadow: 0 18px 38px rgba(47, 134, 255, .26)
}

.dev-btn.secondary {
  color: #dbeafe;
  background: rgba(15, 23, 42, .72);
  border-color: rgba(148, 163, 184, .18)
}

.dev-btn:hover {
  transform: translateY(-2px);
  color: #fff
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 660px
}

.trust-strip div {
  padding: 16px 18px;
  border-radius: 17px;
  background: rgba(15, 23, 42, .65);
  border: 1px solid rgba(148, 163, 184, .15);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .18)
}

.trust-strip strong {
  display: block;
  font-size: 1.25rem;
  line-height: 1;
  color: #fff
}

.trust-strip span {
  display: block;
  margin-top: 7px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--dev-muted)
}

.hero-art {
  position: relative;
  max-width: 620px;
  margin-left: auto;
  padding: 22px;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(16, 24, 42, .96), rgba(7, 13, 25, .98));
  border: 1px solid rgba(148, 163, 184, .18);
  box-shadow: var(--dev-shadow)
}

.hero-art:before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 30px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(47, 134, 255, .6), transparent 33%, rgba(34, 208, 126, .35));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none
}

.art-toolbar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: -5px 0 18px
}

.art-toolbar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--brand-blue)
}

.art-toolbar span:nth-child(2) {
  background: #22d07e
}

.art-toolbar span:nth-child(3) {
  background: #ff8a2a
}

.art-toolbar em {
  margin-left: auto;
  color: #64748b;
  font-style: normal;
  font-weight: 800;
  font-size: .78rem
}

.art-hero-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 24px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(47, 134, 255, .24), rgba(34, 208, 126, .13));
  border: 1px solid rgba(96, 165, 250, .22);
  margin-bottom: 16px
}

.card-ai


.art-hero-card small {
  display: block;
  color: #7dd3fc;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 9px
}

.art-hero-card h3 {
  font-size: 1.68rem;
  line-height: 1.35;
  color: #fff;
  font-weight: 800;
  margin: 0 0 8px
}

.art-hero-card p {
  color: #dbeafe;
  margin: 0;
  line-height: 1.6
}

.art-logo {
  flex: 0 0 88px;
  width: 88px;
  height: 88px;
  border-radius: 25px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #fff;
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--brand-blue), #22d07e);
  box-shadow: 0 18px 45px rgba(47, 134, 255, .28)
}

.art-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px
}

.art-metrics div {
  min-height: 116px;
  border-radius: 20px;
  background: rgba(2, 7, 18, .43);
  border: 1px solid rgba(148, 163, 184, .13);
  padding: 17px
}

.art-metrics i {
  font-size: 2rem;
  color: #60a5fa;
  margin-bottom: 14px;
  display: block;
}

.art-metrics strong {
  display: block;
  color: #fff;
  font-size: 1.08rem
}

.art-metrics span {
  display: block;
  color: #94a3b8;
  font-size: .8rem;
  margin-top: 4px
}

.art-stack {
  display: grid;
  gap: 11px
}

.art-stack div {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 16px;
  border-radius: 16px;
  background: rgba(2, 7, 18, .46);
  border: 1px solid rgba(148, 163, 184, .13);
  color: #dbeafe;
  font-weight: 800
}

.art-stack i {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #60a5fa;
  background: rgba(47, 134, 255, .13)
}

.dev-section {
  padding: 82px 0;
}

.services-section,
.process-section {
  background: #030712;
}

body.light-mode .services-section,
body.light-mode .process-section{
    background: #f4f8fc !important;
}

.portfolio-section,
.plans-section,
.skills-section {
  background: linear-gradient(180deg, rgba(8, 15, 28, .88), rgba(4, 10, 20, .95));
  border-top: 1px solid rgba(148, 163, 184, .08);
  border-bottom: 1px solid rgba(148, 163, 184, .08);
  overflow-x: hidden;
}

.section-title {
  max-width: 835px;
  margin: 0 auto 46px
}

.section-title h2,
.side-title,
.final-cta h2 {
  font-size: clamp(2.25rem, 4.1vw, 4.15rem);
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 17px
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(15, 23, 42, .92), rgba(8, 15, 29, .98));
  border: 1px solid rgba(148, 163, 184, .16);
  box-shadow: 0 24px 62px rgba(0, 0, 0, .24);
  transition: .25s
}

.service-card:before {
  content: '';
  position: absolute;
  inset: auto -20% -65% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(47, 134, 255, .1);
  transition: .25s
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(47, 134, 255, .48)
}

.service-card:hover:before {
  transform: scale(1.25);
  background: rgba(47, 134, 255, .18)
}

.service-card.featured-card {
  background: linear-gradient(145deg, rgba(15, 28, 52, .98), rgba(9, 17, 32, .98));
  border-color: rgba(47, 134, 255, .34)
}

.service-card>i {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #60a5fa;
  background: rgba(47, 134, 255, .14);
  border: 1px solid rgba(47, 134, 255, .23);
  font-size: 1.28rem;
  margin-bottom: 20px
}

.service-card h3,
.portfolio-card h3,
.price-card h3,
.process-list h3 {
  color: #fff;
  font-size: 1.17rem;
  font-weight: 800;
  margin-bottom: 10px
}

.service-card p,
.portfolio-card p,
.price-card p,
.process-list p,
.final-cta p {
  color: var(--dev-soft);
  line-height: 1.74;
  margin: 0;
  font-size: .94rem
}

.portfolio-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

.portfolio-card {
  min-height: 188px;
  padding: 28px;
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(15, 23, 42, .9), rgba(8, 15, 29, .98));
  border: 1px solid rgba(148, 163, 184, .16);
  box-shadow: 0 22px 55px rgba(0, 0, 0, .22)
}

.portfolio-card.wide {
  grid-column: span 2
}

.portfolio-card.accent {
  background: linear-gradient(135deg, rgba(25, 118, 210, .26), rgba(15, 23, 42, .94));
  border-color: rgba(47, 134, 255, .34)
}

.portfolio-card span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  color: #93c5fd;
  background: rgba(47, 134, 255, .14);
  font-weight: 900;
  margin-bottom: 18px
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px
}

.price-card {
  position: relative;
  padding: 28px;
  border-radius: 27px;
  background: linear-gradient(145deg, rgba(15, 23, 42, .94), rgba(8, 15, 29, .99));
  border: 1px solid rgba(73, 108, 239, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .4);
}

.price-card.featured {
  background: linear-gradient(145deg, #0d1a3a, #0a1128);
  border: 2px solid var(--brand-blue, #2f86ff);
  border-top: 4px solid var(--brand-blue, #2f86ff);
  box-shadow:
    0 0 0 1px rgba(47,134,255,.15),
    0 20px 60px rgba(47,134,255,.2),
    0 40px 80px rgba(0,0,0,.35);
  transform: none;
  z-index: 2;
}
/* Remove ::before accent bar — using border-top instead */
.price-card.featured::before {
  display: none;
}

.price-card.featured:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 0 1px rgba(47,134,255,.25),
    0 30px 80px rgba(47,134,255,.3),
    0 50px 90px rgba(0,0,0,.4);
}

.popular-badge {
  position: absolute;
  right: 18px;
  top: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-blue, #2f86ff), #1ea9df);
  color: #fff;
  font-size: .62rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  box-shadow: 0 4px 14px rgba(47,134,255,.4);
}

.price-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 19px
}

.price-top span {
  color: #93c5fd;
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 900
}

.price-icon {
  width: 52px;
  height: 52px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.2rem
}

.price-icon.purple {
  background: linear-gradient(135deg, #7c3aed, #a855f7)
}

.price-icon.blue {
  background: linear-gradient(135deg, var(--brand-blue-dark, #1d6fd6), var(--brand-blue))
}

.price-icon.orange {
  background: linear-gradient(135deg, #f97316, #ffb020)
}

.price-icon.teal {
  background: linear-gradient(135deg, #14b8a6, #22d07e)
}

.price {
  font-size: 2.65rem;
  line-height: 1;
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 24px 0 18px
}

.price small {
  display: block;
  margin-top: 9px;
  color: var(--dev-muted);
  font-size: .74rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .06em
}

.price-card ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 26px !important;
  display: grid;
  gap: 11px
}

.price-card li {
  position: relative;
  padding-left: 25px;
  color: #d6e3f5;
  font-size: .91rem;
  line-height: 1.52
}

.price-card li:before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: #22d07e
}

.order-link {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  color: #fff !important;
  border-radius: 15px;
  padding: 15px 16px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--brand-blue-dark, #1d6fd6), var(--brand-blue));
  box-shadow: 0 18px 40px rgba(47, 134, 255, .27);
  transition: .25s
}

.order-link:after {
  content: '\f232';
  font-family: 'Font Awesome 6 Brands';
  margin-left: 9px
}

.order-link:hover {
  transform: translateY(-2px)
}

.process-list {
  display: grid;
  gap: 16px
}

.process-list>div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: start;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(15, 23, 42, .92), rgba(8, 15, 29, .98));
  border: 1px solid rgba(148, 163, 184, .16)
}

.process-list span {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(47, 134, 255, .13);
  border: 1px solid rgba(47, 134, 255, .22);
  color: #93c5fd;
  font-weight: 900;
  grid-row: span 2
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px
}

.skill-tags span {
  padding: 12px 16px;
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(15, 23, 42, .74);
  border: 1px solid rgba(148, 163, 184, .16);
  font-weight: 800;
  font-size: .88rem
}

.final-cta-section {
  padding: 82px 0;
  background: #030712
}

body.light-mode .final-cta-section{
  background-color: #f1f5f9 !important;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 42px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(25, 118, 210, .24), rgba(15, 23, 42, .95));
  border: 1px solid rgba(47, 134, 255, .27);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .23)
}

.final-cta h2 {
  font-size: clamp(2rem, 3.7vw, 3.65rem);
  margin-bottom: 11px
}

.footer-wrap {
  margin-top: 0 !important
}

.footer_links ul {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0 !important
}

.footer_links ul li {
  list-style: none !important
}

.footer_links ul li:before {
  display: none !important
}

.footer_links a {
  text-decoration: none !important
}

.footer_bottom {
  position: relative !important
}

.footer_about .footer-status {
  width: max-content
}

body.light-mode {
  background: #f4f8fc !important;
  color: #0f172a
}

.light-mode .dev-hero {
  background: radial-gradient(circle at 76% 22%, rgba(47, 134, 255, .17), transparent 31rem), radial-gradient(circle at 13% 70%, rgba(34, 208, 126, .1), transparent 27rem), linear-gradient(180deg, #fff 0%, #f4f8fc 100%);
  border-bottom-color: rgba(15, 23, 42, .07)
}

.light-mode .dev-hero:before {
  background-image: linear-gradient(rgba(15, 23, 42, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 23, 42, .035) 1px, transparent 1px);
  background-image: none;
}

.light-mode .dev-hero h1,
.light-mode .section-title h2,
.light-mode .side-title,
.light-mode .final-cta h2,
.light-mode .service-card h3,
.light-mode .portfolio-card h3,
.light-mode .price-card h3,
.light-mode .process-list h3,
.light-mode .price,
.light-mode .trust-strip strong,
.light-mode .art-hero-card h3,
.light-mode .art-metrics strong {
  color: #0f172a !important
}

.light-mode .hero-copy,
.light-mode .side-copy,
.light-mode .section-title p,
.light-mode .service-card p,
.light-mode .portfolio-card p,
.light-mode .price-card p,
.light-mode .process-list p,
.light-mode .final-cta p,
.light-mode .price-card li,
.light-mode .art-hero-card p {
  color: #475569 !important
}

.light-mode .dev-eyebrow {
  background: #e8f2ff;
  border-color: #bfdbfe;
  color: #1d4ed8
}

.light-mode .dev-btn.secondary,
.light-mode .trust-strip div,
.light-mode .skill-tags span {
  background: #fff;
  border-color: rgba(15, 23, 42, .08);
  color: #334155;
  box-shadow: 0 15px 35px rgba(15, 23, 42, .06)
}

.light-mode .hero-art,
.light-mode .service-card,
.light-mode .portfolio-card,
.light-mode .price-card:not(.featured),
.light-mode .process-list>div {
  background: #fff;
  border-color: rgba(15, 23, 42, .08);
  box-shadow: 0 24px 62px rgba(15, 23, 42, .08)
}

/* Featured card keeps brand styling in light mode */
.light-mode .price-card.featured {
  background: linear-gradient(145deg, #eff6ff, #e8f0fe) !important;
  border: 2px solid var(--brand-blue, #2f86ff) !important;
  box-shadow: 0 0 0 1px rgba(47,134,255,.15), 0 20px 50px rgba(47,134,255,.15) !important;
}
.light-mode .price-card.featured h3,
.light-mode .price-card.featured .price { color: #0f172a !important; }

.light-mode .portfolio-section,
.light-mode .plans-section,
.light-mode .skills-section {
  background: #eef4fa;
  border-color: rgba(15, 23, 42, .06)
}

.light-mode .art-metrics div,
.light-mode .art-stack div {
  background: #f8fafc;
  border-color: rgba(15, 23, 42, .08);
  color: #334155
}

.light-mode .art-stack span {
  color: #334155
}

.light-mode .art-hero-card {
  background: linear-gradient(135deg, #eef6ff, #f4fffc);
  border-color: #bfdbfe
}

.light-mode .final-cta {
  background: linear-gradient(135deg, #e8f2ff, #fff);
  border-color: #bfdbfe;
  box-shadow: 0 25px 60px rgba(15, 23, 42, .08)
}

@media(max-width:1199px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .price-card.featured {
    transform: none
  }
}

@media(max-width:991px) {
  .dev-hero {
    padding: 102px 0
  }

  .hero-art {
    margin: 0 auto
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .portfolio-card.wide {
    grid-column: span 1
  }

  .portfolio-board {
    grid-template-columns: 1fr
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column
  }

  

  

  

  

  

  

  

  

  

  

  

  

  

  
}

@media(max-width:768px) {
  .dev-hero h1 {
    font-size: 3.15rem
  }
.art-hero-card {
     display: block !important;
   
}.hero-art {
    margin-top: 7px;
}.services-section {
    padding-bottom: 20px !important;
}a.dev-btn.secondary {
    margin-bottom: 20px;
}
  .trust-strip,
  .service-grid,
  .pricing-grid,
  .art-metrics {
    grid-template-columns: 1fr
  }

  .dev-section {
    padding: 12px 0;
  }

  .dev-btn {
    width: 100%
  }

  .art-hero-card {
    align-items: flex-start
  }

  .art-logo {
    width: 68px;
    height: 68px;
    flex-basis: 68px;
    border-radius: 19px
  }

  .process-list>div {
    grid-template-columns: 1fr
  }

  .process-list span {
    grid-row: auto
  }

  .final-cta {
    padding: 28px
  }

  .footer-wrap {
    padding-top: 64px !important
  }
}


/* ---- refinement pass ---- */
.dev-hero {
  padding: 118px 0
}

.dev-hero h1 {
  font-size: clamp(2.8rem, 5vw, 5.35rem);
  line-height: .97;
  max-width: 700px;
  letter-spacing: -0.01em
}

.hero-copy {
  max-width: 620px;
  font-size: 1rem;
  line-height: 1.78
}

.hero-actions {
  margin: 26px 0 22px
}

.dev-btn {
  min-height: 52px;
  padding: 14px 24px;
  font-size: .96rem;
  white-space: nowrap
}

.dev-btn.secondary {
  background: rgba(10, 18, 34, .82)
}

.trust-strip {
  max-width: 560px
}

.hero-art {
  max-width: 560px
}

.art-hero-card h3 {
  font-size: 1.5rem
}

.section-title h2,
.side-title {
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  line-height: 1.35;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto
}

.pricing-grid {
  align-items: stretch;
  grid-template-rows: auto;
}

.price-card {
  padding: 28px 22px
}

.price-card ul {
  margin-bottom: 22px !important
}

.order-link {
  white-space: nowrap;
  min-height: 56px;
  padding: 14px 18px;
  font-size: .94rem;
  letter-spacing: 0;
  line-height: 1.35;
  border-radius: 16px
}

.order-link:after {
  margin-left: 8px;
  font-size: 1rem
}

.final-cta {
  padding: 38px 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center
}

.final-cta>div {
  max-width: 820px
}

.final-cta h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.8rem);
  line-height: 1.35;
  max-width: 760px;
  letter-spacing: -0.01em
}

.final-cta .dev-btn {
  align-self: center
}

/* === Premium + conversion final polish === */
.dev-hero {
  padding: 100px 0 !important;
  background:
    radial-gradient(circle at 78% 18%, rgba(47, 134, 255, .25), transparent 30rem),
    radial-gradient(circle at 15% 72%, rgba(34, 208, 126, .11), transparent 26rem),
    linear-gradient(180deg, #050b16 0%, #030712 100%) ;
}
 .container-custom > .row {
   margin-top:0px;
 }
 .container-custom > .row > div{
     margin-top:0px;
 }
body.light-mode .dev-hero{
  background-color: #f4f8fc !important;
}

.dev-hero h1 {
  font-size: clamp(2.85rem, 4.2vw, 5rem) !important;
  line-height: 1.06 !important;
  letter-spacing: -0.01em !important;
  max-width: 690px !important;
}

.hero-copy {
  max-width: 640px !important;
  font-size: 1rem !important;
}

.hero-art {
  max-width: 545px !important;
  transform: translateY(6px);
}

.dev-btn,
.order-link {
  white-space: nowrap !important;
}

.dev-btn {
  border-radius: 13px !important;
}

.dev-btn.primary,
.order-link {
  background: linear-gradient(135deg, #1f7ae8, #3b8cff) !important;
}

.trust-strip div {
  min-height: 94px;
}

.services-section {
  padding-bottom: 82px !important;
  padding-top: 82px !important;
}

.proof-section {
  padding: 82px 0 !important;
  background: #030712;
}

.proof-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(15, 23, 42, .88), rgba(7, 13, 25, .96));
  border: 1px solid rgba(47, 134, 255, .22);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .24);
}

.proof-bar div {
  padding: 22px;
  border-radius: 20px;
  background: rgba(2, 7, 18, .35);
  border: 1px solid rgba(148, 163, 184, .12);
}

.proof-bar strong {
  display: block;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.proof-bar span {
  display: block;
  color: #cbd5e1;
  font-size: .92rem;
  line-height: 1.65;
}

.pricing-grid {
  gap: 18px !important;
}

.price-card {
  min-width: 0;
  padding: 26px 20px !important;
}

.price-card h3 {
  font-size: 1.06rem !important;
}

.price-card li {
  font-size: .87rem !important;
}

.order-link {
  min-height: 52px !important;
  padding: 13px 14px !important;
  font-size: .86rem !important;
  border-radius: 14px !important;
}

.final-cta-section {
  padding: 74px 0 !important;
}

.final-cta {
  padding: 36px 38px !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 28px !important;
  align-items: center !important;
}

.final-cta h2 {
  font-size: clamp(1.85rem, 2.8vw, 3rem) !important;
  max-width: 760px !important;
  line-height: 1.35 !important;
}

.final-cta p {
  max-width: 760px;
}

.final-cta-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: nowrap;
}

.final-cta-actions .dev-btn {
  min-height: 52px;
  padding: 14px 18px;
}

.footer-wrap {
  padding-top: 62px !important;
  overflow: hidden;
}

.footer_links ul,
.footer_links li {
  list-style: none !important;
}

.footer_links li::marker {
  content: "" !important;
}

.footer_links a {
  text-decoration: none !important;
}

body.light-mode .proof-section {
  background: #eef4fa;
}

body.light-mode .proof-bar {
  background: #fff;
  border-color: rgba(15, 23, 42, .08);
  box-shadow: 0 20px 55px rgba(15, 23, 42, .07);
}

body.light-mode .proof-bar div {
  background: #f8fafc;
  border-color: rgba(15, 23, 42, .08);
}

body.light-mode .proof-bar strong {
  color: #0f172a;
}

body.light-mode .proof-bar span {
  color: #475569;
}

@media (max-width: 1199px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .order-link {
    font-size: .91rem !important;
  }
}

@media (max-width: 991px) {
  .dev-hero {
    padding: 96px 0 !important;
  }

  .final-cta {
    grid-template-columns: 1fr !important;
  }

  .proof-bar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .dev-hero h1 {
    font-size: clamp(2.35rem, 10vw, 3.4rem) !important;
  }

  .final-cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .final-cta-actions .dev-btn {
    width: 100%;
  }

  .order-link {
    white-space: normal !important;
  }

  .pricing-grid {
    grid-template-columns: repeat(1, 1fr) !important;
    overflow: hidden;
  }

  .price-card,
  .price-card.featured {
    width: 100% !important;
    max-width: 100% !important;
    transform: none !important;
    box-sizing: border-box !important;
  }

  .price-card.featured {
    box-shadow: 0 0 0 2px var(--brand-blue, #2f86ff), 0 20px 40px rgba(47,134,255,.2) !important;
  }
}


.footer_about p{
max-width: 100% !important;
}


/* footer legal links update */
.footer_links .col-md-4 ul {
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

.footer_links .col-md-4 li {
  list-style: none !important;
  margin: 0 0 10px 0 !important;
  padding: 0 !important;
}

.footer_links .col-md-4 li::before,
.footer_links .col-md-4 li::marker {
  content: "" !important;
  display: none !important;
}

.footer_links .col-md-4 a {
  text-decoration: none !important;
  border-bottom: 0 !important;
}

.footer_links h4 {
  margin-bottom: 18px !important;
}

@media (min-width: 768px) {
  .footer_links .col-md-4 li {
    margin-bottom: 9px !important;
  }
}

/* integrated legal footer polish */
.footer_links ul,
.footer_links ol {
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

.footer_links li {
  list-style: none !important;
  margin: 0 0 9px 0 !important;
  padding-left: 0 !important;
}

.footer_links li::before,
.footer_links li::marker {
  content: "" !important;
  display: none !important;
}

.footer_links a {
  text-decoration: none !important;
  border-bottom: 0 !important;
}

.footer_links h4 {
  margin-bottom: 18px !important;
}



.light-mode .dev-hero h1 {
  color: var(--dev-bg) !important;
}

.dev-eyebrow {
  margin-top: 0 !important;
}
 
 
 
 @media only screen and (min-width:991px) and (max-width: 1047px){
     .dev-hero{
         padding-top: 145px !important;
     }
 }

/* ── FIX 1: Medium-screen hero heading — prevents oversized text 992px–1199px ── */
@media (min-width: 992px) and (max-width: 1199px) {
  .dev-hero h1 {
    font-size: clamp(2.4rem, 3.8vw, 3.6rem) !important;
    line-height: 1.15 !important;
    max-width: 620px !important;
  }
}

/* ── FIX 2: Service card mobile — prevents crop on small screens (<600px) ── */
@media (max-width: 599px) {
  .service-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .service-card {
    padding: 22px 18px !important;
    overflow: visible !important;
    min-height: auto !important;
  }

  .service-card > i {
    width: 48px !important;
    height: 48px !important;
    font-size: 1.3rem !important;
    margin-bottom: 12px !important;
  }

  .service-card h3 {
    font-size: 1rem !important;
    margin-bottom: 8px !important;
  }

  .service-card p {
    font-size: 0.88rem !important;
    line-height: 1.6 !important;
  }
}

/* ── MOBILE FIXES ─────────────────────────────────────────── */
@media (max-width: 768px) {

  /* Reduce section spacing on mobile */
  .dev-section { padding: 40px 0 !important; }
  .final-cta-section { padding: 40px 0 !important; }
  .services-section,
  .proof-section,
  .portfolio-section,
  .plans-section,
  .process-section,
  .skills-section { padding: 40px 0 !important; }

  /* art-metrics — center icons and text on mobile */
  .art-metrics { grid-template-columns: 1fr !important; }
  .art-metrics div {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    min-height: auto !important;
    padding: 16px !important;
  }
  .art-metrics i { font-size: 1.8rem !important; margin-bottom: 10px !important; }
  .art-metrics strong { font-size: .9rem; }
  .art-metrics span  { font-size: .78rem; }

  /* art-stack — center icons on mobile */
  .art-stack div {
    justify-content: flex-start;
    gap: 10px;
  }

  /* Remove top margin on eyebrow badges */
  .dev-eyebrow { margin-top: 0 !important; }

  /* Final CTA card padding on mobile */
  .final-cta {
    padding: 24px 20px !important;
    gap: 20px !important;
  }
  .final-cta h2 { font-size: clamp(1.4rem, 6vw, 2rem) !important; }
}

@media (max-width: 480px) {
  /* Tighter spacing on very small screens */
  .dev-section { padding: 28px 0 !important; }
  .final-cta-section { padding: 28px 0 !important; }
  .services-section,
  .proof-section,
  .portfolio-section,
  .plans-section,
  .process-section,
  .skills-section { padding: 28px 0 !important; }

  .section-title { margin-bottom: 24px !important; }
  .section-title h2 { font-size: clamp(1.6rem, 7vw, 2.2rem) !important; }
}

/* ── ART HERO CARD MOBILE FIX ───────────────────────────── */
@media (max-width: 768px) {
  .art-hero-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
    padding: 20px !important;
  }

  .art-logo {
    width: 60px !important;
    height: 60px !important;
    font-size: 1.3rem !important;
    border-radius: 16px !important;
    flex-shrink: 0 !important;
    margin-top: 4px !important;
  }

  .art-hero-card small { font-size: .65rem !important; margin-bottom: 6px !important; }
  .art-hero-card h3    { font-size: 1.2rem !important; margin-bottom: 6px !important; }
  .art-hero-card p     { font-size: .85rem !important; line-height: 1.5 !important; }
}
