.dev-body{background:var(--cream);}

.dev-hero{
  position:relative;overflow:hidden;padding:32px 20px 40px;text-align:center;color:#fff;
  min-height:480px;display:flex;align-items:center;justify-content:center;
}
.dev-hero-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:70% 12%;z-index:0;}
.dev-hero::before{
  content:"";position:absolute;inset:0;z-index:1;
  background:linear-gradient(180deg, rgba(15,36,56,0.55) 0%, rgba(15,36,56,0.82) 60%, var(--navy) 100%);
}
.dev-hero-inner{position:relative;z-index:2;}
.dev-hero-logo img{height:40px;margin-bottom:20px;}

.dev-hero-eyebrow{
  display:inline-block;background:rgba(217,165,82,0.18);color:var(--gold);
  font-size:0.75rem;font-weight:700;letter-spacing:0.04em;text-transform:uppercase;
  padding:6px 16px;border-radius:100px;margin-bottom:16px;
}
.dev-hero h1{font-size:1.7rem;line-height:1.25;font-weight:800;margin-bottom:14px;}
.dev-hero-sub{font-size:0.92rem;line-height:1.6;color:rgba(255,255,255,0.82);max-width:520px;margin:0 auto 24px;}

.dev-main{max-width:760px;margin:0 auto;padding:0 18px;}

.dev-section{padding:40px 0;}
.dev-section h2{font-size:1.4rem;color:var(--navy);text-align:center;margin-bottom:10px;}
.dev-section-sub{font-size:0.9rem;color:var(--navy-soft);text-align:center;line-height:1.6;max-width:520px;margin:0 auto 24px;}

.dev-grid{display:grid;grid-template-columns:1fr;gap:14px;}
.dev-card{
  background:#fff;border:1px solid var(--border);border-radius:16px;padding:20px;text-align:center;
}
.dev-card-icon{font-size:1.8rem;display:block;margin-bottom:10px;}
.dev-card strong{display:block;font-size:1rem;color:var(--navy);margin-bottom:6px;}
.dev-card small{font-size:0.85rem;color:var(--navy-soft);line-height:1.5;}

.dev-section-dark{
  background:var(--navy);margin:0 -18px;padding:40px 18px;border-radius:0;
}
.dev-section-dark h2{color:#fff;}
.dev-section-sub-light{color:rgba(255,255,255,0.72);}

.dev-iceberg{max-width:520px;margin:0 auto 24px;}
.dev-iceberg-visible{
  background:rgba(255,255,255,0.08);border:1.5px solid rgba(255,255,255,0.15);
  border-radius:14px 14px 0 0;padding:18px 20px;
}
.dev-iceberg-visible p{color:rgba(255,255,255,0.85);font-size:0.88rem;margin-top:6px;}
.dev-iceberg-hidden{
  background:rgba(217,165,82,0.1);border:1.5px solid rgba(217,165,82,0.3);border-top:none;
  border-radius:0 0 14px 14px;padding:18px 20px;
}
.dev-iceberg-label{font-size:0.78rem;font-weight:700;text-transform:uppercase;letter-spacing:0.03em;color:var(--gold);}
.dev-iceberg-hidden ul{margin-top:10px;padding-left:18px;}
.dev-iceberg-hidden li{color:rgba(255,255,255,0.85);font-size:0.86rem;line-height:1.7;}

.dev-cta-section{text-align:center;}
.dev-cta-btn{display:inline-block;}

.dev-footer{text-align:center;padding:24px 20px;font-size:0.78rem;color:var(--navy-soft);}
.dev-footer a{color:var(--teal-dark);}

@media (min-width:640px){
  .dev-grid{grid-template-columns:1fr 1fr;}
  .dev-hero h1{font-size:2.1rem;}
}

@media (min-width:900px){
  .dev-hero{padding:64px 20px 72px;}
  .dev-hero h1{font-size:2.6rem;}
  .dev-hero-sub{font-size:1.02rem;}
  .dev-section{padding:56px 0;}
  .dev-section-dark{margin:0;border-radius:24px;}
  .dev-main{padding:0 24px;}
}

.dev-example-section{text-align:center;}
.dev-example-card{
  background:#fff;border:2px solid var(--gold);border-radius:18px;padding:28px 24px;
  max-width:460px;margin:0 auto;text-align:left;
}
.dev-example-price{
  font-size:2rem;font-weight:800;color:var(--navy);text-align:center;margin-bottom:6px;
}
.dev-example-caption{
  font-size:0.85rem;color:var(--navy-soft);text-align:center;line-height:1.5;
  margin-bottom:18px;padding-bottom:18px;border-bottom:1px solid var(--border);
}
.dev-example-list{list-style:none;padding:0;display:flex;flex-direction:column;gap:9px;}
.dev-example-list li{
  font-size:0.87rem;color:var(--navy);padding-left:24px;position:relative;line-height:1.4;
}
.dev-example-list li::before{
  content:"✓";position:absolute;left:0;color:var(--teal);font-weight:800;
}
