:root{
  --sky:#43bff5;
  --sky-dark:#1497cc;
  --navy:#102033;
  --ink:#1c2430;
  --muted:#4f5f72;
  --light:#f5fbff;
  --white:#fff;
  --black:#050505;
  --border:#d9e8f2;
}

*{box-sizing:border-box}

html{
  scroll-behavior:smooth;
  scroll-padding-top:118px;
}

body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--ink);
  background:#fff;
  line-height:1.6;
}

a{color:inherit}

/* Accessibility helpers */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible{
  outline:3px solid var(--sky-dark);
  outline-offset:2px;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}

.skip-link:focus{
  position:static;
  width:auto;
  height:auto;
  padding:10px 14px;
  background:var(--sky-dark);
  color:#fff;
  z-index:999;
  font-weight:700;
}

.top-bar{
  background:var(--navy);
  color:#fff;
  font-size:.92rem;
  padding:8px 20px;
  text-align:center;
}

/* Header / navigation */
header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}

.nav-wrap{
  max-width:1360px;
  margin:0 auto;
  padding:8px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.brand{
  display:flex;
  flex:0 1 auto;
  min-width:0;
  align-items:center;
  gap:12px;
  text-decoration:none;
}

.brand img{
  height:62px;
  width:auto;
  display:block;
}

.brand-text{
  font-weight:900;
  color:var(--navy);
  line-height:1.08;
  letter-spacing:.02em;
  font-size:1.02rem;
}

.brand-text span{
  display:block;
  color:var(--sky-dark);
  font-size:.74rem;
  font-weight:700;
  margin-top:3px;
}

nav{
  display:flex;
  gap:12px;
  flex-wrap:nowrap;
  justify-content:flex-end;
  align-items:center;
  font-weight:700;
  font-size:.90rem;
  white-space:nowrap;
  flex:0 0 auto;
}

nav a{
  text-decoration:none;
  color:var(--navy);
  padding:8px 4px;
}

nav a:hover{
  color:var(--sky-dark);
}

/* Buttons */
.btn{
  display:inline-block;
  background:var(--sky);
  color:var(--navy);
  padding:12px 18px;
  border-radius:999px;
  font-weight:800;
  text-decoration:none;
  border:2px solid var(--sky);
  box-shadow:0 8px 18px rgba(67,191,245,.25);
  transition:.2s ease;
  cursor:pointer;
}

.btn:hover{
  background:var(--sky-dark);
  border-color:var(--sky-dark);
  color:#fff;
  transform:translateY(-1px);
}

.btn.secondary{
  background:#fff;
  color:var(--navy);
  border-color:var(--navy);
  box-shadow:none;
}

.btn.secondary:hover{
  background:var(--navy);
  color:#fff;
}

/* Hero */
.hero{
  background:linear-gradient(120deg,rgba(16,32,51,.92),rgba(20,151,204,.78)),url("images/phoenix-hero-bg.jpg");
  background-size:cover;
  background-position:center;
  color:#fff;
  padding:55px 20px 45px;
}

.hero.light{
  background:linear-gradient(120deg,rgba(245,251,255,.97),rgba(228,246,255,.95));
  color:var(--navy);
}

.hero.light h1{
  color:var(--navy);
}

.hero.light p{
  color:var(--muted);
}

.hero-inner{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:38px;
  align-items:center;
}

.hero h1{
  margin:0 0 18px;
  font-size:clamp(2.2rem,5vw,4.4rem);
  line-height:1.05;
  letter-spacing:-.04em;
}

.hero p{
  font-size:1.22rem;
  max-width:720px;
  margin:0 0 24px;
  color:#eef9ff;
}

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

/* Badge panel */
.badge-panel{
  background:rgba(255,255,255,.96);
  border:1px solid rgba(255,255,255,.9);
  border-radius:28px;
  padding:28px;
  color:var(--navy);
  box-shadow:0 24px 60px rgba(0,0,0,.26);
}

.badge-panel h3{
  margin:0 0 18px;
  font-size:1.45rem;
  line-height:1.2;
}

.badges{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
  align-items:stretch;
}

.badge-card{
  background:linear-gradient(180deg,#ffffff,#f3fbff);
  border:1px solid var(--border);
  border-radius:22px;
  padding:20px;
  text-align:center;
  min-height:170px;
  display:grid;
  place-items:center;
  font-weight:900;
  box-shadow:0 10px 22px rgba(16,32,51,.08);
  transition:.2s ease;
}

.badge-card:hover{
  transform:translateY(-3px);
  box-shadow:0 16px 30px rgba(16,32,51,.16);
}

.badge-card img{
  max-width:100%;
  max-height:128px;
  object-fit:contain;
  margin:auto;
}

.badge-card.badge-image{
  padding:12px;
}

.badge-card.badge-image img{
  max-height:160px;
  width:100%;
}

/* Main sections */
section{
  padding:90px 20px 70px;
}

.wrap{
  max-width:1180px;
  margin:0 auto;
}

.section-title{
  text-align:center;
  max-width:850px;
  margin:0 auto 34px;
}

.section-title h2{
  margin:0 0 12px;
  font-size:clamp(1.8rem,3vw,2.7rem);
  line-height:1.12;
  color:var(--navy);
  letter-spacing:-.03em;
}

.section-title p{
  margin:0 auto;
  max-width:760px;
  color:var(--muted);
  font-size:1.08rem;
}

.light{
  background:linear-gradient(180deg,#f5fbff,#eef8ff);
}

/* Layout grids */
.grid-2{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}

/* Cards */
.card,
.price-card,
.form-card,
.contact-info{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:28px;
  box-shadow:0 18px 45px rgba(16,32,51,.08);
}

.card h3,
.price-card h3{
  margin-top:0;
  color:var(--navy);
  font-size:1.35rem;
}

.card p{
  color:var(--muted);
}

/* Feature lists */
.feature-list{
  padding-left:0;
  margin:16px 0 0;
  list-style:none;
}

.feature-list li{
  position:relative;
  margin:10px 0;
  padding-left:28px;
  color:#2f4052;
  border-bottom:1px solid #edf4f8;
}

.feature-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--sky-dark);
  font-weight:900;
}

/* Pricing */
.pricing{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
  align-items:stretch;
}

.price-card{
  position:relative;
}

.price-card.featured{
  border:2px solid var(--sky);
  transform:translateY(-8px);
}

.tag{
  display:inline-block;
  border-radius:999px;
  background:#e8f7ff;
  color:var(--navy);
  padding:6px 12px;
  font-weight:800;
  font-size:.85rem;
  margin-bottom:14px;
}

.price{
  font-size:2rem;
  font-weight:900;
  color:var(--navy);
  margin:10px 0;
}

.price small{
  font-size:.95rem;
  color:var(--muted);
  font-weight:700;
}

/* Process */
.process{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:22px;
  counter-reset:step;
}

ol.process{
  padding-left:0;
  list-style:none;
}

.step{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:26px;
  box-shadow:0 18px 45px rgba(16,32,51,.08);
  position:relative;
}

.step::before{
  counter-increment:step;
  content:counter(step);
  width:40px;
  height:40px;
  border-radius:50%;
  background:var(--sky);
  color:var(--navy);
  display:grid;
  place-items:center;
  font-weight:900;
  margin-bottom:14px;
}

.step h3{
  color:var(--navy);
  margin-top:0;
}

/* CTA */
.cta{
  background:linear-gradient(135deg,var(--navy),var(--sky-dark));
  color:#fff;
  border-radius:30px;
  padding:42px;
  text-align:center;
  box-shadow:0 24px 60px rgba(16,32,51,.22);
}

.cta h2{
  margin:0 0 12px;
  font-size:clamp(2rem,4vw,3rem);
}

.cta p{
  color:#eef9ff;
  max-width:820px;
  margin:0 auto 22px;
  font-size:1.1rem;
}

/* Contact */
.contact-box{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:24px;
  align-items:start;
}

.contact-info{
  background:var(--navy);
  color:#fff;
}

.contact-info h3{
  margin-top:0;
  font-size:1.6rem;
}

.contact-info a{
  color:#fff;
  text-decoration:none;
  font-weight:800;
}

.contact-info p{
  margin:12px 0;
}

label,
.form-card label{
  display:block;
  font-weight:800;
  color:var(--navy);
  margin:12px 0 6px;
}

input,
textarea,
.form-card input,
.form-card textarea{
  width:100%;
  border:1px solid var(--border);
  border-radius:14px;
  padding:13px 14px;
  font:inherit;
}

textarea,
.form-card textarea{
  min-height:150px;
}

/* Crest / executive page */
.crest-card{
  display:flex;
  align-items:center;
  gap:20px;
  background:linear-gradient(180deg,#fff,#f7fbff);
}

.crest-card img{
  width:145px;
  max-width:36%;
  border-radius:18px;
  border:1px solid var(--border);
}

/* Footer */
footer{
  background:#07111f;
  color:#fff;
  text-align:center;
  padding:54px 20px;
}

.footer-logo{
  height:84px;
  width:auto;
  margin:0 auto 14px;
  display:block;
}

footer p{
  margin:8px 0;
  color:#ddd;
}

.footer-links{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
  margin:18px 0;
}

.footer-links a{
  color:#fff;
  text-decoration:none;
  font-weight:800;
}

.accessibility-note{
  font-size:.9rem;
  color:#cfefff;
  margin-top:18px;
}

.copyright{
  border-top:1px solid rgba(255,255,255,.14);
  margin-top:24px;
  padding-top:18px;
  color:#b7c7d9;
  font-size:.9rem;
}


/* One-page anchor alignment is controlled by html scroll-padding-top. */
/* Compact process section so About begins as a clearly separate section */
#process{
  padding-top:38px;
  padding-bottom:32px;
}

#process .section-title{
  margin-bottom:18px;
}

#process .step{
  padding:16px 18px;
}

#process .step::before{
  width:34px;
  height:34px;
  margin-bottom:8px;
}

#process .step h3{
  margin:0 0 8px;
}

#process .step p{
  margin:0;
}

#about{
  background:#fff;
  padding-top:62px;
}

.form-card h3{
  margin-top:0;
}

.form-note{
  font-size:.9rem;
  color:var(--muted);
}

/* Responsive adjustments */
@media(max-width:1180px){
  .nav-wrap{
    align-items:flex-start;
    flex-direction:column;
  }

  nav{
    justify-content:flex-start;
    flex-wrap:wrap;
    white-space:normal;
  }

  html{
    scroll-padding-top:168px;
  }

}

@media(max-width:1050px){
  .hero-inner,
  .grid-2,
  .contact-box{
    grid-template-columns:1fr;
  }

  .grid-3,
  .pricing,
  .process{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .price-card.featured{
    transform:none;
  }
}

@media(max-width:650px){
  html{
    scroll-padding-top:210px;
  }


  .brand img{
    height:58px;
    width:auto;
  }

  .brand-text{
    font-size:.92rem;
  }

  .brand-text span{
    font-size:.68rem;
  }

  nav{
    gap:8px 10px;
    font-size:.88rem;
  }

  nav a{
    padding:6px 2px;
  }

  nav .btn{
    padding:9px 14px;
  }

  .badges,
  .grid-3,
  .pricing,
  .process{
    grid-template-columns:1fr;
  }

  .hero{
    padding:48px 20px 38px;
  }

  section{
    padding:70px 20px 54px;
  }

  #process{
    padding-top:36px;
    padding-bottom:30px;
  }

  .crest-card{
    flex-direction:column;
    align-items:flex-start;
  }

  .crest-card img{
    max-width:220px;
    width:100%;
  }
}
