/* ===========================================================
   Stepova Solutions — main stylesheet
   =========================================================== */

:root {
  --navy: #032455;
  --navy-dark: #0b2144;
  --blue: #1c5fa8;
  --teal: #159c8f;
  --purple: #5b3a8e;
  --orange: #ff600a;
  --gold: #c8960c;
  --ink: #22303f;
  --muted: #6b7785;
  --bg-soft: #f4f6f8;
  --border: #e3e8ee;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(18, 48, 92, 0.08);
  --shadow-lg: 0 20px 45px rgba(18, 48, 92, 0.14);
  font-size: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

#services, #why-us, #process, #faq, #disclaimer, #contact { scroll-margin-top: 96px; }

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

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

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  background: transparent;
  transition: padding .3s ease, background .3s ease;
}
.site-header.scrolled {
  padding: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 16px rgba(18,48,92,.08);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 64px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(11, 33, 68, 0.18);
  padding: 10px 26px;
  transition: border-radius .3s ease, box-shadow .3s ease, padding .3s ease;
}
.site-header.scrolled .header-inner {
  border-radius: 0;
  box-shadow: none;
  padding: 14px 24px;
}

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark { display: inline-flex; }
.logo-text {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: .5px;
  color: var(--navy);
}
.logo-img img{ width: 150px; height: 50px;  }
.logo-text span { display: block; font-weight: 600; font-size: .6rem; letter-spacing: 3px; color: var(--orange); }
.logo-text.light { color: #fff; }
.logo-text.light span { color: var(--orange); }

.main-nav { display: flex; align-items: center; justify-content: center; gap: 28px; flex: 1; }
.main-nav a {
  font-weight: 600;
  font-size: .92rem;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--orange);
  transition: right .2s ease;
}
.main-nav a:hover::after { right: 0; }
.main-nav a.has-caret { display: inline-flex; align-items: center; gap: 5px; }
.main-nav a.has-caret svg { opacity: .6; }

.header-cta .btn-call {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .2s ease, transform .2s ease;
}
.header-cta .btn-call:hover { background: var(--navy); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px; height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-toggle span { display: block; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
 
  overflow: hidden;
  color: #fff;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(11,33,68,.88) 0%, rgba(11,33,68,.72) 38%, rgba(11,33,68,.35) 65%, rgba(11,33,68,.15) 100%);
}
.hero-content { position: relative; z-index: 1; padding-top:130px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .82rem;
  font-weight: 700;
  color: #cfe0f7;
  margin: 0 0 14px;
}
.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08;
  margin: 0 0 18px;
}
.hero-tagline {
  font-weight: 700;
  letter-spacing: 2px;
  font-size: .95rem;
  margin: 0 0 14px;
  color: #fff;
}
.hero-desc { font-size: 1.02rem; color: #e4ecf7; max-width: 560px; margin: 0 0 30px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 6px;
  font-weight: 700;
  font-size: .92rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: #e2740f; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(245,130,31,.35); }
.btn-outline { border: 2px solid #fff; color: #fff; padding: 11px 24px; }
.btn-outline:hover { background: #fff; color: var(--navy); transform: translateY(-2px); }

/* ---------- Section titles ---------- */
.section-title {
  font-weight: 800;
  letter-spacing: .5px;
  color: var(--navy);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  margin: 0 0 34px;
  text-transform: uppercase;
  line-height: 28px;
}
.section-title.small { font-size: 1.15rem; margin-bottom: 22px; }

/* ---------- Services ---------- */
.services { padding: 80px  0 50px 00; background: var(--bg-soft); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.services-grid .service-card:nth-child(4),
.services-grid .service-card:nth-child(5) {
  grid-column: span 1;
}
@media (min-width: 900px) {
  .services-grid { grid-template-columns: repeat(6, 1fr); }
  .services-grid .service-card:nth-child(1),
  .services-grid .service-card:nth-child(2),
  .services-grid .service-card:nth-child(3) { grid-column: span 2; }
  .services-grid .service-card:nth-child(4),
  .services-grid .service-card:nth-child(5) { grid-column: span 3; }
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
  padding-bottom: 26px;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.service-media { position: relative; height: 170px; }
.service-media img { width: 100%; height: 100%; object-fit: cover; }
.service-icon {
  position: absolute;
  left: 20px; bottom: -22px;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 6px 14px rgba(0,0,0,.2);
  border: 3px solid #fff;
}
.icon-blue { background: var(--blue); }
.icon-teal { background: var(--teal); }
.icon-purple { background: var(--purple); }
.icon-navy { background: var(--navy-dark); }
.icon-orange { background: var(--orange); }

.card-title {
  margin: 40px 24px 14px;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .3px;
}
.text-blue { color: var(--blue); }
.text-teal { color: var(--teal); }
.text-purple { color: var(--purple); }
.text-navy { color: var(--navy-dark); }
.text-orange { color: var(--orange); }

.card-list { list-style: none; margin: 0; padding: 0 24px; }
.card-list li {
  position: relative;
  padding: 6px 0 6px 26px;
  font-size: .92rem;
  color: var(--ink);
}
.card-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--teal);
}
.card-list li::after {
  content: "";
  position: absolute;
  left: 5px; top: 12.5px;
  width: 6px; height: 3px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

/* ---------- Why Us ---------- */
.why-us {
  padding: 80px  0 50px 00;
  background-image: linear-gradient(rgba(244, 246, 248, 0.99), rgba(244, 246, 248, 0.73)),
    url("https://images.unsplash.com/photo-1494412651409-8963ce7935a7?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr .8fr 1.4fr;
  gap: 40px;
  align-items: start;
}

.check-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.chip {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  border-radius: 6px;
  color: #fff;
  font-weight: 700;
  font-size: .92rem;
  transition: transform .2s ease;
}
.chip:hover { transform: translateX(4px); }
.chip svg { flex-shrink: 0; }
.chip-blue { background: var(--blue); }
.chip-teal { background: var(--teal); }
.chip-purple { background: var(--purple); }
.chip-navy { background: var(--navy-dark); }
.chip-orange { background: var(--orange); }

.why-mission {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  gap: 14px;
  padding-top: 20px;
}
.wheel { animation: spin 18s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.why-mission p { font-weight: 700; color: var(--navy); font-size: 1rem; line-height: 1.5; margin: 0; text-transform: uppercase; letter-spacing: .5px; }
.why-mission p strong { color: var(--orange); }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.process-step {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 16px;
  border-radius: 6px;
  font-weight: 700;
  font-size: .88rem;
}
.process-step.filled { color: #fff; }
.step-blue { background: var(--blue); }
.step-teal { background: var(--teal); }
.step-purple { background: var(--purple); }
.process-step.outline { border: 2px solid; background: #fff; }
.step-blue-o { border-color: var(--blue); color: var(--blue); }
.step-orange-o { border-color: var(--orange); color: var(--orange); }
.process-step:nth-child(4) { grid-column: span 1; }
@media (min-width: 560px) {
  .process-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Trust badges ---------- */
.trust-badges { background: var(--bg-soft); padding: 50px 0; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.trust-item {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 16px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  transition: border-color .2s ease, transform .2s ease;
}
.trust-item:hover { border-color: var(--blue); transform: translateY(-4px); }
.trust-item p { margin: 0; font-size: .85rem; font-weight: 700; color: var(--navy); }

/* ---------- Disclaimer ---------- */
.disclaimer-section { padding: 80px 0; background: var(--bg-soft); }

.disclaimer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}
.disclaimer-card.full { grid-column: 1 / -1; }

.disclaimer-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 30px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.disclaimer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.disclaimer-card h3 { margin: 0 0 12px; font-size: 1.05rem; font-weight: 800; text-transform: uppercase; letter-spacing: .3px; }
.disclaimer-card p { margin: 0 0 10px; font-size: .92rem; color: var(--ink); line-height: 1.65; }
.disclaimer-card p:last-child { margin-bottom: 0; }

.d-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  color: #fff;
  margin-bottom: 16px;
  box-shadow: 0 6px 14px rgba(0,0,0,.15);
}
.icon-gold { background: var(--gold); }
.icon-white { background: rgba(255,255,255,.15); flex-shrink: 0; }
.text-gold { color: var(--gold); }

.compliance-banner {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--navy-dark);
  color: #dbe4f0;
  border-radius: var(--radius);
  padding: 28px 30px;
  margin-bottom: 40px;
}
.compliance-banner h3 { margin: 0 0 8px; color: #fff; font-size: 1.05rem; font-weight: 800; text-transform: uppercase; letter-spacing: .3px; }
.compliance-banner p { margin: 0; font-size: .92rem; line-height: 1.65; }

.disclaimer-badges { margin-bottom: 34px; }

.disclaimer-contact { text-align: center; color: var(--muted); font-size: .9rem; margin: 0; }
.disclaimer-contact a { color: var(--blue); font-weight: 700; }
.disclaimer-contact a:hover { text-decoration: underline; }

@media (max-width: 700px) {
  .disclaimer-grid { grid-template-columns: 1fr; }
  .compliance-banner { flex-direction: column; }
}

/* ---------- FAQ ---------- */
.faq { padding: 80px  0 50px 00; background: #fff; }
.section-title.center { text-align: center; }
.faq-sub {
  text-align: center;
  color: var(--muted);
  max-width: 560px;
  margin: -18px auto 40px;
  font-size: .95rem;
}
.faq-sub a { color: var(--blue); font-weight: 700; }
.faq-sub a:hover { text-decoration: underline; }

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item:hover { border-color: var(--blue); }
.faq-item.open { border-color: var(--blue); box-shadow: var(--shadow); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
  border: none;
  cursor: pointer;
  padding: 18px 22px;
  text-align: left;
  font-weight: 700;
  font-size: .98rem;
  color: var(--navy);
}
.faq-icon { flex-shrink: 0; color: var(--orange); transition: transform .25s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-answer p { margin: 0; padding: 0 22px 20px; color: var(--ink); font-size: .92rem; }
.faq-item.open .faq-answer { max-height: 240px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-dark); color: #dbe4f0; padding-top: 50px; position: relative; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand { display: flex; flex-direction: column; gap: 22px; }
.footer-nav { display: flex; gap: 20px; }
.footer-nav a { font-size: .9rem; color: #b7c4d6; font-weight: 600; }
.footer-nav a:hover { color: #fff; }

.footer-contact h3 { text-transform: uppercase; letter-spacing: 1.5px; font-size: 1.1rem; color: #fff; margin: 0 0 22px; text-align: center; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer-item { display: flex; gap: 12px; align-items: flex-start; font-size: .88rem; }
.footer-item svg { flex-shrink: 0; margin-top: 3px; color: var(--orange); }
.footer-item strong { display: block; color: #fff; font-size: .9rem; margin-bottom: 2px; }
.footer-item a { color: #b7c4d6; }
.footer-item a:hover { color: var(--orange); }

.scroll-top {
  position: absolute;
  right: 24px;
  top: -22px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
  transition: transform .2s ease, background .2s ease;
}
.scroll-top:hover { background: var(--navy); transform: translateY(-3px); }

.footer-bottom { text-align: center; padding: 20px 0; font-size: .82rem; color: #8fa0b8; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-mission { order: -1; flex-direction: row; justify-content: center; gap: 20px; }
  .why-mission p { text-align: left; }
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .main-nav.open {
    display: flex;
    position: absolute;
    top: calc(100% + 10px); left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px 24px;
    gap: 16px;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
  }
  .services-grid { grid-template-columns: 1fr !important; }
  .services-grid .service-card { grid-column: span 1 !important; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-contact h3 { text-align: left; }
}

@media (max-width: 640px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 90vh; }
}

@media (max-width: 860px) {
  .why-us { background-attachment: scroll; }
}
