:root {
  --ink: #07162c;
  --navy: #081b35;
  --blue: #086caf;
  --green: #49ad2a;
  --orange: #ff8f1c;
  --cream: #f5f8f2;
  --line: #dbe4df;
  --muted: #667384;
  --white: #fff;
  --shadow: 0 24px 70px rgba(4, 25, 52, .12);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .76rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--green);
}
.eyebrow::before { content: ""; width: 28px; height: 3px; border-radius: 9px; background: var(--orange); }
h1, h2, h3 { margin: 0; line-height: 1.08; }
h1 { font-size: clamp(2.7rem, 6vw, 5.7rem); letter-spacing: -.055em; max-width: 800px; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: -.04em; }
h3 { font-size: 1.25rem; }
p { margin: 0; }
.lead { font-size: clamp(1rem, 1.5vw, 1.2rem); color: var(--muted); }
.section { padding: 96px 0; }
.section-head { display: grid; grid-template-columns: 1fr .8fr; gap: 44px; align-items: end; margin-bottom: 48px; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50;
  transition: .25s ease; border-bottom: 1px solid rgba(255,255,255,.16);
}
.site-header.scrolled { background: rgba(255,255,255,.96); box-shadow: 0 12px 40px rgba(5,25,48,.08); border-color: var(--line); backdrop-filter: blur(14px); }
.nav { height: 98px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand {
  width: 252px; height: 90px; overflow: visible;
}
.brand img {
  width: 100%; height: 100%; object-fit: contain; object-position: left center;
  filter: drop-shadow(0 5px 12px rgba(0,0,0,.34));
}
.nav-links { display: flex; align-items: center; gap: 30px; color: #fff; font-weight: 700; font-size: .94rem; }
.site-header.scrolled .nav-links { color: var(--ink); }
.nav-links a { position: relative; }
.nav-links a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 0; height: 2px; background: var(--orange); transition: .2s; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta, .button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 22px; border-radius: 999px; border: 0;
  background: var(--orange); color: #15110b; font-weight: 850; cursor: pointer;
  box-shadow: 0 12px 28px rgba(255,143,28,.25); transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover, .button:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(255,143,28,.34); }
.button.alt { color: white; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.45); box-shadow: none; }
.button.hub-cta {
  color: white; background: var(--green); border: 1px solid #68c64b;
  box-shadow: 0 12px 28px rgba(73,173,42,.28);
}
.button.hub-cta:hover { background: #58bd38; box-shadow: 0 16px 34px rgba(73,173,42,.38); }
.button.blue { color: white; background: var(--blue); box-shadow: 0 12px 28px rgba(8,108,175,.24); }
.menu-btn { display: none; color: white; border: 0; background: transparent; font-size: 1.7rem; }
.site-header.scrolled .menu-btn { color: var(--ink); }

.hero {
  min-height: 760px; display: grid; align-items: center; color: white; position: relative; overflow: hidden;
  background: #061426 url("rameti-hero.png") center/cover no-repeat;
}
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,13,28,.95) 0%, rgba(3,13,28,.74) 38%, rgba(3,13,28,.04) 75%); }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 150px; background: linear-gradient(transparent, rgba(3,13,28,.5)); }
.hero-content { position: relative; z-index: 2; padding-top: 95px; width: min(720px, 60%); transform: translateY(-28px); }
.hero .eyebrow { color: #9ee684; }
.hero h1 span { color: #9ee684; }
.hero-copy { max-width: 610px; margin: 25px 0 34px; color: #dce7f2; font-size: 1.16rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.trust-row { display: flex; gap: 30px; flex-wrap: wrap; margin-top: 28px; color: #d9e4ed; font-size: .86rem; font-weight: 700; }
.trust-row span::before { content: "✓"; color: #9ee684; margin-right: 8px; }

.quick-strip { position: relative; z-index: 3; margin-top: -54px; }
.quick-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-radius: 22px; overflow: hidden; background: white; box-shadow: var(--shadow); }
.quick-item { padding: 27px 30px; display: flex; gap: 17px; align-items: center; border-right: 1px solid var(--line); }
.quick-item:last-child { border: 0; }
.quick-icon { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: #eaf6e6; color: var(--green); font-weight: 900; font-size: 1.2rem; }
.quick-item small { color: var(--muted); display: block; }

.intro-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 70px; align-items: center; }
.story-visual { min-height: 520px; border-radius: var(--radius); background: linear-gradient(145deg, #072146, #0c6eaf); position: relative; overflow: hidden; box-shadow: var(--shadow); padding: 44px; color: white; }
.story-visual::before, .story-visual::after { content:""; position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.16); }
.story-visual::before { width: 430px; height: 430px; right: -140px; bottom: -120px; }
.story-visual::after { width: 260px; height: 260px; right: -50px; bottom: -30px; }
.big-number { font-size: 7.5rem; line-height: .9; font-weight: 900; color: #9ee684; letter-spacing: -.08em; }
.story-visual h3 { font-size: 2.15rem; max-width: 350px; margin-top: 18px; }
.story-visual p { color: #d5e4f0; max-width: 380px; margin-top: 18px; }
.mini-path { position: absolute; right: 40px; bottom: 42px; display: grid; grid-template-columns: repeat(3, 48px); gap: 8px; z-index: 2; }
.mini-path i { height: 48px; border-radius: 50%; background: var(--orange); border: 5px solid rgba(255,255,255,.22); }
.mini-path i:nth-child(2) { background: var(--green); transform: translateY(-24px); }
.intro-copy h2 { margin: 12px 0 24px; }
.intro-copy .lead { margin-bottom: 26px; }
.principles { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin: 28px 0 36px; }
.principle { padding: 18px 16px; border: 1px solid var(--line); border-radius: 16px; font-weight: 850; }
.principle b { color: var(--blue); display: block; font-size: .75rem; text-transform: uppercase; letter-spacing: .09em; }

.services { background: var(--cream); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  background: white; border: 1px solid #e2e9e5; border-radius: 22px; padding: 30px;
  transition: .25s ease; position: relative; overflow: hidden;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.service-num { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; color: var(--blue); font-weight: 900; }
.service-num span:first-child { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: #eef6fb; font-size: 1.25rem; }
.service-num small { color: #acb8b0; font-size: .76rem; letter-spacing: .1em; }
.service-card h3 { font-size: 1.42rem; }
.service-card .tag { color: var(--green); font-weight: 800; font-size: .85rem; margin: 8px 0 15px; }
.service-card p { color: var(--muted); font-size: .95rem; }
.service-card a { display: inline-flex; margin-top: 20px; color: var(--blue); font-weight: 850; }
.service-card.highlight { background: var(--navy); color: white; }
.service-card.highlight p { color: #cbd8e4; }
.service-card.highlight .service-num span:first-child { background: rgba(255,255,255,.1); color: #a4e88b; }

.four-s { background: white; }
.pillar-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.pillar-card {
  min-height: 285px; padding: 28px; border-radius: 23px; color: white; position: relative;
  overflow: hidden; display: flex; flex-direction: column; justify-content: space-between;
}
.pillar-card::after {
  content: ""; position: absolute; width: 170px; height: 170px; right: -82px; bottom: -88px;
  border: 35px solid rgba(255,255,255,.11); border-radius: 50%;
}
.pillar-card:nth-child(1) { background: linear-gradient(145deg,#147a39,#0a4c28); }
.pillar-card:nth-child(2) { background: linear-gradient(145deg,#0870b4,#073a6c); }
.pillar-card:nth-child(3) { background: linear-gradient(145deg,#71468d,#392253); }
.pillar-card:nth-child(4) { background: linear-gradient(145deg,#c06b0e,#744008); }
.pillar-icon {
  width: 52px; height: 52px; display: grid; place-items: center; border-radius: 16px;
  background: rgba(255,255,255,.14); font-size: 1.45rem; font-weight: 900;
}
.pillar-card h3 { font-size: 1.45rem; margin: 38px 0 9px; }
.pillar-card p { color: rgba(255,255,255,.8); font-size: .93rem; position: relative; z-index: 2; }
.pillar-line { margin-top: 28px; color: var(--orange); font-weight: 850; text-align: center; }

.architecture { background: var(--cream); }
.architecture-shell {
  display: grid; grid-template-columns: 1fr 160px 1fr; gap: 28px; align-items: stretch;
  padding: 38px; border-radius: 30px; background: white; box-shadow: var(--shadow);
}
.layer {
  padding: 30px; border-radius: 22px; border: 1px solid var(--line);
}
.layer small { color: var(--orange); text-transform: uppercase; letter-spacing: .12em; font-weight: 900; }
.layer h3 { font-size: 1.8rem; margin: 8px 0 12px; }
.layer p { color: var(--muted); }
.layer-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.layer-tags span { padding: 8px 12px; border-radius: 999px; background: #eef6fb; color: var(--blue); font-weight: 800; font-size: .78rem; }
.layer.solution .layer-tags span { background: #eaf6e6; color: #2f7b1c; }
.client-center {
  border-radius: 50%; aspect-ratio: 1; align-self: center; display: grid; place-items: center;
  padding: 20px; text-align: center; color: white; font-weight: 900; line-height: 1.2;
  background: linear-gradient(145deg,var(--blue),#07345f); border: 10px solid #e8f2f7;
  box-shadow: 0 14px 35px rgba(8,108,175,.2);
}
.architecture-note { text-align: center; color: var(--muted); margin-top: 24px; font-weight: 700; }

.hub-feature { background: #fff; }
.hub-feature-card {
  display: grid; grid-template-columns: .92fr 1.08fr; min-height: 500px; overflow: hidden;
  border-radius: 32px; color: white; background: linear-gradient(135deg,#06172f,#0b4779);
  box-shadow: var(--shadow); position: relative;
}
.hub-feature-copy { padding: 58px; align-self: center; position: relative; z-index: 2; }
.hub-feature-copy h2 { margin: 12px 0 22px; }
.hub-feature-copy .lead { color: #c8d7e4; margin-bottom: 30px; }
.hub-feature-visual {
  padding: 42px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  background: radial-gradient(circle at 80% 20%,rgba(73,173,42,.22),transparent 44%);
  align-content: center; position: relative; z-index: 2;
}
.hub-mini-zone {
  min-height: 170px; padding: 22px; border-radius: 20px; display: flex; flex-direction: column;
  justify-content: space-between; border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.07); backdrop-filter: blur(8px);
}
.hub-mini-zone:nth-child(2), .hub-mini-zone:nth-child(3) { transform: translateY(18px); }
.hub-mini-zone span { color: var(--orange); font-size: .75rem; font-weight: 900; letter-spacing: .1em; }
.hub-mini-zone h3 { font-size: 1.18rem; }
.hub-mini-zone p { color: #c7d5e0; font-size: .82rem; line-height: 1.45; }

.hub-intro-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 68px; align-items: center; }
.hub-orbit {
  min-height: 500px; border-radius: 30px; position: relative; display: grid; place-items: center;
  color: white; background: radial-gradient(circle,#0d619e 0 25%,#08274a 26% 49%,#06162c 50%);
  box-shadow: var(--shadow); overflow: hidden;
}
.hub-orbit::before, .hub-orbit::after {
  content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.2);
}
.hub-orbit::before { width: 330px; height: 330px; }
.hub-orbit::after { width: 440px; height: 440px; }
.hub-orbit-center {
  width: 158px; height: 158px; border-radius: 50%; display: grid; place-items: center;
  text-align: center; padding: 20px; font-weight: 900; line-height: 1.2;
  background: var(--orange); color: #16100a; z-index: 3; box-shadow: 0 18px 45px rgba(255,143,28,.3);
}
.orbit-label { position: absolute; z-index: 3; font-size: .78rem; font-weight: 850; color: #dce8f1; }
.orbit-label.one { top: 55px; left: 50%; transform: translateX(-50%); }
.orbit-label.two { right: 35px; top: 50%; transform: translateY(-50%); }
.orbit-label.three { bottom: 55px; left: 50%; transform: translateX(-50%); }
.orbit-label.four { left: 35px; top: 50%; transform: translateY(-50%); }
.hub-intro-copy h2 { margin: 12px 0 22px; }
.hub-intro-copy .lead { margin-bottom: 28px; }
.hub-benefits { display: grid; gap: 13px; margin-top: 28px; }
.hub-benefit { display: grid; grid-template-columns: 40px 1fr; gap: 13px; align-items: center; font-weight: 780; }
.hub-benefit i { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; color: var(--green); background: #eaf6e6; font-style: normal; }

.hub-zones { background: var(--cream); }
.hub-zone-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.hub-zone-card {
  padding: 36px; border-radius: 24px; background: white; border: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.hub-zone-card::after {
  content: attr(data-zone); position: absolute; right: 18px; top: 8px;
  color: rgba(8,108,175,.07); font-size: 5.2rem; font-weight: 950; line-height: 1;
}
.zone-top { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; position: relative; z-index: 2; }
.zone-icon { width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; color: white; background: var(--blue); font-weight: 900; font-size: 1.2rem; }
.hub-zone-card:nth-child(2) .zone-icon { background: #554276; }
.hub-zone-card:nth-child(3) .zone-icon { background: var(--green); }
.hub-zone-card:nth-child(4) .zone-icon { background: #aa5f0d; }
.zone-top small { color: var(--orange); text-transform: uppercase; font-weight: 900; letter-spacing: .1em; }
.zone-top h3 { margin-top: 3px; font-size: 1.5rem; }
.hub-zone-card ul { margin: 0; padding-left: 20px; color: var(--muted); position: relative; z-index: 2; }
.hub-zone-card li { margin: 8px 0; }
.hub-journey { display: grid; grid-template-columns: repeat(4,1fr); gap: 15px; margin-top: 40px; counter-reset: hubstep; }
.hub-journey-step { padding: 24px; border-radius: 19px; border: 1px solid var(--line); counter-increment: hubstep; }
.hub-journey-step::before { content: "0" counter(hubstep); display: block; color: var(--orange); font-weight: 950; margin-bottom: 10px; }
.hub-journey-step h3 { margin-bottom: 8px; }
.hub-journey-step p { color: var(--muted); font-size: .88rem; }

.legacy-section { background: linear-gradient(130deg,#071a34,#0b315c); color: white; overflow: hidden; }
.legacy-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.legacy-copy h2 { margin: 12px 0 22px; }
.legacy-copy .lead { color: #c5d4e0; }
.legacy-path { display: grid; gap: 15px; position: relative; }
.legacy-step {
  display: grid; grid-template-columns: 58px 1fr; gap: 18px; align-items: start;
  padding: 23px; border: 1px solid rgba(255,255,255,.11); background: rgba(255,255,255,.055);
  border-radius: 19px;
}
.legacy-step strong {
  width: 52px; height: 52px; display: grid; place-items: center; border-radius: 15px;
  background: rgba(255,143,28,.16); color: var(--orange); font-size: 1.2rem;
}
.legacy-step h3 { margin-bottom: 7px; }
.legacy-step p { color: #c8d4df; font-size: .93rem; }
.legacy-quote {
  margin-top: 30px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.13);
  color: #a9e990; font-size: 1.2rem; font-weight: 800;
}

.why { background: var(--navy); color: white; position: relative; overflow: hidden; }
.why::after { content: ""; position: absolute; width: 500px; height: 500px; right: -250px; top: -200px; border-radius: 50%; background: radial-gradient(circle, rgba(73,173,42,.24), transparent 68%); }
.why-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; position: relative; z-index: 2; }
.why h2 { margin: 12px 0 22px; }
.why .lead { color: #c5d2df; }
.why-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.why-item { padding: 25px; border-radius: 19px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); }
.why-item b { display: block; color: #9ee684; margin-bottom: 7px; }
.why-item p { color: #c9d5df; font-size: .92rem; }

.cta-panel { background: linear-gradient(105deg, #086caf, #075594); color: white; border-radius: 30px; padding: 54px; display: flex; justify-content: space-between; align-items: center; gap: 40px; box-shadow: var(--shadow); }
.cta-panel h2 { max-width: 700px; font-size: clamp(2rem,4vw,3.2rem); }

.page-hero {
  min-height: 540px; padding: 185px 0 92px; display: grid; align-items: center;
  background: linear-gradient(120deg,#06172f,#0a5590); color: white;
  position: relative; overflow: hidden;
}
.page-hero::after { content: ""; position: absolute; width: 520px; height: 520px; right: -120px; bottom: -290px; border-radius: 50%; border: 80px solid rgba(73,173,42,.2); }
.page-hero h1 { font-size: clamp(2.8rem, 6vw, 5rem); max-width: 900px; margin-top: 12px; }
.page-hero p { max-width: 670px; margin-top: 20px; color: #d5e5f0; font-size: 1.1rem; }
.detail-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.detail-card { border: 1px solid var(--line); padding: 34px; border-radius: 22px; }
.detail-card .service-num { margin-bottom: 20px; }
.detail-card ul { padding-left: 18px; color: var(--muted); }
.detail-card li { margin: 7px 0; }

.contact-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 60px; }
.contact-list { display: grid; gap: 16px; margin-top: 34px; }
.contact-card { border: 1px solid var(--line); border-radius: 18px; padding: 20px; }
.contact-card b { color: var(--blue); display: block; margin-bottom: 3px; }
.form { background: var(--cream); border-radius: 24px; padding: 36px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 800; font-size: .86rem; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #d6e0d9; background: white; border-radius: 12px; padding: 14px; outline: 0; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(8,108,175,.1); }
.form-note { color: var(--muted); font-size: .8rem; margin-top: 16px; }
.success { display: none; margin-top: 18px; padding: 14px; border-radius: 12px; background: #e7f7df; color: #256814; font-weight: 700; }

.about-hold { text-align: center; max-width: 760px; margin: auto; }
.about-mark { width: 92px; height: 92px; margin: 0 auto 26px; border-radius: 28px; display: grid; place-items: center; background: #eaf6e6; color: var(--green); font-size: 2.6rem; font-weight: 900; }
.founder-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: center; }
.founder-photo {
  position: relative; max-width: 490px; border-radius: 28px; overflow: hidden;
  box-shadow: var(--shadow); background: #d8c8b8;
}
.founder-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; }
.founder-badge {
  position: absolute; left: 22px; right: 22px; bottom: 22px; padding: 18px 20px;
  border-radius: 17px; color: white; background: rgba(6,19,38,.9); backdrop-filter: blur(12px);
}
.founder-badge strong { display: block; font-size: 1.08rem; }
.founder-badge span { color: #a9e990; font-size: .85rem; font-weight: 750; }
.founder-copy h2 { margin: 12px 0 24px; }
.founder-quote {
  margin: 26px 0; padding: 26px 28px; border-left: 4px solid var(--orange);
  border-radius: 0 18px 18px 0; background: var(--cream); color: #34465a;
  font-size: 1.08rem;
}
.founder-quote-label {
  display: block; margin-bottom: 12px; color: var(--blue); font-size: .72rem;
  font-weight: 900; letter-spacing: .13em; line-height: 1.3; text-transform: uppercase;
}
.vision-section { background: var(--navy); color: white; position: relative; overflow: hidden; }
.vision-section::after {
  content: ""; position: absolute; width: 520px; height: 520px; right: -260px; bottom: -280px;
  border-radius: 50%; border: 85px solid rgba(73,173,42,.16);
}
.vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; position: relative; z-index: 2; }
.vision-card { padding: 40px; border: 1px solid rgba(255,255,255,.12); border-radius: 24px; background: rgba(255,255,255,.055); }
.vision-card .eyebrow { margin-bottom: 18px; }
.vision-card h2 { font-size: clamp(1.75rem,3vw,2.5rem); margin-bottom: 18px; }
.vision-card p { color: #c9d6e2; font-size: 1.03rem; }
.reason-list { display: grid; gap: 15px; margin-top: 24px; }
.reason { display: grid; grid-template-columns: 38px 1fr; gap: 13px; align-items: start; }
.reason i {
  width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px;
  background: rgba(255,143,28,.15); color: var(--orange); font-style: normal; font-weight: 900;
}
.promise-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; margin-top: 36px; }
.promise-item { padding: 23px 18px; border-radius: 18px; background: var(--cream); border: 1px solid var(--line); font-weight: 820; }
.promise-item span { display: block; color: var(--orange); font-size: 1.25rem; margin-bottom: 9px; }
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 46px; }
.audience-card { padding: 34px; border-radius: 24px; border: 1px solid var(--line); }
.audience-card h3 { font-size: 1.55rem; margin-bottom: 18px; }
.audience-card ul { margin: 0; padding-left: 20px; color: var(--muted); }
.audience-card li { margin: 8px 0; }

footer { background: #061326; color: #c7d3df; padding: 62px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr .9fr; gap: 60px; }
.footer-logo { width: 250px; height: 118px; overflow: visible; }
.footer-logo img {
  width: 100%; height: 100%; object-fit: contain; object-position: left center;
  filter: drop-shadow(0 5px 12px rgba(0,0,0,.3));
}
footer h3 { color: white; font-size: 1rem; margin-bottom: 18px; }
footer p { margin-top: 18px; max-width: 420px; }
.footer-links { display: grid; gap: 10px; }
.footer-links a:hover { color: #9ee684; }
.copyright { border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; margin-top: 48px; font-size: .82rem; display: flex; justify-content: space-between; gap: 20px; }

@media (max-width: 900px) {
  .nav-links { position: absolute; top: 98px; left: 20px; right: 20px; padding: 24px; border-radius: 18px; display: none; flex-direction: column; align-items: stretch; background: white; color: var(--ink); box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .menu-btn { display: block; }
  .hero { min-height: 760px; background-position: 64% center; }
  .hero::before { background: linear-gradient(90deg,rgba(3,13,28,.94),rgba(3,13,28,.64)); }
  .hero-content { width: 100%; transform: translateY(-18px); }
  .quick-grid, .service-grid { grid-template-columns: 1fr; }
  .pillar-grid { grid-template-columns: repeat(2,1fr); }
  .architecture-shell { grid-template-columns: 1fr; }
  .client-center { width: 150px; justify-self: center; }
  .legacy-grid, .hub-feature-card, .hub-intro-grid { grid-template-columns: 1fr; }
  .hub-feature-visual { padding-top: 0; }
  .hub-journey { grid-template-columns: repeat(2,1fr); }
  .quick-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .section-head, .intro-grid, .why-grid, .contact-layout, .founder-grid { grid-template-columns: 1fr; }
  .vision-grid { grid-template-columns: 1fr; }
  .promise-grid { grid-template-columns: repeat(2,1fr); }
  .story-visual { min-height: 430px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .container { width: min(100% - 28px, 1160px); }
  .section { padding: 72px 0; }
  .nav { height: 86px; }
  .brand { width: 205px; height: 76px; }
  .nav-links { top: 86px; }
  .page-hero { min-height: 500px; padding: 155px 0 72px; }
  .hero { min-height: 800px; background-position: 61% center; }
  .hero h1 { font-size: 2.75rem; }
  .hero-content { transform: translateY(-8px); padding-top: 78px; }
  .trust-row { gap: 10px; flex-direction: column; margin-top: 25px; }
  .quick-strip { margin-top: -25px; }
  .principles, .why-list, .detail-grid, .form-grid, .audience-grid, .pillar-grid, .hub-zone-grid, .hub-journey { grid-template-columns: 1fr; }
  .architecture-shell { padding: 20px; }
  .hub-feature-copy { padding: 38px 26px; }
  .hub-feature-visual { padding: 0 26px 34px; grid-template-columns: 1fr; }
  .hub-mini-zone:nth-child(2), .hub-mini-zone:nth-child(3) { transform: none; }
  .hub-orbit { min-height: 410px; }
  .hub-orbit::before { width: 260px; height: 260px; }
  .hub-orbit::after { width: 350px; height: 350px; }
  .orbit-label.two { right: 12px; }
  .orbit-label.four { left: 12px; }
  .promise-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .story-visual { padding: 30px; }
  .big-number { font-size: 5.7rem; }
  .cta-panel { padding: 34px 26px; flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .copyright { flex-direction: column; }
}
