:root {
    --bg: #ffffff;
    --soft: #f5f8fa;
    --soft-2: #eef4f5;
    --text: #102027;
    --muted: #60727c;
    --line: #dbe5e8;
    --primary: #0f766e;
    --primary-2: #14b8a6;
    --dark: #0d1f26;
    --shadow: 0 24px 70px rgba(15, 42, 51, .12);
    --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--text); background: var(--bg); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.65; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.container { width: min(1160px, calc(100% - 36px)); margin-inline: auto; }
.container.narrow { width: min(780px, calc(100% - 36px)); }
.section { padding: 84px 0; }
.compact-section { padding: 24px 0; }
.muted-section { background: var(--soft); }
.dark-section { background: var(--dark); color: white; }
.kicker { display: inline-flex; align-items: center; width: fit-content; padding: 7px 10px; border: 1px solid #b9e4df; border-radius: 999px; background: #e9fbf8; color: #0a655e; font-size: 12px; font-weight: 800; letter-spacing: .02em; }
.kicker.dark { color: #9cf0e7; border-color: rgba(156,240,231,.22); background: rgba(20,184,166,.12); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.1; letter-spacing: -.03em; }
h1 { font-size: clamp(42px, 6vw, 72px); }
h2 { font-size: clamp(30px, 4vw, 48px); }
p { color: var(--muted); }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 18px; border: 1px solid transparent; border-radius: 14px; font-weight: 800; transition: .18s ease; }
.button:hover { transform: translateY(-1px); }
.button.primary { color: white; background: linear-gradient(135deg, var(--primary), var(--primary-2)); box-shadow: 0 14px 30px rgba(20,184,166,.22); }
.button.secondary { background: white; border-color: var(--line); }
.button.small { min-height: 40px; padding: 0 14px; border-radius: 12px; font-size: 13px; }
.button.full { width: 100%; }
.text-link { font-size: 13px; font-weight: 800; color: var(--primary); }
.text-link.centered { display: block; margin-top: 14px; text-align: center; }
.arrow-link { font-weight: 800; color: var(--primary); }
.arrow-link.light { color: #8ee9df; }

.site-header { position: sticky; top: 0; z-index: 100; height: 66px; border-bottom: 1px solid rgba(219,229,232,.9); background: rgba(255,255,255,.94); backdrop-filter: blur(16px); }
.nav-bar { height: 66px; display: flex; align-items: center; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 10px; margin-right: auto; }
.brand-symbol { width: 30px; height: 30px; display: grid; place-items: center; color: white; border-radius: 9px; background: linear-gradient(135deg, var(--primary), var(--primary-2)); font-size: 12px; }
.brand span:last-child { display: flex; flex-direction: column; line-height: 1.15; }
.brand strong { font-size: 15px; letter-spacing: -.02em; }
.brand small { margin-top: 3px; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.brand.light strong { color: white; }.brand.light small { color: #8fa5ae; }
.desktop-nav { display: flex; align-items: center; gap: 2px; }
.desktop-nav > a, .nav-dropdown-button { border: 0; background: transparent; padding: 9px 10px; border-radius: 10px; color: #40545d; font-size: 13px; font-weight: 750; cursor: pointer; }
.desktop-nav > a:hover, .nav-dropdown-button:hover, .desktop-nav .active { color: var(--primary); background: #edf9f7; }
.nav-dropdown { position: relative; }
.nav-dropdown-button { display: flex; gap: 5px; align-items: center; }
.nav-dropdown.open .nav-dropdown-button { color: var(--primary); background: #edf9f7; }
.dropdown-panel { position: fixed; left: 50%; top: 76px; width: min(1080px, calc(100vw - 36px)); padding: 16px; display: grid; grid-template-columns: 220px 1fr; gap: 16px; opacity: 0; visibility: hidden; transform: translate(-50%, -8px); background: white; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); transition: .16s ease; }
.nav-dropdown.open .dropdown-panel { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.dropdown-summary { padding: 18px; border-radius: 17px; color: white; background: var(--dark); }
.dropdown-summary > span { color: #8de7dc; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.dropdown-summary strong { display: block; margin: 9px 0; font-size: 17px; line-height: 1.2; }
.dropdown-summary p { color: #aebfc6; font-size: 12px; line-height: 1.5; }
.dropdown-summary a { color: #95efe4; font-size: 12px; font-weight: 800; }
.dropdown-groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.dropdown-groups section { padding: 8px; }
.dropdown-groups h3 { margin: 4px 8px 9px; color: #6b7e87; font-size: 11px; text-transform: uppercase; letter-spacing: .05em; }
.dropdown-groups a { display: flex; gap: 9px; align-items: center; padding: 9px; border-radius: 12px; }
.dropdown-groups a:hover { background: #eef9f7; }
.mini-icon { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; background: #e5f5f3; color: var(--primary); font-weight: 900; }
.dropdown-groups a > span:last-child { display: flex; flex-direction: column; line-height: 1.25; }
.dropdown-groups strong { font-size: 12px; }.dropdown-groups small { margin-top: 2px; color: var(--muted); font-size: 10px; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: white; border-radius: 12px; }
.menu-toggle span { display: block; width: 17px; height: 2px; margin: 4px auto; background: var(--text); }

.mobile-overlay { position: fixed; inset: 0; z-index: 120; background: rgba(5,17,22,.52); opacity: 0; visibility: hidden; transition: .2s; }
.mobile-overlay.open { opacity: 1; visibility: visible; }
.mobile-menu { position: fixed; inset: 0 0 0 auto; z-index: 130; width: min(370px, 88vw); padding: 18px; display: flex; flex-direction: column; background: white; transform: translateX(100%); transition: .22s ease; overflow-y: auto; }
.mobile-menu.open { transform: translateX(0); }
.mobile-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 15px; border-bottom: 1px solid var(--line); }
.mobile-head .brand { margin: 0; }.mobile-head button { width: 38px; height: 38px; border: 0; border-radius: 10px; background: var(--soft); font-size: 23px; }
.mobile-menu nav { display: flex; flex-direction: column; padding: 12px 0 18px; }
.mobile-menu nav > a, .mobile-accordion-button { padding: 12px 4px; border: 0; border-bottom: 1px solid #edf1f3; background: transparent; text-align: left; font-weight: 750; }
.mobile-accordion-button { display: flex; justify-content: space-between; }
.mobile-accordion { display: none; padding: 8px 0 12px 14px; }
.mobile-accordion.open { display: flex; flex-direction: column; }
.mobile-accordion strong { margin-top: 12px; color: var(--muted); font-size: 11px; text-transform: uppercase; }
.mobile-accordion a { padding: 7px 0; font-size: 14px; }.mobile-accordion .all-link { color: var(--primary); font-weight: 800; }
.mobile-menu > .button { margin-top: auto; }

.home-hero { padding: 96px 0 78px; background: radial-gradient(circle at 10% 10%, rgba(20,184,166,.13), transparent 34%), radial-gradient(circle at 90% 0%, rgba(245,158,11,.12), transparent 26%), linear-gradient(180deg,#fff,#f8fbfb); }
.home-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 52px; }
.home-hero h1 { max-width: 760px; margin: 18px 0; }
.home-hero p { max-width: 690px; font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 27px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 22px; color: #546a73; font-size: 12px; font-weight: 700; }
.overview-card { padding: 20px; border: 1px solid var(--line); border-radius: 28px; background: rgba(255,255,255,.92); box-shadow: var(--shadow); }
.overview-head { display: flex; align-items: center; gap: 9px; padding: 5px 4px 17px; }.overview-head small { margin-left: auto; color: var(--muted); }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 7px rgba(34,197,94,.12); }
.overview-metrics { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.overview-metrics article { padding: 16px; border: 1px solid #e5ecef; border-radius: 17px; background: #fafcfd; }
.overview-metrics span, .overview-metrics small { display: block; color: var(--muted); font-size: 11px; }.overview-metrics strong { display: block; margin: 4px 0; font-size: 20px; }
.overview-note { margin-top: 11px; padding: 17px; border-radius: 17px; background: var(--dark); color: white; }.overview-note p { margin: 5px 0 0; color: #b4c4ca; font-size: 13px; }
.audience-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 22px; color: #61747d; font-size: 12px; }.audience-strip span { text-transform: uppercase; letter-spacing: .06em; }.audience-strip strong { color: #263b44; }
.section-heading { max-width: 730px; margin-bottom: 30px; }.section-heading h2 { margin: 13px 0 10px; }.section-heading p { font-size: 16px; }.section-heading.split { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }.section-heading.light p { color: #afc0c7; }
.cards-grid { display: grid; gap: 16px; }.cards-grid.three { grid-template-columns: repeat(3,1fr); }.cards-grid.four { grid-template-columns: repeat(4,1fr); }
.service-card { display: flex; flex-direction: column; min-height: 100%; padding: 22px; border: 1px solid var(--line); border-top: 4px solid var(--primary); border-radius: var(--radius); background: white; transition: .18s; }.service-card:hover { transform: translateY(-3px); box-shadow: 0 18px 46px rgba(25,55,65,.1); }
.service-card-top { display: flex; align-items: center; gap: 10px; }.service-card-top small { color: var(--muted); font-weight: 750; }.service-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: #e9f8f6; color: var(--primary); font-weight: 900; }
.service-card h3 { margin: 18px 0 9px; font-size: 24px; }.service-card p { font-size: 14px; }.mini-list { margin: 4px 0 22px; padding: 0; list-style: none; }.mini-list li { padding: 6px 0; border-bottom: 1px solid #edf1f3; font-size: 13px; }.mini-list li::before { content: "✓"; margin-right: 8px; color: var(--primary); font-weight: 900; }
.card-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 14px; border-top: 1px solid var(--line); }.card-footer strong { font-size: 12px; }.card-footer a { color: var(--primary); font-size: 12px; font-weight: 850; }
.accent-gold { border-top-color: #d99a16; }.accent-blue { border-top-color: #3b82f6; }.accent-violet { border-top-color: #8b5cf6; }.accent-green { border-top-color: #22a06b; }.accent-slate { border-top-color: #64748b; }.accent-orange { border-top-color: #ea7a20; }
.two-col { display: grid; grid-template-columns: repeat(2,1fr); gap: 50px; align-items: start; }.value-grid h2 { margin-top: 14px; }.value-list { display: grid; gap: 10px; }.value-list article { display: grid; grid-template-columns: 42px 1fr; gap: 13px; padding: 17px; border: 1px solid var(--line); border-radius: 16px; }.value-list article > span { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 10px; background: #eaf8f6; color: var(--primary); font-size: 11px; font-weight: 900; }.value-list h3 { margin: 2px 0 5px; }.value-list p { margin: 0; font-size: 13px; }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }.steps-grid article { padding: 20px; border: 1px solid rgba(255,255,255,.11); border-radius: 18px; background: rgba(255,255,255,.04); }.steps-grid span { color: #7ee5da; font-size: 11px; font-weight: 900; }.steps-grid h3 { margin: 22px 0 8px; }.steps-grid p { margin: 0; color: #aec0c7; font-size: 13px; }
.cta-panel { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 34px; border: 1px solid var(--line); border-radius: 26px; background: linear-gradient(135deg,#f4fbfa,#fff8ea); }.cta-panel h2 { max-width: 760px; margin: 13px 0 0; }.cta-panel p { margin-bottom: 0; }

.page-hero { padding: 88px 0 74px; text-align: center; background: radial-gradient(circle at 20% 0%, rgba(20,184,166,.12), transparent 35%), var(--soft); }.page-hero .kicker { margin-inline: auto; }.page-hero h1 { margin: 18px 0; font-size: clamp(40px,5.5vw,66px); }.page-hero p { max-width: 700px; margin: 0 auto; font-size: 17px; }.page-hero .hero-actions { justify-content: center; }
.category-block + .category-block { margin-top: 76px; }.category-heading { margin-bottom: 24px; }.category-heading h2 { max-width: 760px; margin: 12px 0 0; font-size: 34px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 6px; margin: 14px 0; }.tag-row span { padding: 6px 8px; border: 1px solid #dce7e9; border-radius: 999px; background: #f7fafb; color: #60747d; font-size: 10px; font-weight: 750; }
.service-detail-hero { padding: 86px 0; background: #f7fbfb; }.service-detail-grid { display: grid; grid-template-columns: 1fr 360px; gap: 54px; align-items: center; }.service-detail-hero h1 { margin: 10px 0 16px; }.service-detail-hero p { max-width: 720px; font-size: 18px; }.large-icon { width: 58px; height: 58px; display: grid; place-items: center; margin-top: 18px; border-radius: 18px; color: white; background: var(--primary); font-size: 24px; font-weight: 900; }
.scope-card { padding: 25px; border: 1px solid var(--line); border-radius: 22px; background: white; box-shadow: var(--shadow); }.scope-card > small { display: block; color: var(--muted); }.scope-card > strong { display: block; margin: 5px 0 18px; font-size: 25px; }.scope-card hr { border: 0; border-top: 1px solid var(--line); }.scope-card p { margin: 12px 0 0; font-size: 12px; }
.detail-intro { align-items: start; }.check-list.large { display: grid; gap: 10px; }.check-list.large > div { display: grid; grid-template-columns: 35px 1fr; gap: 12px; align-items: start; padding: 15px; border: 1px solid var(--line); border-radius: 15px; }.check-list.large span { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 10px; background: #fff3dc; color: #a66000; font-weight: 900; }.check-list.large p { margin: 4px 0 0; color: #3e535c; }
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }.feature-grid article { padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: white; }.feature-grid article > span { color: var(--primary); font-size: 11px; font-weight: 900; }.feature-grid h3 { margin: 25px 0 8px; font-size: 19px; }.feature-grid p { margin: 0; font-size: 13px; }
.output-grid { gap: 18px; }.output-card { padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: white; }.output-card.dark { color: white; background: var(--dark); }.output-card small { color: var(--primary); font-weight: 850; }.output-card.dark small { color: #80e3d8; }.output-card h3 { margin: 9px 0 20px; font-size: 27px; }
.check-list-simple { margin: 0; padding: 0; list-style: none; }.check-list-simple li { position: relative; padding: 8px 0 8px 26px; border-bottom: 1px solid rgba(219,229,232,.7); font-size: 14px; }.check-list-simple li::before { content: "✓"; position: absolute; left: 0; color: var(--primary); font-weight: 900; }.output-card.dark .check-list-simple li { border-color: rgba(255,255,255,.1); }.output-card.dark .check-list-simple li::before { color: #7de6da; }

.pricing-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }.pricing-card { position: relative; display: flex; flex-direction: column; padding: 23px; border: 1px solid var(--line); border-radius: 22px; background: white; }.pricing-card.featured { border: 2px solid var(--primary); box-shadow: var(--shadow); }.popular { position: absolute; top: -12px; right: 18px; padding: 5px 9px; border-radius: 999px; background: var(--primary); color: white; font-size: 10px; font-weight: 850; }.pricing-card h2 { margin: 8px 0; font-size: 24px; }.pricing-card > p { min-height: 46px; font-size: 13px; }.price { display: flex; align-items: end; gap: 5px; padding: 16px 0; }.price strong { font-size: 28px; }.price span { padding-bottom: 4px; color: var(--muted); font-size: 12px; }.pricing-card h3 { margin: 7px 0; font-size: 13px; }.pricing-card .check-list-simple { margin-bottom: 18px; }.not-included { display: flex; flex-direction: column; gap: 4px; margin: auto 0 18px; padding-top: 13px; border-top: 1px solid var(--line); }.not-included strong { font-size: 11px; }.not-included span { color: var(--muted); font-size: 11px; }
.factor-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }.factor-grid article { padding: 17px; border: 1px solid var(--line); border-radius: 15px; background: white; }.factor-grid p { margin: 5px 0 0; font-size: 12px; }
.result-stack { display: grid; gap: 24px; }.result-card { padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: white; box-shadow: 0 16px 50px rgba(15,42,51,.06); }.result-head { display: flex; justify-content: space-between; gap: 20px; }.result-head h2 { margin: 12px 0 0; }.sample-badge { height: fit-content; padding: 6px 9px; border-radius: 999px; background: #fff4d6; color: #9a6100; font-size: 10px; font-weight: 850; }.result-metrics { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin: 24px 0; }.result-metrics div { padding: 16px; border: 1px solid var(--line); border-radius: 15px; background: var(--soft); }.result-metrics strong, .result-metrics span { display: block; }.result-metrics strong { font-size: 21px; }.result-metrics span { color: var(--muted); font-size: 11px; }.result-bottom { display: grid; grid-template-columns: 1fr 320px; gap: 24px; }.report-preview { padding: 19px; border-radius: 17px; color: white; background: var(--dark); }.report-preview > span { color: #7fe5da; font-size: 10px; font-weight: 800; }.report-preview p { color: #c3d1d6; font-size: 12px; }.report-lines { display: grid; gap: 8px; }.report-lines i { display: block; height: 7px; border-radius: 99px; background: rgba(255,255,255,.14); }.report-lines i:nth-child(2) { width: 75%; }.report-lines i:nth-child(3) { width: 89%; }.report-lines i:nth-child(4) { width: 58%; }.report-types { display: grid; gap: 10px; }.report-types article { padding: 19px; border: 1px solid rgba(255,255,255,.12); border-radius: 17px; }.report-types p { margin: 8px 0 0; color: #b2c2c8; }
.story-grid p { font-size: 16px; }.principles { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }.principles article { padding: 18px; border: 1px solid var(--line); border-radius: 16px; }.principles span { color: var(--primary); font-size: 11px; font-weight: 900; }.principles h3 { margin: 20px 0 6px; }.principles p { margin: 0; font-size: 12px; }.audience-card { padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: white; }.audience-card p { min-height: 95px; font-size: 13px; }.audience-card > strong { font-size: 11px; }
.faq-list { display: grid; gap: 10px; }.faq-item { border: 1px solid var(--line); border-radius: 16px; background: white; overflow: hidden; }.faq-item button { width: 100%; display: flex; justify-content: space-between; gap: 20px; padding: 18px; border: 0; background: white; text-align: left; font-weight: 800; cursor: pointer; }.faq-item button i { font-style: normal; color: var(--primary); }.faq-item > div { display: none; padding: 0 18px 18px; }.faq-item.open > div { display: block; }.faq-item p { margin: 0; }
.assessment-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; align-items: start; }.assessment-form, .assessment-result { padding: 25px; border: 1px solid var(--line); border-radius: 22px; background: white; }.form-step { display: grid; grid-template-columns: 40px 1fr; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); }.form-step > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: #eaf8f6; color: var(--primary); font-size: 11px; font-weight: 900; }.form-step label { display: block; margin-bottom: 8px; font-weight: 800; }.form-step select { width: 100%; padding: 12px; border: 1px solid var(--line); border-radius: 12px; background: white; }.assessment-form .button { margin-top: 20px; }.assessment-result { min-height: 440px; background: var(--soft); }.assessment-result.has-result { background: white; box-shadow: var(--shadow); }.assessment-result h2 { margin: 12px 0; }.recommend-note { margin: 16px 0; padding: 13px; border-radius: 12px; background: #fff6df; color: #7f570c; font-size: 13px; }.result-actions { display: flex; gap: 9px; margin-top: 20px; }.empty-result { display: grid; min-height: 390px; place-items: center; align-content: center; text-align: center; }.empty-result > span { width: 55px; height: 55px; display: grid; place-items: center; border-radius: 18px; background: white; color: var(--primary); font-size: 24px; font-weight: 900; }.empty-result h2 { margin: 17px 0 7px; font-size: 24px; }.empty-result p { margin: 0; }
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 45px; }.contact-info h2 { margin: 14px 0; }.contact-cards { display: grid; gap: 9px; margin-top: 25px; }.contact-cards article { padding: 16px; border: 1px solid var(--line); border-radius: 14px; }.contact-cards small, .contact-cards strong, .contact-cards a { display: block; }.contact-cards small { color: var(--muted); }.contact-cards a, .contact-cards strong { margin-top: 4px; }.contact-form, .success-box { padding: 25px; border: 1px solid var(--line); border-radius: 22px; background: white; box-shadow: var(--shadow); }.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }.form-grid label { display: grid; gap: 7px; font-size: 12px; font-weight: 800; }.form-grid input, .form-grid select, .form-grid textarea { width: 100%; padding: 12px; border: 1px solid var(--line); border-radius: 11px; background: white; }.full-span { grid-column: 1/-1; }.contact-form .button { margin-top: 16px; }.form-note { margin: 12px 0 0; font-size: 10px; }.success-box { text-align: center; }.success-box > span { width: 54px; height: 54px; display: grid; place-items: center; margin: 0 auto 16px; border-radius: 50%; background: #e6f8f4; color: var(--primary); font-size: 25px; font-weight: 900; }.error-box { margin-bottom: 12px; padding: 12px 15px; border: 1px solid #f5c8c8; border-radius: 12px; background: #fff0f0; }.error-box p { margin: 0; color: #9d2929; font-size: 12px; }
.site-footer { padding: 64px 0 20px; color: white; background: #09191f; }.footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3,1fr); gap: 35px; }.footer-brand p { max-width: 380px; color: #8fa4ac; font-size: 13px; }.footer-grid h3 { margin: 0 0 14px; color: #7fe2d7; font-size: 11px; text-transform: uppercase; letter-spacing: .06em; }.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 9px; }.footer-grid a, .footer-grid span { color: #b7c6cc; font-size: 12px; }.footer-grid a:hover { color: white; }.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 45px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); color: #758b94; font-size: 11px; }

@media (max-width: 1000px) {
    .desktop-nav, .nav-actions { display: none; }.menu-toggle { display: block; }
    .home-hero-grid, .service-detail-grid, .two-col, .contact-layout { grid-template-columns: 1fr; }
    .home-hero-grid { gap: 32px; }.service-detail-grid { gap: 30px; }.scope-card { max-width: 520px; }
    .cards-grid.three, .feature-grid { grid-template-columns: repeat(2,1fr); }.cards-grid.four, .pricing-grid { grid-template-columns: repeat(2,1fr); }
    .steps-grid { grid-template-columns: repeat(2,1fr); }.result-bottom { grid-template-columns: 1fr; }.result-metrics { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 680px) {
    .container, .container.narrow { width: min(100% - 24px, 1160px); }.section { padding: 62px 0; }
    .home-hero, .page-hero, .service-detail-hero { padding: 64px 0; }
    h1 { font-size: 43px; }.home-hero p, .service-detail-hero p { font-size: 16px; }
    .overview-metrics, .cards-grid.three, .cards-grid.four, .feature-grid, .pricing-grid, .steps-grid, .principles, .factor-grid, .assessment-layout, .form-grid { grid-template-columns: 1fr; }
    .full-span { grid-column: auto; }.section-heading.split, .cta-panel, .result-head, .footer-bottom { align-items: flex-start; flex-direction: column; }
    .cta-panel { padding: 24px; }.service-card { padding: 19px; }.result-card { padding: 19px; }.result-metrics { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }.footer-brand { grid-column: 1/-1; }.audience-card p { min-height: auto; }
}
@media (max-width: 430px) {
    .hero-actions, .result-actions { flex-direction: column; }.hero-actions .button, .result-actions .button { width: 100%; }
    .result-metrics { grid-template-columns: 1fr 1fr; }.footer-grid { grid-template-columns: 1fr; }.footer-brand { grid-column: auto; }
}


/* SiteGuard detailed service */
.service-process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.service-process-grid article { position: relative; padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: white; }
.service-process-grid article > span { display: inline-grid; width: 34px; height: 34px; place-items: center; border-radius: 10px; background: #e7f8f5; color: var(--primary); font-size: 11px; font-weight: 900; }
.service-process-grid h3 { margin: 26px 0 7px; font-size: 17px; }
.service-process-grid p { margin: 0; font-size: 12px; line-height: 1.55; }
.responsive-table { overflow-x: auto; border: 1px solid var(--line); border-radius: 20px; background: white; }
.service-table { width: 100%; border-collapse: collapse; min-width: 720px; }
.service-table th, .service-table td { padding: 16px 18px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.service-table th { background: #f4f8f8; color: #53666e; font-size: 11px; text-transform: uppercase; letter-spacing: .05em; }
.service-table td { color: var(--muted); font-size: 13px; }
.service-table td strong { color: var(--text); }
.service-table tr:last-child td { border-bottom: 0; }
.siteguard-incident-layout { align-items: start; }
.incident-flow { display: grid; gap: 10px; }
.incident-flow article { display: grid; grid-template-columns: 42px 1fr; gap: 13px; padding: 16px; border: 1px solid var(--line); border-radius: 16px; background: white; }
.incident-flow article > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; background: var(--dark); color: #8ee9df; font-size: 11px; font-weight: 900; }
.incident-flow h3 { margin: 2px 0 5px; font-size: 15px; }
.incident-flow p { margin: 0; font-size: 12px; }
.onboarding-layout { align-items: start; }
.numbered-list { margin: 0; padding: 0; list-style: none; counter-reset: onboarding; display: grid; gap: 9px; }
.numbered-list li { counter-increment: onboarding; position: relative; min-height: 49px; padding: 14px 14px 14px 56px; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; color: #d5e0e4; background: rgba(255,255,255,.04); font-size: 13px; }
.numbered-list li::before { content: counter(onboarding); position: absolute; left: 13px; top: 10px; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; background: rgba(20,184,166,.16); color: #8ee9df; font-size: 11px; font-weight: 900; }
.siteguard-plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items: stretch; }
.siteguard-plan { position: relative; display: flex; flex-direction: column; padding: 24px; border: 1px solid var(--line); border-radius: 21px; background: white; }
.siteguard-plan.featured { border-color: #69cfc5; box-shadow: 0 20px 55px rgba(20,184,166,.13); }
.siteguard-plan > small { color: var(--muted); }
.siteguard-plan h3 { margin: 12px 0 7px; font-size: 24px; }
.siteguard-plan > strong { margin-bottom: 20px; color: var(--primary); font-size: 18px; }
.siteguard-plan .check-list-simple { margin-bottom: 22px; }
.siteguard-plan .button { margin-top: auto; }
.plan-badge { position: absolute; top: 14px; right: 14px; padding: 6px 8px; border-radius: 999px; background: #e7f8f5; color: #08766d; font-size: 9px; font-weight: 900; text-transform: uppercase; }
.service-note { margin: 18px auto 0; max-width: 820px; text-align: center; font-size: 11px; }
.scope-boundary-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 22px; }
.scope-boundary-grid article { padding: 22px; border: 1px solid var(--line); border-radius: 19px; background: white; }
.scope-boundary-grid h3 { margin: 14px 0; }
.scope-status { display: inline-flex; padding: 6px 9px; border-radius: 999px; font-size: 10px; font-weight: 900; text-transform: uppercase; }
.scope-status.included { background: #e8f8ee; color: #18743b; }
.scope-status.excluded { background: #fff0e7; color: #9b481c; }
@media (max-width: 1000px) {
    .service-process-grid { grid-template-columns: repeat(3, 1fr); }
    .siteguard-plan-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
    .service-process-grid, .scope-boundary-grid { grid-template-columns: 1fr; }
    .service-process-grid article { padding: 18px; }
}
