:root {
  --blue: #357ced;
  --blue-dark: #0d2c5b;
  --blue-deep: #071d3d;
  --blue-soft: #eaf2ff;
  --yellow: #fec307;
  --yellow-dark: #d9a300;
  --white: #ffffff;
  --surface: #f6f8fc;
  --surface-2: #eef3fb;
  --text: #12213a;
  --muted: #5e6d84;
  --line: #dbe4f1;
  --success: #138a5b;
  --warning: #9c6b00;
  --danger: #b63f45;
  --shadow: 0 24px 60px rgba(7, 29, 61, .12);
  --radius: 24px;
  --radius-sm: 15px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-soft { background: var(--surface); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--blue);
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 30px; height: 3px; background: var(--yellow); border-radius: 20px; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(2.65rem, 6vw, 5.15rem); margin-bottom: 24px; }
h2 { font-size: clamp(2rem, 4vw, 3.45rem); margin-bottom: 18px; }
h3 { font-size: 1.28rem; margin-bottom: 10px; }
.lead { color: var(--muted); font-size: clamp(1.06rem, 2vw, 1.25rem); max-width: 720px; }
.section-head { max-width: 780px; margin-bottom: 48px; }
.section-head.center { text-align: center; margin-inline: auto; }
.section-head.center .lead { margin-inline: auto; }

.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 9999;
  padding: 12px 16px; background: var(--yellow); color: var(--blue-deep); border-radius: 10px; font-weight: 800;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.91); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(219,228,241,.75);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand img { width: 54px; height: 54px; border-radius: 50%; box-shadow: 0 6px 18px rgba(53,124,237,.22); }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-size: 1.18rem; letter-spacing: -.03em; }
.brand-copy span { margin-top: 5px; color: var(--muted); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 25px; }
.main-nav > a { color: #31425c; font-size: .92rem; font-weight: 700; }
.main-nav > a:hover, .main-nav > a:focus-visible { color: var(--blue); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.language-switcher { position: relative; }
.lang-button {
  display: inline-flex; align-items: center; gap: 7px; padding: 10px 12px;
  border: 1px solid var(--line); border-radius: 12px; background: #fff; color: var(--blue-deep); font-weight: 800;
}
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 9px); min-width: 155px; padding: 7px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: 14px;
  opacity: 0; visibility: hidden; transform: translateY(-5px); transition: .2s ease;
}
.language-switcher.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu a { display: block; padding: 9px 11px; border-radius: 9px; font-size: .9rem; font-weight: 700; }
.lang-menu a:hover, .lang-menu a[aria-current="page"] { background: var(--blue-soft); color: var(--blue); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; display: block; width: 21px; height: 2px; margin: 4px auto; background: var(--blue-deep); transition: .2s ease; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 50px; padding: 13px 21px; border: 1px solid transparent; border-radius: 14px;
  font-weight: 850; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--blue-deep); background: var(--yellow); box-shadow: 0 13px 28px rgba(254,195,7,.25); }
.btn-primary:hover { background: #ffd334; }
.btn-secondary { color: #fff; background: var(--blue); box-shadow: 0 13px 28px rgba(53,124,237,.24); }
.btn-secondary:hover { background: #246ee2; }
.btn-outline { color: var(--blue); border-color: #b9cff4; background: #fff; }
.btn-small { min-height: 43px; padding: 10px 16px; border-radius: 12px; font-size: .9rem; }

.hero {
  position: relative; overflow: hidden; padding: 88px 0 92px;
  background: linear-gradient(135deg, #f8fbff 0%, #edf4ff 55%, #fff9df 100%);
}
.hero::before, .hero::after { content: ""; position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero::before { width: 500px; height: 500px; top: -220px; right: -170px; background: rgba(53,124,237,.13); }
.hero::after { width: 290px; height: 290px; left: -160px; bottom: -150px; background: rgba(254,195,7,.23); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 em { color: var(--blue); font-style: normal; }
.hero-copy .lead { max-width: 660px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 31px 0 27px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px 19px; color: #3d4d64; font-size: .9rem; font-weight: 700; }
.trust-row span { display: inline-flex; align-items: center; gap: 7px; }
.check { width: 20px; height: 20px; display: inline-grid; place-items: center; border-radius: 50%; color: #fff; background: var(--success); font-size: .72rem; }

.hero-visual { position: relative; min-height: 520px; }
.hero-card {
  position: absolute; inset: 22px 0 0 32px; overflow: hidden;
  border-radius: 34px; background: var(--blue-deep); box-shadow: 0 32px 80px rgba(7,29,61,.25);
}
.hero-card::before { content: ""; position: absolute; width: 390px; height: 390px; right: -140px; top: -130px; border-radius: 50%; background: var(--blue); opacity: .55; }
.hero-card::after { content: ""; position: absolute; width: 230px; height: 230px; left: -90px; bottom: -100px; border-radius: 50%; background: var(--yellow); opacity: .86; }
.house-scene { position: absolute; inset: 0; }
.house-body { position: absolute; left: 15%; right: 15%; bottom: 12%; height: 43%; background: #fff; border-radius: 10px 10px 20px 20px; z-index: 2; }
.house-roof { position: absolute; left: 9%; right: 9%; bottom: 49%; height: 36%; background: var(--blue); clip-path: polygon(50% 0, 100% 100%, 0 100%); z-index: 3; }
.house-door { position: absolute; left: 44%; bottom: 12%; width: 18%; height: 29%; background: var(--yellow); border-radius: 8px 8px 0 0; z-index: 4; }
.house-window { position: absolute; left: 24%; bottom: 28%; width: 16%; height: 16%; background: var(--blue-soft); border: 8px solid #fff; box-shadow: 0 0 0 3px var(--blue); z-index: 4; }
.key-shape { position: absolute; right: 8%; top: 13%; width: 120px; height: 120px; z-index: 5; transform: rotate(-14deg); }
.key-ring { width: 66px; height: 66px; border: 15px solid var(--yellow); border-radius: 50%; }
.key-stick { width: 82px; height: 15px; margin-left: 49px; margin-top: -20px; border-radius: 10px; background: var(--yellow); }
.key-tooth { width: 15px; height: 33px; margin-left: 101px; margin-top: -22px; background: var(--yellow); }
.floating-stat {
  position: absolute; z-index: 8; padding: 15px 18px; border: 1px solid rgba(255,255,255,.8);
  border-radius: 18px; background: rgba(255,255,255,.94); box-shadow: var(--shadow); backdrop-filter: blur(10px);
}
.floating-stat strong { display: block; color: var(--blue-deep); font-size: 1.03rem; }
.floating-stat span { color: var(--muted); font-size: .78rem; }
.stat-1 { top: 0; left: 0; }
.stat-2 { right: -10px; bottom: 23px; }

.stats-strip { position: relative; z-index: 4; margin-top: -36px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: 22px; }
.stat { padding: 25px 28px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; color: var(--blue); font-size: 1.25rem; }
.stat span { color: var(--muted); font-size: .87rem; }

.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card, .service-card, .step-card, .testimonial, .faq-item, .contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
}
.feature-card { padding: 30px; }
.icon-box { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 23px; border-radius: 15px; background: var(--blue-soft); color: var(--blue); font-size: 1.5rem; font-weight: 900; }
.feature-card p, .service-card p, .step-card p { margin-bottom: 0; color: var(--muted); }

.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.service-card { position: relative; padding: 30px 30px 32px; overflow: hidden; }
.service-card::after { content: ""; position: absolute; right: -45px; bottom: -55px; width: 130px; height: 130px; border-radius: 50%; background: var(--blue-soft); }
.service-top { display: flex; align-items: center; gap: 16px; margin-bottom: 13px; }
.service-top .icon-box { flex: 0 0 auto; margin: 0; }
.service-card a { display: inline-flex; margin-top: 19px; color: var(--blue); font-weight: 850; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step-card { position: relative; padding: 28px; }
.step-number { display: inline-grid; place-items: center; width: 42px; height: 42px; margin-bottom: 20px; border-radius: 50%; color: var(--blue-deep); background: var(--yellow); font-weight: 900; }

.calculator-wrap { display: grid; grid-template-columns: .88fr 1.12fr; gap: 30px; align-items: stretch; }
.calculator-info { padding: 44px; color: #fff; background: var(--blue-deep); border-radius: 30px; }
.calculator-info .eyebrow { color: #a9cbff; }
.calculator-info h2 { color: #fff; }
.calculator-info p { color: #c6d5e9; }
.calculator-note { margin-top: 30px; padding: 18px; border: 1px solid rgba(255,255,255,.14); border-radius: 15px; background: rgba(255,255,255,.06); font-size: .88rem; }
.calculator-card { padding: 35px; background: #fff; border: 1px solid var(--line); border-radius: 30px; box-shadow: var(--shadow); }
.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-size: .87rem; font-weight: 800; color: #31425c; }
.input-shell { position: relative; }
.input-shell input { padding-right: 46px; }
.input-suffix { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); color: var(--muted); font-weight: 700; }
input, select, textarea {
  width: 100%; min-height: 50px; padding: 12px 14px; color: var(--text); background: #fff;
  border: 1px solid #cfd9e8; border-radius: 12px; outline: none; transition: border-color .2s, box-shadow .2s;
}
textarea { min-height: 125px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(53,124,237,.12); }
.calc-results { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 24px; }
.calc-result { padding: 17px; border-radius: 14px; background: var(--surface); }
.calc-result.highlight { background: var(--blue); color: #fff; }
.calc-result span { display: block; margin-bottom: 6px; color: var(--muted); font-size: .78rem; }
.calc-result.highlight span { color: #dbe9ff; }
.calc-result strong { font-size: 1.3rem; }
.calc-disclaimer { margin: 15px 0 0; color: var(--muted); font-size: .76rem; }

.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.audience-pill { padding: 17px 19px; border: 1px solid var(--line); border-radius: 14px; background: #fff; font-weight: 800; text-align: center; }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial { padding: 28px; }
.stars { color: #edae00; letter-spacing: .14em; }
.testimonial blockquote { margin: 16px 0 22px; color: #34465f; }
.testimonial-author { color: var(--blue-deep); font-weight: 850; }
.testimonial small { color: var(--muted); }

.faq-list { max-width: 900px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { overflow: hidden; }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 21px 24px; border: 0; color: var(--blue-deep); background: #fff; text-align: left; font-weight: 850; }
.faq-question::after { content: "+"; color: var(--blue); font-size: 1.5rem; font-weight: 500; }
.faq-item.open .faq-question::after { content: "−"; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-answer p { padding: 0 24px 22px; margin: 0; color: var(--muted); }

.contact-section { background: linear-gradient(135deg, var(--blue-deep), #114a91); color: #fff; }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 45px; align-items: start; }
.contact-copy h2, .contact-copy h3 { color: #fff; }
.contact-copy .lead, .contact-copy p { color: #c9d7e9; }
.contact-points { display: grid; gap: 14px; margin-top: 30px; }
.contact-point { display: flex; align-items: flex-start; gap: 13px; }
.contact-point .icon-box { width: 42px; height: 42px; margin: 0; color: var(--blue-deep); background: var(--yellow); font-size: 1rem; }
.contact-card { padding: 33px; color: var(--text); box-shadow: 0 24px 70px rgba(0,0,0,.18); }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; }
.checkbox-row input { width: 18px; min-height: 18px; margin-top: 3px; }
.checkbox-row label { color: var(--muted); font-size: .78rem; }
.checkbox-row a { color: var(--blue); text-decoration: underline; }
.form-status { min-height: 24px; margin-top: 12px; font-size: .85rem; font-weight: 700; }
.form-status.success { color: var(--success); }
.form-status.error { color: var(--danger); }

.site-footer { padding: 52px 0 25px; background: #06162f; color: #d8e4f4; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 50px; }
.footer-brand .brand-copy strong { color: #fff; }
.footer-brand .brand-copy span { color: #9cb0ca; }
.footer-brand p { max-width: 470px; margin-top: 20px; color: #9cb0ca; }
.footer-col h3 { color: #fff; font-size: 1rem; letter-spacing: 0; }
.footer-links { display: grid; gap: 10px; color: #aebed1; font-size: .9rem; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; margin-top: 38px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: #8599b4; font-size: .78rem; }

.cookie-banner {
  position: fixed; z-index: 2000; left: 18px; right: 18px; bottom: 18px; max-width: 850px; margin: auto;
  display: none; align-items: center; justify-content: space-between; gap: 20px; padding: 17px 19px;
  color: #dce7f5; background: #07182f; border: 1px solid rgba(255,255,255,.16); border-radius: 17px; box-shadow: var(--shadow);
}
.cookie-banner.show { display: flex; }
.cookie-banner p { margin: 0; font-size: .82rem; }
.cookie-actions { display: flex; gap: 8px; flex: 0 0 auto; }
.cookie-actions button { min-height: 39px; padding: 8px 12px; border-radius: 10px; border: 1px solid rgba(255,255,255,.23); font-weight: 800; }
.cookie-accept { background: var(--yellow); color: var(--blue-deep); }
.cookie-reject { background: transparent; color: #fff; }

.legal-page { min-height: 70vh; padding: 80px 0; background: var(--surface); }
.legal-card { max-width: 920px; margin: 0 auto; padding: 42px; background: #fff; border: 1px solid var(--line); border-radius: 24px; }
.legal-card h1 { font-size: clamp(2.3rem, 5vw, 4rem); }
.legal-card h2 { margin-top: 34px; font-size: 1.55rem; }
.legal-card p, .legal-card li { color: #4e5e74; }
.legal-warning { padding: 16px; color: #6d5100; background: #fff6d1; border: 1px solid #f0d469; border-radius: 13px; }

@media (max-width: 1050px) {
  .main-nav { gap: 15px; }
  .main-nav > a { font-size: .84rem; }
  .hero-grid { gap: 35px; }
  .process-grid, .audience-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .section { padding: 76px 0; }
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed; inset: 78px 0 auto 0; display: grid; align-content: start; gap: 0; padding: 22px 20px 35px;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .2s ease;
  }
  body.menu-open .main-nav { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav > a { padding: 13px; font-size: 1rem; border-bottom: 1px solid var(--line); }
  .nav-cta { display: none; }
  .hero { padding-top: 65px; }
  .hero-grid, .calculator-wrap, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 470px; max-width: 600px; width: 100%; margin: 0 auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .cards-3, .testimonials-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, var(--max)); }
  .brand-copy { display: none; }
  .nav-wrap { min-height: 68px; }
  .brand img { width: 47px; height: 47px; }
  .main-nav { top: 68px; }
  .lang-button { padding: 9px; }
  .hero { padding: 52px 0 70px; }
  h1 { font-size: clamp(2.45rem, 13vw, 3.6rem); }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { min-height: 390px; }
  .hero-card { inset: 15px 3px 0 15px; border-radius: 25px; }
  .floating-stat { padding: 11px 13px; }
  .stat-2 { right: 0; }
  .stats-grid, .form-grid, .calc-results, .process-grid, .audience-grid, .footer-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .calculator-info, .calculator-card, .contact-card, .legal-card { padding: 25px; border-radius: 22px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { display: grid; }
  .cookie-banner { align-items: stretch; flex-direction: column; }
  .cookie-actions button { flex: 1; }
}

.legal-entity{margin:1.25rem 0 0;color:rgba(255,255,255,.72);font-size:.82rem;line-height:1.55;text-align:center}


/* Hidden partners landing page */
.partner-hero { background: linear-gradient(135deg, #f8fbff 0%, #edf4ff 52%, #fff7cf 100%); }
.partner-hero-card { background: linear-gradient(145deg, #071d3d 0%, #0c3975 100%); }
.partner-building { position:absolute; left:10%; bottom:13%; width:39%; height:57%; z-index:3; }
.building-roof { position:absolute; inset:0 7% auto; height:14%; background:var(--yellow); clip-path:polygon(50% 0,100% 100%,0 100%); }
.building-body { position:absolute; left:0; right:0; bottom:0; height:87%; display:grid; grid-template-columns:1fr 1fr; gap:10%; padding:16% 14% 13%; background:#fff; border-radius:7px 7px 15px 15px; }
.building-body span { display:block; border-radius:3px; background:var(--blue-soft); border:4px solid var(--blue); }
.building-body i { position:absolute; left:40%; bottom:0; width:20%; height:29%; background:var(--yellow); border-radius:5px 5px 0 0; }
.partner-home { position:absolute; right:9%; bottom:13%; width:30%; height:43%; z-index:3; }
.partner-home-roof { position:absolute; left:-9%; right:-9%; top:0; height:45%; background:var(--blue); clip-path:polygon(50% 0,100% 100%,0 100%); }
.partner-home-body { position:absolute; inset:39% 0 0; background:#fff; border-radius:7px 7px 13px 13px; }
.partner-home-door { position:absolute; left:40%; bottom:0; width:22%; height:37%; background:var(--yellow); border-radius:5px 5px 0 0; }
.partner-bridge { position:absolute; left:42%; right:26%; bottom:29%; height:14px; z-index:6; background:var(--yellow); border-radius:20px; transform:rotate(-4deg); box-shadow:0 0 0 5px rgba(254,195,7,.15); }
.partner-bridge::before,.partner-bridge::after { content:""; position:absolute; top:50%; width:29px; height:29px; border:9px solid var(--yellow); border-radius:50%; transform:translateY(-50%); }
.partner-bridge::before { left:-18px; } .partner-bridge::after { right:-18px; }
.partner-bridge span { position:absolute; left:50%; bottom:18px; transform:translateX(-50%); padding:6px 10px; color:#fff; background:rgba(7,29,61,.82); border-radius:8px; font-size:.7rem; font-weight:900; letter-spacing:.1em; }
.partner-modes-wrap { display:grid; grid-template-columns:.82fr 1.18fr; gap:56px; align-items:start; }
.partner-modes { display:grid; gap:14px; }
.partner-mode { display:flex; align-items:flex-start; gap:16px; padding:23px 24px; background:#fff; border:1px solid var(--line); border-radius:17px; }
.partner-mode > span { flex:0 0 31px; display:grid; place-items:center; width:31px; height:31px; color:#fff; background:var(--success); border-radius:50%; font-weight:900; }
.partner-mode h3 { margin-bottom:6px; font-size:1.08rem; }
.partner-mode p { margin:0; color:var(--muted); }
.partner-promise-icon { display:grid; place-items:center; width:38px; height:38px; margin-bottom:17px; color:var(--blue-deep); background:var(--yellow); border-radius:50%; font-weight:900; }
.partners-page .testimonial blockquote { margin-bottom:0; }
@media (max-width:860px){.partner-modes-wrap{grid-template-columns:1fr}.partner-visual{min-height:430px}}
@media (max-width:560px){.partner-building{left:7%;width:42%}.partner-home{right:7%;width:32%}.partner-bridge{left:43%;right:25%}}
