:root {
  --navy: #082c5c;
  --navy-2: #0d3d7a;
  --green: #63b934;
  --green-dark: #3f8f1d;
  --sky: #13a8e3;
  --gold: #f4b51f;
  --ink: #172033;
  --muted: #64748b;
  --surface: #ffffff;
  --soft: #f4f8fb;
  --line: #dce6ef;
  --shadow: 0 18px 45px rgba(8, 44, 92, 0.13);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(var(--container), calc(100% - 32px)); margin-inline: auto; }
.section { padding: 88px 0; }
.section--soft { background: var(--soft); }
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
}
.section-kicker::before { content: ""; width: 28px; height: 3px; border-radius: 99px; background: var(--green); }
.section-title { margin: 12px 0 14px; font-size: clamp(2rem, 4vw, 3.35rem); line-height: 1.08; color: var(--navy); }
.section-lead { max-width: 720px; color: var(--muted); font-size: 1.08rem; }

.top-strip { background: var(--navy); color: #fff; font-size: .92rem; }
.top-strip__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.top-strip__items { display: flex; gap: 20px; flex-wrap: wrap; }
.top-strip a { color: #fff; opacity: .92; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.94); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(220,230,239,.85); }
.nav { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: 285px; max-height: 64px; object-fit: contain; object-position: left center; }
.nav-links { display: flex; align-items: center; gap: 24px; font-weight: 700; color: var(--navy); }
.nav-links a { position: relative; }
.nav-links a:not(.btn)::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 0; height: 3px; border-radius: 99px; background: var(--green); transition: .25s; }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.menu-toggle { display: none; border: 0; background: var(--soft); color: var(--navy); width: 46px; height: 46px; border-radius: 14px; font-size: 1.4rem; cursor: pointer; }

.btn { display: inline-flex; justify-content: center; align-items: center; gap: 9px; min-height: 50px; padding: 0 22px; border-radius: 14px; font-weight: 800; border: 2px solid transparent; transition: transform .2s, box-shadow .2s, background .2s; cursor: pointer; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: linear-gradient(135deg, var(--green), #7bd647); color: #10250b; box-shadow: 0 12px 28px rgba(99,185,52,.28); }
.btn--navy { background: var(--navy); color: #fff; box-shadow: 0 12px 28px rgba(8,44,92,.22); }
.btn--light { background: #fff; color: var(--navy); border-color: rgba(255,255,255,.42); }
.btn--outline { color: var(--navy); border-color: var(--navy); background: transparent; }

.hero { position: relative; overflow: hidden; background: linear-gradient(105deg, rgba(5,30,63,.96) 0%, rgba(7,46,93,.87) 52%, rgba(7,46,93,.35) 100%), url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1800&q=85') center/cover; color: #fff; }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 15%, rgba(99,185,52,.3), transparent 30%); }
.hero__inner { position: relative; min-height: 700px; display: grid; grid-template-columns: 1.18fr .82fr; align-items: center; gap: 48px; padding: 74px 0; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); padding: 9px 14px; border-radius: 999px; font-weight: 800; }
.hero h1 { font-size: clamp(2.8rem, 6vw, 5.4rem); line-height: .98; margin: 22px 0; max-width: 800px; }
.hero h1 span { color: #8ce255; }
.hero p { max-width: 660px; font-size: 1.18rem; color: rgba(255,255,255,.86); }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.hero-card { background: rgba(255,255,255,.96); color: var(--ink); border-radius: 28px; padding: 28px; box-shadow: 0 30px 70px rgba(0,0,0,.28); }
.hero-card h2 { color: var(--navy); margin: 0 0 8px; }
.quick-form { display: grid; gap: 13px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.field { display: grid; gap: 6px; }
.field label { color: var(--navy); font-size: .86rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid var(--line); background: #fff; padding: 13px 14px; border-radius: 12px; outline: none; color: var(--ink); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(99,185,52,.12); }

.trust-bar { margin-top: -34px; position: relative; z-index: 5; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); background: #fff; }
.trust-item { padding: 24px; text-align: center; border-right: 1px solid var(--line); }
.trust-item:last-child { border: 0; }
.trust-item strong { display: block; color: var(--navy); font-size: 1.04rem; }
.trust-item span { color: var(--muted); font-size: .92rem; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.image-stack { position: relative; min-height: 520px; }
.image-stack__main { position: absolute; inset: 0 70px 65px 0; width: calc(100% - 70px); height: calc(100% - 65px); object-fit: cover; border-radius: 28px; box-shadow: var(--shadow); }
.image-stack__small { position: absolute; width: 46%; height: 44%; right: 0; bottom: 0; object-fit: cover; border: 8px solid #fff; border-radius: 24px; box-shadow: var(--shadow); }
.experience-badge { position: absolute; top: 28px; right: 10px; width: 136px; height: 136px; border-radius: 50%; display: grid; place-items: center; text-align: center; background: var(--green); color: #10250b; font-weight: 900; border: 8px solid rgba(255,255,255,.92); box-shadow: var(--shadow); }
.check-list { display: grid; gap: 13px; margin: 26px 0; }
.check-list div { display: flex; gap: 11px; align-items: flex-start; }
.check { flex: 0 0 auto; width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; background: rgba(99,185,52,.16); color: var(--green-dark); font-weight: 900; }

.card-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 38px; }
.service-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: 0 14px 36px rgba(8,44,92,.08); transition: .25s; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(99,185,52,.45); }
.service-icon { width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center; font-size: 1.65rem; background: linear-gradient(135deg, rgba(19,168,227,.12), rgba(99,185,52,.18)); }
.service-card h3 { color: var(--navy); margin: 18px 0 8px; }
.service-card p { color: var(--muted); margin: 0; }
.service-link { display: inline-flex; margin-top: 16px; color: var(--green-dark); font-weight: 800; }

.process { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 40px; counter-reset: step; }
.process-card { position: relative; background: #fff; border-radius: 20px; padding: 28px; border: 1px solid var(--line); }
.process-card::before { counter-increment: step; content: "0" counter(step); display: inline-flex; color: var(--green-dark); background: rgba(99,185,52,.15); font-weight: 900; padding: 6px 10px; border-radius: 9px; }
.process-card h3 { color: var(--navy); }
.process-card p { color: var(--muted); }

.stats-band { background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); text-align: center; }
.stat { padding: 38px 16px; border-right: 1px solid rgba(255,255,255,.14); }
.stat:last-child { border: 0; }
.stat strong { display: block; font-size: 2.5rem; color: #8ce255; }
.stat span { color: rgba(255,255,255,.75); }

.testimonials { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 38px; }
.quote-card { background: #fff; border-radius: 22px; padding: 28px; border: 1px solid var(--line); box-shadow: 0 14px 36px rgba(8,44,92,.07); }
.stars { color: var(--gold); letter-spacing: 3px; }
.quote-card blockquote { margin: 16px 0; color: #445066; }
.quote-card strong { color: var(--navy); }

.cta { background: linear-gradient(120deg, rgba(8,44,92,.98), rgba(13,61,122,.92)), url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?auto=format&fit=crop&w=1800&q=80') center/cover; color: #fff; border-radius: 32px; padding: 54px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta h2 { margin: 0; font-size: clamp(2rem,4vw,3.3rem); line-height: 1.05; }
.cta p { color: rgba(255,255,255,.78); max-width: 680px; }

.page-hero { background: linear-gradient(120deg, var(--navy), var(--navy-2)); color: #fff; padding: 92px 0; }
.page-hero h1 { margin: 0 0 10px; font-size: clamp(2.5rem,5vw,4.6rem); }
.page-hero p { max-width: 700px; color: rgba(255,255,255,.8); }
.breadcrumb { display: flex; gap: 8px; color: rgba(255,255,255,.7); font-size: .92rem; }

.content-card { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 30px; box-shadow: 0 12px 32px rgba(8,44,92,.06); }
.quote-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 36px; align-items: start; }
.contact-list { display: grid; gap: 15px; }
.contact-list div { padding: 18px; border-radius: 16px; background: var(--soft); }
.contact-list strong { display: block; color: var(--navy); }
.full-form { display: grid; gap: 15px; }
.full-form .form-row--3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 13px; }
.notice { padding: 14px 16px; border-radius: 12px; background: #fff8df; color: #6c5710; border: 1px solid #f4dd8f; font-size: .92rem; }

.faq-list { display: grid; gap: 14px; }
.faq-item { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: #fff; }
.faq-question { width: 100%; border: 0; background: #fff; padding: 20px; display: flex; align-items: center; justify-content: space-between; color: var(--navy); font-weight: 800; text-align: left; cursor: pointer; }
.faq-answer { display: none; padding: 0 20px 20px; color: var(--muted); }
.faq-item.open .faq-answer { display: block; }

.site-footer { background: #061f40; color: rgba(255,255,255,.76); padding-top: 68px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px; }
.footer-brand img { width: 285px; filter: brightness(0) invert(1); background: rgba(255,255,255,.96); border-radius: 14px; padding: 8px; }
.footer-title { color: #fff; margin: 0 0 15px; }
.footer-links { display: grid; gap: 9px; }
.footer-links a:hover { color: #8ce255; }
.footer-bottom { margin-top: 48px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.float-contact { position: fixed; right: 18px; bottom: 18px; z-index: 40; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: #25d366; color: #fff; font-size: 1.55rem; box-shadow: 0 16px 34px rgba(0,0,0,.24); }

@media (max-width: 980px) {
  .top-strip { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .nav-links { position: fixed; inset: 82px 16px auto 16px; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 20px; box-shadow: var(--shadow); display: none; flex-direction: column; align-items: stretch; }
  .nav-links.open { display: flex; }
  .hero__inner, .grid-2, .quote-layout { grid-template-columns: 1fr; }
  .hero__inner { min-height: auto; }
  .trust-grid, .card-grid, .process, .stats-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
  .section { padding: 66px 0; }
  .brand img { width: 220px; }
  .hero__inner { padding: 58px 0 84px; }
  .hero h1 { font-size: 2.8rem; }
  .hero-card { padding: 22px; }
  .form-row, .full-form .form-row--3 { grid-template-columns: 1fr; }
  .trust-grid, .card-grid, .process, .stats-grid { grid-template-columns: 1fr; }
  .trust-item, .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .image-stack { min-height: 420px; }
  .image-stack__main { inset: 0 35px 50px 0; width: calc(100% - 35px); }
  .experience-badge { width: 110px; height: 110px; font-size: .84rem; }
  .cta { padding: 34px 24px; border-radius: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}


/* SPCS V1.1 — Premium Business Edition */
html, body { max-width: 100%; overflow-x: clip; }
.page-hero--about {
  position: relative;
  isolation: isolate;
  min-height: 430px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(6,31,64,.96) 0%, rgba(8,44,92,.88) 48%, rgba(8,44,92,.42) 100%),
    url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1800&q=85') center/cover;
}
.page-hero--about::after { content:""; position:absolute; inset:0; z-index:-1; background:radial-gradient(circle at 82% 25%,rgba(99,185,52,.24),transparent 28%); }
.page-hero__content { position:relative; z-index:1; }
.about-story__grid { display:grid; grid-template-columns:minmax(0,1.15fr) minmax(300px,.85fr); align-items:center; gap:clamp(36px,7vw,90px); }
.about-story__copy { min-width:0; }
.about-logo-card { position:relative; min-width:0; width:100%; max-width:480px; justify-self:end; padding:clamp(26px,5vw,48px); border:1px solid var(--line); border-radius:30px; background:linear-gradient(145deg,#fff,#f3f8fc); box-shadow:var(--shadow); text-align:center; overflow:hidden; }
.about-logo-card::before { content:""; position:absolute; width:220px; height:220px; border-radius:50%; top:-110px; right:-90px; background:rgba(99,185,52,.14); }
.about-logo-card img { width:min(100%,330px); max-height:280px; object-fit:contain; margin:0 auto 16px; }
.about-logo-card p { margin:0; color:var(--navy); font-weight:800; }
.about-logo-card__shine { position:absolute; top:22px; right:25px; color:var(--green); font-size:2rem; }
.about-intro { max-width:760px; }
.values-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:20px; margin-top:38px; }
.value-card { min-width:0; padding:30px 26px; border:1px solid var(--line); border-radius:22px; background:#fff; box-shadow:0 14px 36px rgba(8,44,92,.07); transition:.25s ease; }
.value-card:hover { transform:translateY(-6px); border-color:rgba(99,185,52,.5); box-shadow:var(--shadow); }
.value-icon { width:58px; height:58px; display:grid; place-items:center; border-radius:18px; background:linear-gradient(135deg,rgba(19,168,227,.12),rgba(99,185,52,.2)); font-size:1.55rem; }
.value-card h3 { color:var(--navy); margin:18px 0 8px; }
.value-card p { color:var(--muted); margin:0; }
.brand, .brand img, .about-logo-card, .about-logo-card img, .footer-brand, .footer-brand img { min-width:0; }
@media (max-width:980px) {
  .about-story__grid { grid-template-columns:1fr; }
  .about-logo-card { justify-self:center; max-width:440px; }
  .values-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width:640px) {
  .page-hero--about { min-height:340px; padding:70px 0; background-position:62% center; }
  .page-hero--about h1 { font-size:clamp(2.35rem,12vw,3.4rem); line-height:1.02; }
  .about-story__grid { gap:38px; }
  .about-logo-card { max-width:100%; padding:24px 18px; border-radius:22px; }
  .about-logo-card img { width:min(100%,245px); max-height:205px; }
  .values-grid { grid-template-columns:1fr; }
  .value-card { padding:24px 22px; }
  .container { width:min(var(--container),calc(100% - 28px)); }
  .site-header .nav { gap:10px; }
  .brand { flex:1 1 auto; max-width:calc(100% - 60px); }
  .brand img { width:min(100%,220px); height:auto; }
}
