:root {
  --logo-blue: #487890;
  --blue-dark: #263f4b;
  --blue-deep: #1b313b;
  --logo-red: #e83020;
  --red-dark: #b72519;
  --logo-green: #609038;
  --charcoal: #201818;
  --ink: #23313a;
  --muted: #5d6c74;
  --ice: #eef5f7;
  --pale-blue: #dae8ed;
  --line: #cedde3;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: #f8fbfc;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a { color: inherit; }
.shell { width: min(1160px, calc(100% - 42px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.logo-link img { display: block; width: 260px; max-width: 38vw; height: auto; }
nav { display: flex; align-items: center; gap: 30px; }
nav a { font-size: .93rem; font-weight: 700; text-decoration: none; }
nav a:not(.nav-support):hover { color: var(--logo-blue); }
.nav-support { padding: 11px 17px; color: var(--white); background: var(--red-dark); border-radius: 7px; }
.nav-support:hover { background: var(--logo-red); }

.hero { position: relative; overflow: hidden; background: linear-gradient(135deg, #f7fbfc 0%, var(--ice) 62%, #e2edf0 100%); }
.hero-grid { min-height: 630px; display: grid; grid-template-columns: 1.28fr .72fr; align-items: center; gap: clamp(40px, 7vw, 100px); padding-block: 76px; }
.hero-copy, .hero-card { position: relative; z-index: 2; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 18px; color: var(--logo-blue); font-size: .79rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow span { width: 30px; height: 3px; background: var(--logo-red); }
.hero h1 { margin: 0; max-width: 760px; color: var(--blue-dark); font-size: clamp(3.1rem, 6.4vw, 5.7rem); line-height: .99; letter-spacing: -.055em; }
.hero h1 em { color: var(--logo-blue); font-style: normal; }
.hero-lead { max-width: 650px; margin: 28px 0; color: var(--muted); font-size: clamp(1.05rem, 1.8vw, 1.24rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; gap: 16px; padding: 13px 21px; border: 2px solid transparent; border-radius: 8px; font-weight: 800; text-decoration: none; transition: .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--red-dark); }
.button-primary:hover { background: var(--logo-red); box-shadow: 0 11px 26px rgba(184,48,32,.23); }
.button-secondary { color: var(--blue-dark); background: transparent; border-color: var(--logo-blue); }
.button-secondary:hover { color: var(--white); background: var(--logo-blue); }
.support-note { margin: 15px 0 0; color: #6c7a81; font-size: .84rem; }

.hero-card { padding: 42px 38px; color: var(--white); background: var(--blue-dark); border-radius: 22px; box-shadow: 0 30px 60px rgba(27,49,59,.2); }
.cube-mark { width: 112px; height: 98px; position: relative; margin-bottom: 32px; font-weight: 900; font-size: 1.5rem; }
.cube-mark span { position: absolute; display: grid; place-items: center; color: white; }
.cube-top { width: 76px; height: 45px; left: 18px; top: 0; background: var(--logo-green); clip-path: polygon(50% 0,100% 50%,50% 100%,0 50%); }
.cube-left { width: 55px; height: 69px; left: 0; top: 34px; background: var(--logo-red); clip-path: polygon(0 0,100% 27%,100% 100%,0 72%); }
.cube-right { width: 55px; height: 69px; right: 0; top: 34px; background: var(--logo-blue); clip-path: polygon(0 27%,100% 0,100% 72%,0 100%); }
.card-kicker { margin: 0 0 8px; color: #b9d5e0; font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.hero-card h2 { margin: 0 0 16px; font-size: clamp(1.8rem, 3vw, 2.5rem); line-height: 1.1; letter-spacing: -.03em; }
.hero-card > p:not(.card-kicker) { color: #d8e6eb; }
.hero-card > a { display: flex; justify-content: space-between; margin-top: 27px; padding-top: 19px; color: white; border-top: 1px solid #54707d; font-weight: 800; text-decoration: none; }
.hero-card > a:hover { color: #b8d992; }
.hero-shape { position: absolute; border-radius: 50%; opacity: .16; }
.shape-one { width: 390px; height: 390px; right: -110px; top: -170px; background: var(--logo-green); }
.shape-two { width: 270px; height: 270px; left: -160px; bottom: -130px; background: var(--logo-red); }

.trust-strip { color: white; background: var(--blue-deep); }
.trust-grid { min-height: 76px; display: grid; grid-template-columns: repeat(3,1fr); align-items: center; gap: 25px; }
.trust-grid p { display: flex; align-items: center; justify-content: center; gap: 11px; margin: 0; font-size: .9rem; font-weight: 700; }
.dot { width: 9px; height: 9px; border-radius: 50%; }
.red-dot { background: var(--logo-red); }.blue-dot { background: #72a8c0; }.green-dot { background: #80b651; }

.section { padding: 100px 0; }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 60px; margin-bottom: 42px; }
.section-heading h2, .about-copy h2, .contact-section h2 { margin: 0; color: var(--blue-dark); font-size: clamp(2.25rem, 4.6vw, 4rem); line-height: 1.06; letter-spacing: -.045em; }
.section-heading > p { margin: 0 0 7px; color: var(--muted); font-size: 1.05rem; }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 19px; }
.service-card { position: relative; min-height: 330px; padding: 31px; overflow: hidden; background: white; border: 1px solid var(--line); border-radius: 14px; transition: .2s ease; }
.service-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 5px; background: var(--logo-blue); }
.service-card.red::before { background: var(--logo-red); }.service-card.green::before { background: var(--logo-green); }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(38,63,75,.12); }
.service-number { color: #9aaab1; font-size: .8rem; font-weight: 800; letter-spacing: .1em; }
.service-card h3 { margin: 46px 0 13px; color: var(--blue-dark); font-size: 1.5rem; }
.service-card p { color: var(--muted); }
.service-card a { position: absolute; left: 31px; right: 31px; bottom: 27px; display: flex; justify-content: space-between; color: var(--blue-dark); font-size: .9rem; font-weight: 800; text-decoration: none; }
.service-card a:hover { color: var(--logo-red); }

.about-section { background: white; }
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: clamp(50px,8vw,110px); }
.about-panel { min-height: 390px; display: flex; flex-direction: column; justify-content: space-between; padding: 42px; color: white; background: var(--logo-blue); border-radius: 18px; box-shadow: 18px 18px 0 var(--pale-blue); }
.mini-label { margin: 0; font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.big-quote { margin: 0; font-size: clamp(1.75rem,3vw,2.5rem); font-weight: 800; line-height: 1.15; letter-spacing: -.03em; }
.about-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.04rem; }

.quick-section { padding-block: 70px; background: var(--ice); }
.quick-card { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 50px; padding: 47px 52px; color: white; background: var(--blue-dark); border-radius: 18px; box-shadow: inset 7px 0 0 var(--logo-green); }
.eyebrow.light { color: #b8d1dc; }
.quick-card h2 { margin: 0 0 10px; font-size: clamp(1.8rem,3.5vw,3rem); line-height: 1.08; }
.quick-card > div > p:not(.eyebrow) { max-width: 690px; margin-bottom: 0; color: #d7e5ea; }
.quick-actions { text-align: center; }
.quick-button { color: var(--blue-dark); background: white; }
.quick-button:hover { background: #d9ebf2; }
.quick-actions p { margin: 13px 0 0; color: #c5d8df; font-size: .8rem; }
kbd { padding: 3px 6px; color: var(--blue-dark); background: white; border-radius: 4px; font: 700 .75rem Arial,sans-serif; }

.contact-section { background: white; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.contact-links { border-top: 1px solid var(--line); }
.contact-links a { display: grid; grid-template-columns: 75px 1fr auto; align-items: center; gap: 15px; padding: 25px 4px; border-bottom: 1px solid var(--line); text-decoration: none; }
.contact-links small { color: var(--muted); }.contact-links strong { color: var(--blue-dark); }
.contact-links a:hover strong, .contact-links a:hover span { color: var(--logo-red); }

footer { padding: 52px 0; color: #d4e1e6; background: var(--blue-deep); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 35px; align-items: center; }
footer img { width: 230px; filter: drop-shadow(0 2px 0 rgba(255,255,255,.05)); }
footer p { margin: 0; font-size: .88rem; }.copyright { text-align: right; }

a:focus-visible { outline: 3px solid #f5bd39; outline-offset: 4px; }

@media (max-width: 900px) {
  nav a:not(.nav-support) { display: none; }
  .hero-grid, .section-heading, .about-grid, .quick-card, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { padding-block: 60px; }
  .hero-card { max-width: 570px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 270px; }
  .trust-grid { min-height: 110px; grid-template-columns: 1fr; gap: 8px; padding-block: 16px; }
  .trust-grid p { justify-content: flex-start; }
  .quick-actions { text-align: left; }
}

@media (max-width: 600px) {
  .shell { width: min(100% - 28px, 1160px); }
  .header-inner { min-height: 72px; }
  .logo-link img { width: 190px; max-width: 55vw; }
  .nav-support { padding: 9px 11px; font-size: .8rem; }
  .hero-grid { min-height: auto; padding-block: 48px; }
  .hero h1 { font-size: 3rem; }
  .hero-card { padding: 31px 25px; }
  .section { padding: 72px 0; }
  .section-heading { gap: 20px; }
  .about-panel { min-height: 310px; padding: 30px; box-shadow: 10px 10px 0 var(--pale-blue); }
  .quick-card { gap: 28px; padding: 35px 26px; }
  .quick-button { width: 100%; }
  .contact-links a { grid-template-columns: 60px 1fr auto; }
  .contact-links strong { overflow-wrap: anywhere; }
  .footer-grid { grid-template-columns: 1fr; }.copyright { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
