:root {
  --navy: #00235a;
  --navy-2: #061f4d;
  --blue: #0069d9;
  --cyan: #00affd;
  --deep-blue: #1839dd;
  --violet: #590cfd;
  --white: #ffffff;
  --surface: #f4f7fb;
  --surface-2: #eaf2fb;
  --text: #102a52;
  --muted: #526780;
  --line: #d9e4f1;
  --success: #087f5b;
  --error: #b42318;
  --focus: #0051b5;
  --shadow: 0 22px 55px rgba(0, 35, 90, .1);
  --radius: 18px;
  --gradient: linear-gradient(135deg, var(--cyan), var(--blue) 55%, var(--violet));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--navy); font-family: Montserrat, Arial, sans-serif; line-height: 1.1; }

.page-shell { width: min(1180px, calc(100% - 44px)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 1000; padding: 10px 14px; background: var(--navy); color: white; transform: translateY(-160%); }
.skip-link:focus { transform: none; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(0, 35, 90, .1);
  backdrop-filter: blur(14px);
}
.header-inner { width: min(1280px, calc(100% - 44px)); min-height: 84px; margin-inline: auto; display: flex; align-items: center; gap: 30px; }
.brand { flex: 0 0 auto; }
.brand-logo { width: 172px; height: auto; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); }
.main-nav a { position: relative; padding: 29px 0 27px; color: var(--navy); font-size: 13px; font-weight: 700; }
.main-nav a::after { content: ""; position: absolute; right: 100%; bottom: 21px; left: 0; height: 2px; background: var(--blue); transition: right .2s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }
.menu-toggle { display: none; width: 44px; height: 44px; margin-left: auto; padding: 10px; border: 0; border-radius: 8px; background: var(--surface); cursor: pointer; }
.menu-toggle > span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--navy); transition: .2s ease; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 52px; padding: 0 24px; border: 1px solid transparent; border-radius: 9px;
  font-family: Inter, Arial, sans-serif; font-size: 14px; font-weight: 800; text-align: center;
  cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0, 35, 90, .16); }
.button:disabled { opacity: .68; cursor: not-allowed; transform: none; box-shadow: none; }
.button-primary { background: var(--blue); color: white; }
.button-primary:hover, .button-primary:focus-visible { background: #005bb8; }
.button-secondary { border-color: var(--blue); background: white; color: var(--blue); }
.button-secondary:hover, .button-secondary:focus-visible { color: var(--blue); }
.button-accent { background: linear-gradient(135deg, var(--cyan), var(--blue)); color: var(--navy); }
.button-small { min-height: 44px; padding-inline: 18px; font-size: 12px; }
.header-cta { margin-left: 8px; color: white; background: var(--blue); white-space: nowrap; }

.hero { position: relative; overflow: hidden; padding: 92px 0 82px; background: linear-gradient(180deg, #fff, #f8fbff); }
.hero::before { content: ""; position: absolute; width: 520px; height: 520px; right: -280px; top: -180px; border-radius: 50%; background: radial-gradient(circle, rgba(0, 175, 253, .15), transparent 68%); }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(420px, .97fr); gap: clamp(50px, 8vw, 100px); align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow, .section-label { margin-bottom: 18px; color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow::before, .section-label::before { content: ""; display: inline-block; width: 22px; height: 2px; margin: 0 9px 3px 0; background: currentColor; }
.hero h1 { max-width: 740px; margin-bottom: 26px; font-size: clamp(44px, 5.4vw, 72px); letter-spacing: -.055em; }
.hero h1 span { color: var(--blue); }
.hero-lead { max-width: 680px; color: var(--muted); font-size: clamp(17px, 1.5vw, 20px); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 34px; }
.hero-note { margin: 22px 0 0; color: var(--muted); font-size: 13px; }
.hero-note span { margin-right: 7px; color: var(--violet); }

.hero-visual {
  position: relative; min-height: 460px; margin: 0; overflow: hidden;
  border-radius: 24px; background: var(--surface); box-shadow: var(--shadow);
}
.hero-visual::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,.38), transparent 25%);
}
.hero-visual img { width: 100%; height: 100%; min-height: 460px; object-fit: cover; object-position: center; }

.hero-panel { position: relative; min-height: 460px; display: grid; place-items: center; }
.connection-lines { position: absolute; inset: 20px; background-image: radial-gradient(circle, rgba(0, 129, 254, .5) 1.5px, transparent 1.7px); background-size: 36px 36px; mask-image: linear-gradient(135deg, transparent 4%, #000 35%, #000 65%, transparent 96%); }
.dashboard-window { position: relative; width: min(100%, 530px); padding: 18px; border: 1px solid rgba(0, 35, 90, .14); border-radius: 20px; background: rgba(255,255,255,.96); box-shadow: var(--shadow); }
.window-bar { display: flex; align-items: center; gap: 6px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.window-bar span { width: 7px; height: 7px; border-radius: 50%; background: var(--line); }
.window-bar span:first-child { background: var(--cyan); }
.window-bar span:nth-child(2) { background: var(--blue); }
.window-bar span:nth-child(3) { background: var(--violet); }
.window-bar strong { margin-left: auto; color: var(--navy); font-size: 11px; }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; margin: 15px 0; }
.metric-grid div { min-height: 82px; padding: 12px 10px; border-radius: 10px; background: var(--surface); }
.metric-grid span, .metric-grid strong { display: block; }
.metric-grid span { color: var(--muted); font-size: 9px; }
.metric-grid strong { margin-top: 15px; color: var(--navy); font-size: 11px; }
.chart-area { height: 150px; padding: 20px 18px 10px; display: flex; align-items: end; justify-content: space-around; gap: 12px; border-radius: 12px; background: linear-gradient(180deg, #f7fbff, #eef6ff); }
.chart-area span { width: 9%; border-radius: 6px 6px 2px 2px; background: linear-gradient(180deg, var(--cyan), var(--blue)); }
.chart-area span:nth-child(1) { height: 34%; }.chart-area span:nth-child(2) { height: 46%; }.chart-area span:nth-child(3) { height: 42%; }
.chart-area span:nth-child(4) { height: 68%; }.chart-area span:nth-child(5) { height: 59%; }.chart-area span:nth-child(6) { height: 88%; }
.dashboard-footer { display: flex; justify-content: space-between; padding: 13px 4px 0; color: var(--muted); font-size: 10px; }
.dashboard-footer strong { color: var(--blue); letter-spacing: .12em; }

.problem-strip { padding: 42px 0; background: var(--surface); }
.problem-strip h2 { margin-bottom: 32px; text-align: center; font-size: clamp(22px, 2.4vw, 30px); }
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.strip-grid div { display: grid; place-items: center; gap: 12px; min-height: 112px; padding: 16px; border-right: 1px solid var(--line); text-align: center; }
.strip-grid div:last-child { border-right: 0; }
.strip-grid strong { color: var(--navy); font-size: 14px; }
.mini-icon { width: 45px; height: 45px; display: grid; place-items: center; border-radius: 50%; background: white; color: var(--blue); font-size: 20px; font-weight: 800; box-shadow: 0 8px 24px rgba(0,35,90,.08); }
.bi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.mini-icon .bi, .card-icon, .growth-path span i, .investment-modes i, .radio-card i, .next-steps span i, .location-card i, .success-icon i {
  color: var(--blue);
}
.mini-icon .bi { font-size: 28px; }

.section { padding: 100px 0; }
.section-tinted { background: var(--surface); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); gap: clamp(36px, 8vw, 120px); align-items: end; margin-bottom: 54px; }
.section-heading h2 { max-width: 720px; margin: 0; font-size: clamp(36px, 4vw, 57px); letter-spacing: -.045em; }
.section-heading > p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.centered-heading { max-width: 980px; margin-inline: auto; }
.card-grid { display: grid; gap: 18px; }
.four-columns { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.solutions-grid, .solution-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.info-card, .solution-card, .plan-card { position: relative; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 12px 32px rgba(0,35,90,.05); }
.info-card { min-height: 270px; display: flex; flex-direction: column; }
.card-number { margin-bottom: auto; color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.card-icon { width: auto; height: auto; margin-bottom: auto; font-size: 32px; }
.info-card h3, .solution-card h3, .plan-card h3 { margin: 35px 0 13px; font-size: 21px; }
.info-card p, .solution-card p { margin: 0; color: var(--muted); font-size: 14px; }
.inline-message { margin-top: 30px; padding: 23px 28px; display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center; border-radius: 12px; background: var(--navy); color: white; }
.inline-message strong { font-family: Montserrat, Arial, sans-serif; }
.inline-message span { color: #c7d7eb; font-size: 13px; }
.inline-message a { color: var(--cyan); font-size: 13px; font-weight: 800; }

.solution-grid { gap: 16px; }
.solution-card { min-height: 330px; display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.solution-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.solution-icon { width: 60px; height: 60px; display: grid; place-items: center; border-radius: 15px; background: linear-gradient(135deg, #e8f8ff, #edf0ff); color: var(--blue); font-family: Montserrat, Arial, sans-serif; font-size: 13px; font-weight: 800; }
.solution-icon .bi { font-size: 40px; }
.solution-card h3 { margin-top: 34px; }
.solution-card a { margin-top: auto; padding-top: 25px; color: var(--blue); font-size: 13px; font-weight: 800; }
.growth-path { margin: 56px 0 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #bdcde0; }
.growth-path li { position: relative; padding: 35px 26px 0; border-right: 1px solid #bdcde0; }
.growth-path li:last-child { border-right: 0; }
.growth-path span { width: 52px; height: 52px; margin-bottom: 20px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: white; box-shadow: 0 8px 22px rgba(0,35,90,.08); }
.growth-path span .bi { font-size: 24px; }
.step-icon .bi { font-size: 34px; }
.benefit-icon .bi { font-size: 36px; }
.growth-path strong, .growth-path small { display: block; }
.growth-path strong { color: var(--navy); font-family: Montserrat, Arial, sans-serif; font-size: 16px; }
.growth-path small { margin-top: 8px; color: var(--muted); font-size: 12px; line-height: 1.55; }

.plan-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.plan-card { padding: 36px; display: flex; flex-direction: column; }
.plan-icon { width: auto; height: auto; margin-bottom: 22px; font-size: 28px; }
.featured-card { border: 2px solid var(--blue); box-shadow: var(--shadow); }
.plan-tag { align-self: flex-start; margin: 0; padding: 6px 10px; border-radius: 999px; background: #eee8ff; color: var(--violet); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.plan-card h3 { margin: 26px 0 20px; font-size: 25px; }
.plan-card ul { margin: 0 0 32px; padding: 0; list-style: none; color: var(--muted); font-size: 14px; }
.plan-card li { position: relative; padding: 9px 0 9px 24px; }
.plan-card li::before { content: "✓"; position: absolute; left: 0; color: var(--violet); font-weight: 800; }
.plan-card .button { width: 100%; margin-top: auto; }
.investment-modes { margin-top: 35px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.investment-modes div { padding: 24px 28px; display: flex; gap: 20px; align-items: center; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); }
.investment-modes i { font-size: 26px; flex: 0 0 auto; }
.investment-modes strong { color: var(--navy); font-family: Montserrat, Arial, sans-serif; }
.investment-modes span { color: var(--muted); font-size: 13px; }
.section-note { margin: 18px 0 0; color: var(--muted); font-size: 12px; text-align: center; }

.section-dark { overflow: hidden; background: var(--navy); color: white; }
.section-dark h2, .section-dark h3 { color: white; }
.dark-heading > p { color: #c5d4e6; }
.case-process { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); background: rgba(255,255,255,.055); }
.case-process li { min-height: 230px; padding: 30px; border-right: 1px solid rgba(255,255,255,.16); }
.case-process li:last-child { border-right: 0; }
.case-process span { color: var(--cyan); font-size: 11px; font-weight: 800; }
.case-process .case-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 13px; background: white; }
.case-process .case-icon img { width: 31px; height: 31px; }
.case-process strong, .case-process small { display: block; }
.case-process strong { margin-top: 28px; font-family: Montserrat, Arial, sans-serif; }
.case-process small { margin-top: 10px; color: #b8cbe2; line-height: 1.55; }
.example-grid { margin-top: 24px; grid-template-columns: repeat(3, 1fr); }
.example-grid article { min-height: 190px; padding: 27px; border: 1px solid rgba(255,255,255,.15); border-radius: 14px; background: rgba(255,255,255,.06); }
.example-icon { width: 40px; height: 40px; margin-bottom: 22px; padding: 7px; border-radius: 9px; background: white; }
.example-grid p { color: var(--cyan); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.example-grid h3 { margin: 20px 0 10px; font-size: 18px; }
.example-grid span { color: #b8cbe2; font-size: 13px; }
.case-disclaimer { margin: 28px auto 0; max-width: 780px; padding: 18px 24px; border: 1px solid rgba(0,175,253,.35); border-radius: 10px; color: #d7e6f7; font-size: 13px; text-align: center; }

.about-section { background: var(--surface); }
.about-grid { padding: 55px; display: grid; grid-template-columns: 290px 1fr; gap: clamp(40px, 8vw, 100px); align-items: center; border-radius: 24px; background: white; box-shadow: var(--shadow); }
.about-mark { padding: 30px; }
.about-mark img { width: 230px; margin: auto; }
.about-grid h2 { margin-bottom: 8px; font-size: clamp(36px, 4vw, 54px); }
.about-grid > div:last-child > p:not(.section-label):not(.about-role) { color: var(--muted); }
.about-role { margin-bottom: 25px; color: var(--blue); font-weight: 800; }
.value-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.value-list span { padding: 8px 11px; border-radius: 6px; background: var(--surface); color: var(--navy); font-size: 10px; font-weight: 800; text-transform: uppercase; }

.contact-cta { padding: 78px 0; background: white; }
.cta-box { padding: 55px 60px; display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; border-radius: 22px; background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: white; box-shadow: var(--shadow); }
.cta-box h2 { margin-bottom: 15px; color: white; font-size: clamp(34px, 4vw, 52px); }
.cta-box p:not(.section-label) { max-width: 680px; margin: 0; color: #c5d4e6; }
.light-label { color: var(--cyan); }

.site-footer { padding: 48px 0 28px; background: var(--navy-2); color: white; }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; gap: 38px; align-items: start; }
.footer-developed {
  display: inline-flex; flex-direction: column; align-items: flex-start; gap: 10px;
}
.footer-developed-label {
  color: rgba(255,255,255,.82); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
}
.footer-developed-logo {
  display: block; width: 190px; max-width: 100%; height: auto;
}
.footer-grid > div:first-child p { margin: 13px 0 0; color: var(--cyan); font-size: 12px; }
.footer-grid nav { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; font-size: 12px; }
.footer-grid nav a,
.footer-social a,
.footer-meta a { color: inherit; }
.footer-social { display: flex; gap: 15px; color: #b4c6dd; font-size: 12px; }
.footer-meta { grid-column: 1 / -1; margin: 12px 0 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.13); color: #9fb3cc; font-size: 11px; }

/* Contacto y confirmación */
.inner-page { min-height: 100vh; background: var(--surface); }
.inner-header .main-nav a { padding-block: 28px 26px; }
.inner-main { padding: 72px 0 90px; }
.inner-hero { max-width: 820px; margin-bottom: 45px; }
.inner-hero h1 { margin-bottom: 20px; font-size: clamp(40px, 5vw, 65px); letter-spacing: -.05em; }
.inner-hero p:not(.section-label) { color: var(--muted); font-size: 17px; }
.contact-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); gap: 28px; align-items: start; }
.form-panel, .next-panel { border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 14px 38px rgba(0,35,90,.07); }
.form-panel { padding: clamp(26px, 4vw, 46px); }
.form-panel h2, .next-panel h2 { margin-bottom: 25px; font-size: 27px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { min-width: 0; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label, .fieldset-label { display: block; margin-bottom: 8px; color: var(--navy); font-size: 13px; font-weight: 800; }
.required { color: var(--error); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; min-height: 49px; padding: 12px 13px; border: 1px solid #bfcde0; border-radius: 8px;
  background: white; color: var(--text); outline: none; transition: border .2s ease, box-shadow .2s ease;
}
.form-group textarea { min-height: 145px; resize: vertical; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,129,254,.13); }
.phone-input-wrap {
  display: grid; grid-template-columns: minmax(180px, 1.2fr) minmax(0, 2fr); align-items: center;
  min-height: 49px; border: 1px solid #bfcde0; border-radius: 8px; background: white; overflow: hidden;
  transition: border .2s ease, box-shadow .2s ease;
}
.phone-input-wrap:focus-within { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,129,254,.13); }
.phone-prefix {
  position: relative; height: 100%; border-right: 1px solid #dfeaf6; background: #f9fbff;
}
.phone-prefix select {
  width: 100%; min-height: 47px; padding: 0 32px 0 12px; border: 0; background: transparent; color: var(--navy);
  font-size: 14px; font-weight: 700; outline: none; appearance: none; -webkit-appearance: none; -moz-appearance: none;
}
.phone-prefix::after {
  content: "▾"; position: absolute; right: 12px; top: 50%; transform: translateY(-50%); color: var(--navy); font-size: 11px; pointer-events: none;
}
.phone-input-wrap input {
  width: 100%; min-height: 47px; padding: 12px 13px; border: 0; background: transparent; color: var(--text); outline: none;
}
.phone-input-wrap input::placeholder { color: #7d8ea6; }
.field-hint { display: block; margin-top: 6px; color: var(--muted); font-size: 10px; }
.radio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.radio-card {
  position: relative; min-height: 78px; padding: 14px; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 7px; border: 1px solid var(--line); border-radius: 10px; color: var(--navy);
  font-size: 12px; font-weight: 700; text-align: center; cursor: pointer;
}
.radio-card i { display: block; margin: 0; font-size: 22px; }
.radio-card input { position: absolute; left: 10px; top: 10px; width: auto; min-height: auto; }
.radio-card:has(input:checked) { border-color: var(--blue); background: #eff8ff; }
.consent-row { margin-top: 20px; display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: 11px; }
.consent-row input { margin-top: 3px; accent-color: var(--blue); }
.form-actions { margin-top: 24px; display: flex; align-items: center; gap: 18px; }
.form-status { margin: 0; font-size: 12px; }
.form-status[data-state="error"] { color: var(--error); }
.form-status[data-state="sending"] { color: var(--blue); }
.form-status[data-state="success"] { color: var(--success); }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; }
.next-panel { padding: 36px; }
.next-steps { margin: 0; padding: 0; list-style: none; }
.next-steps li { position: relative; padding: 0 0 32px 55px; }
.next-steps li:not(:last-child)::after { content: ""; position: absolute; left: 18px; top: 38px; bottom: 0; width: 1px; background: var(--line); }
.next-steps span { position: absolute; left: 0; top: 0; width: 37px; height: 37px; display: grid; place-items: center; border-radius: 50%; background: var(--surface); color: var(--blue); font-weight: 800; }
.next-steps span i { font-size: 18px; }
.next-steps strong { display: block; color: var(--navy); font-family: Montserrat, Arial, sans-serif; font-size: 14px; }
.next-steps p { margin: 7px 0 0; color: var(--muted); font-size: 12px; }
.reassurance { margin-top: 6px; padding: 22px; border-radius: 12px; background: linear-gradient(135deg, #effaff, #f2efff); }
.reassurance strong { display: block; color: var(--navy); font-family: Montserrat, Arial, sans-serif; }
.reassurance p { margin: 8px 0 0; color: var(--muted); font-size: 12px; }
.location-card { margin-top: 16px; padding: 18px 22px; border: 1px solid var(--line); border-radius: 12px; color: var(--muted); font-size: 12px; }
.location-card { display: flex; gap: 14px; align-items: center; }
.location-card i { width: auto; height: auto; font-size: 24px; flex: 0 0 auto; }
.location-card strong { display: block; color: var(--navy); }
.success-wrap { min-height: calc(100vh - 180px); padding: 80px 0; display: grid; place-items: center; }
.success-card { width: min(670px, calc(100% - 44px)); padding: clamp(35px, 6vw, 70px); border-radius: 24px; background: white; text-align: center; box-shadow: var(--shadow); }
.success-icon { width: 74px; height: 74px; margin: 0 auto 25px; display: grid; place-items: center; border-radius: 50%; background: #e6f8f1; color: var(--success); font-size: 34px; font-weight: 800; }
.success-icon i { font-size: 36px; color: var(--success); }
.success-card h1 { font-size: clamp(33px, 4vw, 48px); }
.success-card p { color: var(--muted); }
.success-card .button { margin-top: 16px; }

@media (max-width: 1050px) {
  .header-cta { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 800px; }
  .hero-panel, .hero-visual, .hero-visual img { min-height: 390px; }
  .four-columns { grid-template-columns: repeat(2, 1fr); }
  .solutions-grid, .solution-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .plan-grid { grid-template-columns: 1fr; }
  .plan-card { min-height: auto; }
  .case-process { grid-template-columns: repeat(2, 1fr); }
  .case-process li:nth-child(2) { border-right: 0; }
  .case-process li:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.16); }
  .about-grid { grid-template-columns: 220px 1fr; padding: 42px; }
}

@media (max-width: 1050px) {
  .four-columns,
  .solutions-grid,
  .solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 800px) {
  html { scroll-padding-top: 72px; }
  .header-inner { min-height: 72px; }
  .brand-logo { width: 145px; }
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed; inset: 72px 0 auto; z-index: 99; margin: 0; padding: 22px;
    display: none; flex-direction: column; align-items: stretch; gap: 0;
    background: white; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 13px 0; font-size: 15px; }
  .main-nav a::after { bottom: 8px; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding: 70px 0 60px; }
  .section { padding: 78px 0; }
  .section-heading, .centered-heading { grid-template-columns: 1fr; gap: 22px; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .strip-grid div:nth-child(2) { border-right: 0; }
  .strip-grid div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .inline-message { grid-template-columns: 1fr; gap: 8px; }
  .growth-path { grid-template-columns: repeat(2, 1fr); }
  .growth-path li:nth-child(2) { border-right: 0; }
  .growth-path li:nth-child(-n+2) { padding-bottom: 30px; border-bottom: 1px solid #bdcde0; }
  .example-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-mark img { width: 180px; }
  .value-list { justify-content: center; }
  .cta-box { padding: 42px 30px; grid-template-columns: 1fr; gap: 30px; }
  .cta-box .button { justify-self: start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-social { justify-content: flex-end; }
  .footer-grid nav { grid-row: 2; }
  .footer-meta { grid-row: 3; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .page-shell, .header-inner { width: min(1180px, calc(100% - 30px)); }
  .footer-developed { align-items: center; text-align: center; }
  .footer-developed-logo { width: 170px; }
  .hero h1 { font-size: 43px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-panel, .hero-visual, .hero-visual img { min-height: 315px; }
  .hero-visual { border-radius: 18px; }
  .hero-visual::before { display: none; }
  .dashboard-window { padding: 12px; }
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .chart-area { height: 110px; }
  .four-columns,
  .solutions-grid,
  .solution-grid { grid-template-columns: 1fr; }
  .info-card, .solution-card { min-height: 250px; }
  .growth-path, .case-process { grid-template-columns: 1fr; }
  .growth-path li, .growth-path li:nth-child(2), .case-process li, .case-process li:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 28px; }
  .case-process li, .case-process li:nth-child(2) { border-color: rgba(255,255,255,.16); }
  .case-process li:last-child, .growth-path li:last-child { border-bottom: 0; }
  .case-process strong { margin-top: 35px; }
  .investment-modes { grid-template-columns: 1fr; }
  .investment-modes div { align-items: flex-start; flex-direction: column; gap: 6px; }
  .about-grid { padding: 32px 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-social { justify-content: flex-start; }
  .footer-grid nav, .footer-meta { grid-row: auto; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full-width { grid-column: auto; }
  .radio-grid { grid-template-columns: 1fr; }
  .radio-card { min-height: 58px; }
  .form-actions { align-items: stretch; flex-direction: column; }
  .form-actions .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
