
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #082a55;
  --navy-2: #0d376e;
  --ink: #0f1c2e;
  --muted: #607086;
  --green: #00bd73;
  --green-2: #00d486;
  --sky: #eaf4ff;
  --mint: #e8fff5;
  --line: #dce5ef;
  --white: #ffffff;
  --surface: #f7fafd;
  --shadow: 0 20px 60px rgba(8,42,85,.12);
  --shadow-soft: 0 12px 35px rgba(8,42,85,.08);
  --radius: 24px;
  --radius-sm: 16px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: rgba(0,189,115,.2); }

.container { width: var(--container); margin-inline: auto; }
.section { padding: 104px 0; }
.section-sm { padding: 72px 0; }
.section.alt { background: var(--surface); }
.section.dark { background: var(--navy); color: var(--white); }
.section-heading { max-width: 740px; margin-bottom: 46px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 13px; border-radius: 999px;
  color: var(--navy); background: var(--mint); font-size: .78rem;
  font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
}
.eyebrow::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(0,189,115,.12); }
h1,h2,h3,h4 { margin: 0 0 16px; line-height: 1.12; letter-spacing: -.035em; }
h1 { font-size: clamp(3rem, 6vw, 5.7rem); }
h2 { font-size: clamp(2.2rem, 4vw, 3.9rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
p { margin: 0 0 18px; color: var(--muted); }
.dark p { color: rgba(255,255,255,.72); }
.lead { font-size: clamp(1.08rem, 1.8vw, 1.28rem); max-width: 660px; }
.text-gradient { background: linear-gradient(100deg, var(--navy) 0%, var(--green) 95%); -webkit-background-clip: text; background-clip: text; color: transparent; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 24px; border-radius: 13px;
  border: 1px solid transparent; font-weight: 800; transition: .25s ease;
}
.btn-primary { background: var(--green); color: #04281b; box-shadow: 0 12px 24px rgba(0,189,115,.25); }
.btn-primary:hover { transform: translateY(-2px); background: var(--green-2); box-shadow: 0 16px 32px rgba(0,189,115,.32); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { transform: translateY(-2px); background: var(--navy-2); }
.btn-light { background: var(--white); color: var(--navy); }
.btn-outline { border-color: var(--line); background: rgba(255,255,255,.72); color: var(--navy); }
.btn-outline:hover { border-color: var(--green); color: #007f4d; }
.btn-arrow::after { content: '↗'; font-size: 1.08em; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.announcement { background: var(--navy); color: var(--white); font-size: .86rem; }
.announcement-inner { min-height: 38px; display: flex; justify-content: center; align-items: center; gap: 12px; text-align: center; }
.announcement a { color: #75f5bc; font-weight: 800; }
.site-header {
  position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px); border-bottom: 1px solid rgba(220,229,239,.8);
}
.navbar { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: inline-flex; width: 180px; align-items: center; }
.logo img { width: 100%; height: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link { display: inline-flex; gap: 6px; align-items: center; padding: 12px 14px; font-size: .92rem; font-weight: 700; color: #34465e; }
.nav-link:hover, .nav-link.active { color: var(--navy); }
.nav-link.has-menu::after { content: '⌄'; font-size: .8rem; transition: transform .2s; }
.nav-item:hover .nav-link.has-menu::after { transform: rotate(180deg); }
.mega-menu {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translate(-50%, 10px);
  width: 690px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  padding: 18px; background: var(--white); border: 1px solid var(--line); border-radius: 18px;
  box-shadow: var(--shadow); opacity: 0; visibility: hidden; pointer-events: none; transition: .22s ease;
}
.mega-menu.narrow { width: 520px; }
.nav-item:hover .mega-menu, .nav-item:focus-within .mega-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
.mega-link { display: grid; grid-template-columns: 42px 1fr; gap: 12px; padding: 13px; border-radius: 13px; }
.mega-link:hover { background: var(--surface); }
.mega-icon, .service-icon, .value-icon { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--mint); color: #008653; font-weight: 800; }
.mega-link strong { display: block; font-size: .92rem; margin-bottom: 2px; }
.mega-link small { color: var(--muted); font-size: .76rem; line-height: 1.35; display: block; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.mobile-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
.mobile-toggle span, .mobile-toggle::before, .mobile-toggle::after { content: ''; width: 20px; height: 2px; background: var(--navy); display: block; margin: 4px auto; transition: .2s; }

.hero {
  position: relative; overflow: hidden; padding: 88px 0 100px;
  background:
    radial-gradient(circle at 76% 18%, rgba(0,189,115,.16), transparent 25%),
    radial-gradient(circle at 15% 20%, rgba(53,127,255,.10), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}
.hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(8,42,85,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(8,42,85,.035) 1px, transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(to bottom, #000, transparent 80%); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 60px; }
.hero h1 { max-width: 800px; }
.hero-copy p { max-width: 620px; font-size: 1.15rem; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.pill { padding: 8px 12px; background: rgba(255,255,255,.8); border: 1px solid var(--line); border-radius: 999px; font-size: .78rem; font-weight: 700; color: #4b5d72; }
.hero-visual { position: relative; min-height: 530px; }
.orbit { position: absolute; width: 500px; height: 500px; border-radius: 50%; border: 1px solid rgba(8,42,85,.10); inset: 50% auto auto 50%; transform: translate(-50%,-50%); }
.orbit::before, .orbit::after { content: ''; position: absolute; border-radius: 50%; border: 1px dashed rgba(0,189,115,.22); inset: 56px; }
.orbit::after { inset: 120px; border-style: solid; }
.dashboard {
  position: absolute; top: 50%; left: 50%; width: min(94%, 510px); transform: translate(-50%,-50%) rotate(-2deg);
  border: 1px solid rgba(255,255,255,.8); border-radius: 28px; padding: 18px;
  background: rgba(255,255,255,.84); backdrop-filter: blur(18px); box-shadow: 0 34px 90px rgba(8,42,85,.20);
}
.dashboard-top { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); padding: 6px 4px 15px; }
.dots { display: flex; gap: 6px; }
.dots i { width: 8px; height: 8px; border-radius: 50%; background: #d4dce7; }
.status { display: inline-flex; align-items: center; gap: 7px; padding: 6px 9px; background: var(--mint); color: #007b4c; font-size: .7rem; font-weight: 800; border-radius: 999px; }
.status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.dashboard-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 14px; padding-top: 16px; }
.metric-card, .code-card, .mini-card { border: 1px solid var(--line); border-radius: 17px; background: rgba(247,250,253,.88); }
.metric-card { padding: 18px; }
.metric-value { font-size: 2rem; font-weight: 800; color: var(--navy); }
.metric-label { color: var(--muted); font-size: .75rem; }
.bars { height: 120px; display: flex; align-items: end; gap: 7px; margin-top: 18px; }
.bars span { flex: 1; min-width: 8px; background: linear-gradient(var(--green-2), var(--navy)); border-radius: 7px 7px 2px 2px; opacity: .85; }
.code-card { padding: 18px; background: var(--navy); color: #c6ffdf; min-height: 230px; }
.code-line { height: 8px; border-radius: 99px; background: rgba(198,255,223,.22); margin: 13px 0; }
.code-line.accent { background: var(--green); opacity: .8; }
.float-card { position: absolute; padding: 14px 17px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-soft); font-size: .76rem; font-weight: 800; color: var(--navy); }
.float-card.one { top: 40px; right: -5px; }
.float-card.two { bottom: 50px; left: -14px; }
.float-card strong { display: block; color: var(--green); font-size: 1.25rem; }

.trust-bar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.trust-inner { min-height: 92px; display: grid; grid-template-columns: 1.2fr repeat(4,1fr); align-items: center; gap: 22px; }
.trust-label { font-size: .8rem; color: var(--muted); font-weight: 700; }
.trust-item { text-align: center; font-weight: 800; color: #67768a; letter-spacing: -.02em; }

.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; transition: .25s ease; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); border-color: rgba(0,189,115,.35); }
.service-card { min-height: 290px; display: flex; flex-direction: column; }
.service-card h3 { margin-top: 26px; }
.card-link { margin-top: auto; padding-top: 18px; color: var(--navy); font-weight: 800; display: inline-flex; gap: 8px; align-items: center; }
.card-link::after { content: '→'; transition: .2s; }
.card:hover .card-link::after { transform: translateX(4px); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.visual-panel { min-height: 500px; border-radius: 32px; background: linear-gradient(145deg, var(--navy), #12518e); position: relative; overflow: hidden; padding: 30px; box-shadow: var(--shadow); }
.visual-panel::before { content: ''; position: absolute; width: 390px; height: 390px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; right: -120px; top: -80px; box-shadow: 0 0 0 52px rgba(255,255,255,.035), 0 0 0 104px rgba(255,255,255,.025); }
.flow-card { position: relative; z-index: 2; background: rgba(255,255,255,.93); border-radius: 18px; padding: 18px; margin-bottom: 15px; display: grid; grid-template-columns: 42px 1fr auto; gap: 14px; align-items: center; }
.flow-card:nth-child(2) { margin-left: 42px; }
.flow-card:nth-child(3) { margin-left: 82px; }
.flow-card .step { width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center; background: var(--mint); color: #008854; font-weight: 800; }
.flow-card small { color: var(--muted); display: block; }
.flow-card em { font-style: normal; font-size: .72rem; color: #008854; background: var(--mint); padding: 5px 8px; border-radius: 999px; }
.check-list { display: grid; gap: 13px; margin: 28px 0; }
.check { display: flex; align-items: flex-start; gap: 12px; color: #31445b; }
.check::before { content: '✓'; flex: 0 0 24px; width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: var(--mint); color: #008653; font-weight: 900; }

.tabs { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 26px; }
.tab-btn { border: 1px solid var(--line); background: var(--white); padding: 11px 16px; border-radius: 999px; font-weight: 800; color: var(--muted); }
.tab-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.tab-panel { display: none; }
.tab-panel.active { display: grid; }

.process { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; counter-reset: step; }
.process-item { position: relative; padding: 26px 24px 0 0; }
.process-item::before { counter-increment: step; content: '0' counter(step); display: grid; place-items: center; width: 54px; height: 54px; border-radius: 16px; background: var(--mint); color: #008653; font-weight: 800; margin-bottom: 22px; }
.process-item:not(:last-child)::after { content: ''; position: absolute; height: 1px; background: var(--line); top: 53px; left: 64px; right: 12px; }
.process-item p { font-size: .93rem; }

.industry-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.industry { min-height: 145px; padding: 24px; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; background: rgba(255,255,255,.06); }
.industry span { display: inline-block; margin-bottom: 25px; color: #74f2ba; font-weight: 800; font-size: .75rem; }
.industry h3 { font-size: 1.15rem; letter-spacing: -.02em; }

.case-card { overflow: hidden; padding: 0; }
.case-visual { min-height: 230px; padding: 24px; background: linear-gradient(135deg, var(--navy), #205c96); position: relative; display: flex; align-items: end; }
.case-visual.green { background: linear-gradient(135deg, #007c50, #00bd73); }
.case-visual.sky { background: linear-gradient(135deg, #16437a, #6b9ce8); }
.case-window { width: 85%; margin: auto; background: rgba(255,255,255,.93); border-radius: 15px 15px 0 0; padding: 14px; box-shadow: 0 20px 50px rgba(0,0,0,.18); }
.case-window .line { height: 9px; border-radius: 99px; background: #dce5ef; margin: 9px 0; }
.case-window .line.green { background: #73e4b5; }
.case-body { padding: 28px; }
.case-tag { color: #008653; font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }

.tech-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 11px; }
.tech-chip { padding: 12px 16px; border: 1px solid var(--line); border-radius: 13px; background: var(--white); font-weight: 800; color: #40536a; box-shadow: 0 5px 16px rgba(8,42,85,.04); }

.faq { max-width: 850px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; background: transparent; border: 0; color: var(--ink); font-weight: 800; font-size: 1.05rem; }
.faq-question::after { content: '+'; font-size: 1.45rem; color: var(--green); transition: .2s; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer p { padding-bottom: 24px; }

.cta-box { position: relative; overflow: hidden; border-radius: 32px; padding: 58px; background: linear-gradient(120deg, var(--navy), #154e89); color: var(--white); }
.cta-box::after { content: ''; position: absolute; width: 330px; height: 330px; border-radius: 50%; right: -90px; top: -140px; background: radial-gradient(circle, rgba(0,212,134,.45), transparent 70%); }
.cta-box .content { position: relative; z-index: 2; max-width: 740px; }
.cta-box p { color: rgba(255,255,255,.72); font-size: 1.1rem; }

.page-hero { padding: 90px 0 74px; background: linear-gradient(180deg,#f7fbff,#fff); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; width: 440px; height: 440px; border-radius: 50%; background: radial-gradient(circle, rgba(0,189,115,.16), transparent 68%); right: -100px; top: -190px; }
.page-hero .inner { position: relative; z-index: 2; max-width: 860px; }
.breadcrumbs { display: flex; gap: 8px; align-items: center; font-size: .8rem; color: var(--muted); margin-bottom: 24px; }
.breadcrumbs a { color: var(--navy); font-weight: 800; }

.service-detail { display: grid; grid-template-columns: 130px 1fr 1fr; gap: 32px; padding: 38px 0; border-bottom: 1px solid var(--line); align-items: start; }
.service-number { font-size: 3rem; line-height: 1; font-weight: 800; color: #dbe5ee; }
.service-detail ul, .resource-detail ul { padding-left: 19px; color: var(--muted); }
.service-detail li, .resource-detail li { margin: 8px 0; }

.solution-row { display: grid; grid-template-columns: .9fr 1.1fr; gap: 44px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.solution-row h3 { position: sticky; top: 130px; }

.resource-card .meta { color: #008653; font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.resource-card h3 { margin-top: 18px; }
.resource-detail { padding: 40px; border: 1px solid var(--line); border-radius: var(--radius); margin-top: 24px; background: var(--white); scroll-margin-top: 110px; }
.resource-detail h3 { font-size: 2rem; }
.quote-box { border-left: 4px solid var(--green); background: var(--mint); padding: 20px 22px; border-radius: 0 14px 14px 0; margin: 24px 0; color: #1d4f3d; font-weight: 700; }

.values { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.value-card { padding: 26px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); }
.value-card .value-icon { margin-bottom: 22px; }
.team-roles { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.role-card { padding: 28px; background: var(--navy); color: var(--white); border-radius: 22px; }
.role-card p { color: rgba(255,255,255,.68); }
.role-card span { color: #79f5bf; font-size: .78rem; font-weight: 800; }

.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 54px; align-items: start; }
.contact-panel { background: var(--navy); color: var(--white); padding: 34px; border-radius: 26px; position: sticky; top: 112px; }
.contact-panel p { color: rgba(255,255,255,.7); }
.contact-method { padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.contact-method strong { display: block; color: #77f4bd; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.form-card { padding: 38px; border: 1px solid var(--line); border-radius: 26px; box-shadow: var(--shadow-soft); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 800; font-size: .86rem; color: #34475d; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: 14px 15px; outline: none; background: var(--surface); color: var(--ink); transition: .2s; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(0,189,115,.10); background: var(--white); }
.form-note { font-size: .76rem; margin-top: 12px; }
.form-success { display: none; margin-top: 18px; padding: 14px 16px; border-radius: 12px; background: var(--mint); color: #006d43; font-weight: 700; }
.form-success.show { display: block; }

.legal { max-width: 860px; }
.legal h2 { font-size: 1.65rem; margin-top: 40px; }
.legal h3 { font-size: 1.2rem; margin-top: 26px; }
.legal ul { color: var(--muted); }

.site-footer { background: #061e3f; color: var(--white); padding: 78px 0 24px; }
.footer-top {
    display: grid;
    grid-template-columns: 1.70fr repeat(5, 1fr);
    gap: 36px;
}
.footer-brand img { width: 175px; filter: brightness(0) invert(1); margin-bottom: 20px; }
.footer-brand p { color: rgba(255,255,255,.62); max-width: 320px; }
.footer-col h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: #77f4bd; margin-bottom: 20px; }
.footer-links { display: grid; gap: 11px; }
.footer-links a { color: rgba(255,255,255,.68); font-size: .9rem; }
.footer-links a:hover { color: var(--white); }
.footer-location { margin-top: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); }
.footer-location strong { display: block; margin-bottom: 4px; }
.footer-location span { color: rgba(255,255,255,.56); font-size: .85rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 58px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.55); font-size: .78rem; }
.socials { display: flex; gap: 10px; }
.socials a { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 10px; color: var(--white); font-size: .8rem; }
.back-top { position: fixed; z-index: 20; right: 22px; bottom: 22px; width: 46px; height: 46px; border: 0; border-radius: 14px; background: var(--navy); color: var(--white); box-shadow: var(--shadow-soft); opacity: 0; transform: translateY(12px); pointer-events: none; transition: .25s; }
.back-top.show { opacity: 1; transform: none; pointer-events: auto; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1020px) {
  .nav-links, .nav-cta .btn { display: none; }
  .mobile-toggle { display: block; }
  .navbar.open { align-items: flex-start; padding-top: 18px; padding-bottom: 18px; flex-wrap: wrap; }
  .navbar.open .nav-links { order: 3; width: 100%; display: grid; padding: 14px 0 0; border-top: 1px solid var(--line); }
  .navbar.open .nav-link { justify-content: space-between; padding: 13px 4px; }
  .navbar.open .mega-menu { position: static; opacity: 1; visibility: visible; pointer-events: auto; transform: none; width: 100%; display: none; box-shadow: none; margin: 0 0 10px; }
  .navbar.open .nav-item.open .mega-menu { display: grid; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy p, .hero h1 { margin-inline: auto; }
  .hero .actions, .hero-tags { justify-content: center; }
  .hero-visual { min-height: 500px; }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .process { grid-template-columns: repeat(2,1fr); gap: 28px 0; }
  .industry-grid, .values { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1.4fr repeat(2,1fr); }
  .contact-panel { position: static; }
}

@media (max-width: 720px) {
  :root { --container: min(100% - 28px, 1180px); --radius: 20px; }
  .section { padding: 76px 0; }
  .section-sm { padding: 56px 0; }
  .announcement-inner { font-size: .75rem; }
  .logo { width: 155px; }
  .navbar { min-height: 70px; }
  .hero { padding: 64px 0 78px; }
  h1 { font-size: clamp(2.65rem, 12vw, 4.2rem); }
  .hero-visual { min-height: 420px; margin-top: 10px; }
  .orbit { width: 390px; height: 390px; }
  .dashboard { width: 100%; }
  .float-card.one { right: -8px; top: 8px; }
  .float-card.two { left: -8px; bottom: 8px; }
  .trust-inner { grid-template-columns: 1fr 1fr; padding: 22px 0; }
  .trust-label { grid-column: 1/-1; text-align: center; }
  .grid-3, .grid-2, .team-roles, .industry-grid, .values { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .process-item:not(:last-child)::after { display: none; }
  .service-detail { grid-template-columns: 58px 1fr; }
  .service-detail > div:last-child { grid-column: 2; }
  .solution-row { grid-template-columns: 1fr; }
  .solution-row h3 { position: static; }
  .cta-box { padding: 38px 26px; }
  .form-card { padding: 25px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
.popup-overlay{

position:fixed;

top:0;
left:0;

width:100%;
height:100%;

background:rgba(0,0,0,.65);

display:flex;

align-items:center;

justify-content:center;

opacity:0;

visibility:hidden;

transition:.35s;

z-index:99999;

}

.popup-overlay.show{

opacity:1;

visibility:visible;

}

.popup-box{

width:420px;

max-width:90%;

background:#fff;

border-radius:18px;

padding:40px;

text-align:center;

box-shadow:0 20px 60px rgba(0,0,0,.18);

animation:popup .35s ease;

}

@keyframes popup{

from{

transform:translateY(25px) scale(.9);

opacity:0;

}

to{

transform:translateY(0) scale(1);

opacity:1;

}

}

.popup-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:rgba(0,0,0,.55);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:9999;
}

.popup-overlay.show{
    opacity:1;
    visibility:visible;
}

.popup-box{

    width:430px;
    background:#fff;
    border-radius:15px;
    padding:40px;
    text-align:center;

    transform:scale(.7);
    transition:.35s ease;
}

.popup-overlay.show .popup-box{
    transform:scale(1);
}

.popup-icon{
    width:90px;
    height:90px;
    margin:auto;
    margin-bottom:25px;
}

.checkmark{
    width:90px;
    height:90px;
}

.checkmark-circle{

    fill:#16a34a;

    transform-origin:center;

    transform:scale(0);

}

.checkmark-check{

    fill:none;
    stroke:#fff;
    stroke-width:4;
    stroke-linecap:round;
    stroke-linejoin:round;

    stroke-dasharray:48;
    stroke-dashoffset:48;

}

.popup-overlay.show .checkmark-circle{

    animation:circlePop .45s ease forwards;

}

.popup-overlay.show .checkmark-check{

    animation:drawCheck .45s ease .35s forwards;

}

@keyframes circlePop{

    0%{
        transform:scale(0);
    }

    70%{
        transform:scale(1.15);
    }

    100%{
        transform:scale(1);
    }

}

@keyframes drawCheck{

    from{
        stroke-dashoffset:48;
    }

    to{
        stroke-dashoffset:0;
    }

}

.popup-box h2{

    margin:0 0 15px;
    font-size:30px;

}

.popup-box p{

    color:#555;
    line-height:1.7;

}

.popup-small{

    font-size:14px;
    color:#777;

}

#popupClose{

    margin-top:25px;
    padding:14px 35px;

    border:none;
    border-radius:8px;

    background:#16a34a;

    color:#fff;
    cursor:pointer;

    font-size:16px;

}

#popupClose:hover{

    background:#12833d;

}