:root {
  --navy: #123b66;
  --navy-dark: #082746;
  --grey: #3f434a;
  --light: #f4f7fa;
  --white: #ffffff;
  --orange: #f28c28;
  --border: #dce4ec;
  --shadow: 0 18px 50px rgba(8, 39, 70, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--grey);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--navy); }
.brand img { width: 48px; height: 48px; object-fit: contain; }
.brand span { display: grid; line-height: 1; }
.brand strong { font-size: 1.2rem; letter-spacing: .08em; }
.brand small { margin-top: 6px; letter-spacing: .35em; font-weight: 700; color: var(--grey); }
.main-nav { margin-left: auto; display: flex; gap: 28px; }
.main-nav a { text-decoration: none; font-weight: 700; color: var(--navy-dark); }
.menu-button { display: none; margin-left: auto; border: 0; background: transparent; font-size: 1.6rem; color: var(--navy); }
.language-switcher { display: inline-flex; flex: 0 0 auto; padding: 3px; border: 1px solid var(--border); border-radius: 999px; background: var(--light); }
.language-switcher button { min-width: 38px; min-height: 34px; padding: 4px 9px; border: 0; border-radius: 999px; background: transparent; color: var(--navy); font: inherit; font-size: .82rem; font-weight: 900; cursor: pointer; }
.language-switcher button.active { background: var(--navy); color: #fff; box-shadow: 0 3px 8px rgba(8,39,70,.18); }
.language-switcher button:focus-visible { outline: 3px solid rgba(242,140,40,.45); outline-offset: 2px; }
.thank-you-language { position: absolute; top: 20px; right: 20px; }
.thank-you-card { position: relative; }

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 24px;
  border: 2px solid var(--orange);
  border-radius: 10px;
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}
.button:hover { filter: brightness(.95); transform: translateY(-1px); }
.button-small { min-height: 42px; padding-inline: 18px; }
.button-outline { background: transparent; color: var(--navy); border-color: var(--navy); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background:
    radial-gradient(circle at 90% 20%, rgba(242,140,40,.16), transparent 26rem),
    linear-gradient(135deg, #fff 0%, #f3f7fb 100%);
}
.hero::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 70px solid rgba(18,59,102,.08);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.35fr .65fr; gap: 60px; align-items: center; }
.eyebrow { margin: 0 0 12px; color: var(--orange); font-weight: 900; text-transform: uppercase; letter-spacing: .13em; font-size: .82rem; }
h1, h2, h3 { color: var(--navy-dark); line-height: 1.14; margin-top: 0; }
h1 { max-width: 760px; font-size: clamp(2.5rem, 6vw, 5.2rem); letter-spacing: -.04em; margin-bottom: 24px; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -.03em; margin-bottom: 20px; }
h3 { font-size: 1.4rem; margin-bottom: 8px; }
.hero-copy { max-width: 720px; font-size: 1.18rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-row span { padding: 8px 12px; border: 1px solid var(--border); border-radius: 999px; background: #fff; color: var(--navy); font-weight: 700; font-size: .9rem; }

.hero-card {
  padding: 34px;
  border-radius: 24px;
  background: var(--navy-dark);
  color: #fff;
  box-shadow: var(--shadow);
}
.hero-card img { width: 120px; margin: 0 auto 18px; background: #fff; border-radius: 18px; padding: 8px; }
.hero-card h2 { color: #fff; font-size: 1.75rem; text-align: center; margin-bottom: 6px; }
.hero-card > p { color: #dbe7f2; text-align: center; }
.hero-card ul { padding-left: 20px; margin-bottom: 0; }

.section { padding: 88px 0; }
.section-alt { background: var(--light); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 36px; }
.service-card { padding: 30px; border: 1px solid var(--border); border-radius: 20px; background: #fff; box-shadow: 0 12px 35px rgba(8,39,70,.06); }
.service-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px; background: var(--navy); color: #fff; font-size: 1.5rem; margin-bottom: 20px; }
.work-count-section { padding-top: 0; }
.work-count-heading { display: flex; justify-content: space-between; gap: 40px; align-items: center; padding: 34px; border-radius: 22px 22px 0 0; background: var(--navy-dark); color: #fff; }
.work-count-heading h2 { margin-bottom: 8px; color: #fff; }
.work-count-heading p:last-child { margin-bottom: 0; color: #dbe7f2; }
.total-count { display: grid; min-width: 190px; text-align: center; }
.total-count strong { color: var(--orange); font-size: clamp(3.5rem, 7vw, 5.5rem); line-height: .9; }
.total-count span { margin-top: 12px; font-weight: 800; }
.work-count-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--border); border-top: 0; border-radius: 0 0 22px 22px; overflow: hidden; }
.work-count-grid article { display: grid; place-items: center; min-height: 150px; padding: 24px; text-align: center; background: #fff; border-right: 1px solid var(--border); }
.work-count-grid article:last-child { border-right: 0; }
.work-count-grid strong { color: var(--navy); font-size: 2.75rem; line-height: 1; }
.work-count-grid span { margin-top: 12px; color: var(--navy-dark); font-weight: 800; }
.reviews-section { padding-top: 0; }
.reviews-card { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 28px; align-items: center; padding: 34px; border: 1px solid var(--border); border-radius: 22px; background: var(--light); box-shadow: 0 12px 35px rgba(8,39,70,.06); }
.google-mark { display: block; width: 76px; height: 76px; padding: 14px; object-fit: contain; border-radius: 50%; background: #fff; box-shadow: 0 8px 24px rgba(8,39,70,.12); }
.reviews-content h2 { margin-bottom: 10px; font-size: clamp(1.8rem, 3vw, 2.55rem); }
.reviews-content p:last-child { max-width: 650px; margin: 0; }
.reviews-actions { display: grid; gap: 10px; min-width: 235px; }
.reviews-actions .button { width: 100%; padding-inline: 18px; }
.google-review-live { padding-top: 24px; }
.rating-summary { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 18px; padding: 18px 22px; border: 1px solid var(--border); border-radius: 16px; background: #fff; }
.rating-summary strong { color: var(--navy-dark); font-size: 2rem; line-height: 1; }
.rating-stars, .review-stars { color: #fbbc04; letter-spacing: .08em; }
.rating-summary span:last-child { color: #687582; font-weight: 700; }
.google-review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.google-review-card { display: flex; flex-direction: column; min-width: 0; padding: 22px; border: 1px solid var(--border); border-radius: 18px; background: #fff; box-shadow: 0 9px 26px rgba(8,39,70,.06); }
.review-author { display: flex; align-items: center; gap: 11px; color: var(--navy-dark); font-weight: 800; text-decoration: none; }
.review-author img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; background: var(--light); }
.review-stars { margin: 14px 0 8px; }
.review-text { display: -webkit-box; overflow: hidden; margin: 0 0 16px; -webkit-line-clamp: 6; -webkit-box-orient: vertical; }
.review-source { margin-top: auto; color: var(--navy); font-size: .88rem; font-weight: 800; }
.review-time { display: block; margin-top: 4px; color: #687582; font-size: .82rem; }
.reviews-status { grid-column: 1 / -1; margin: 0; padding: 20px; border-radius: 14px; background: var(--light); text-align: center; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.value-list { display: grid; gap: 12px; }
.value-list div { display: grid; padding: 20px; border-radius: 14px; background: #fff; border-left: 4px solid var(--orange); }
.value-list strong { color: var(--navy); }
.quote-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 54px; align-items: start; }
.quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 28px; background: var(--light); border: 1px solid var(--border); border-radius: 22px; }
.quote-form label { display: grid; gap: 7px; font-weight: 700; color: var(--navy-dark); }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #bcc9d5;
  border-radius: 9px;
  background: #fff;
  font: inherit;
}
.full { grid-column: 1 / -1; }
.form-note, .small-note { font-size: .88rem; color: #687582; }
.contact-section { background: var(--navy-dark); }
.contact-section h2, .contact-section .eyebrow { color: #fff; }
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.contact-grid > * { display: grid; padding: 22px; border: 1px solid rgba(255,255,255,.18); border-radius: 14px; color: #fff; text-decoration: none; }
.contact-grid span { color: #bcd0e3; font-size: .86rem; }
.site-footer { padding: 30px 0; background: #051b30; color: #fff; }
.footer-grid { display: flex; justify-content: space-between; gap: 30px; }
.site-footer p { margin: 4px 0 0; color: #bcd0e3; }
.site-footer a { color: #fff; }

@media (max-width: 850px) {
  .header-cta { display: none; }
  .menu-button { display: block; }
  .nav-wrap { gap: 12px; }
  .main-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    margin: 0;
    padding: 20px;
    background: #fff;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
  }
  .main-nav.open { display: flex; }
  .hero-grid, .split, .quote-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .work-count-grid { grid-template-columns: 1fr 1fr; }
  .work-count-grid article:nth-child(2) { border-right: 0; }
  .work-count-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .reviews-card { grid-template-columns: auto 1fr; }
  .reviews-actions { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; }
  .google-review-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1120px); }
  .hero, .section { padding: 64px 0; }
  .quote-form { grid-template-columns: 1fr; padding: 20px; }
  .quote-form > * { grid-column: 1; }
  .work-count-heading { align-items: flex-start; flex-direction: column; padding: 28px 22px; }
  .total-count { min-width: 0; text-align: left; }
  .work-count-grid { grid-template-columns: 1fr; }
  .work-count-grid article { min-height: 120px; border-right: 0; border-bottom: 1px solid var(--border); }
  .work-count-grid article:nth-child(3) { border-bottom: 1px solid var(--border); }
  .work-count-grid article:last-child { border-bottom: 0; }
  .reviews-card { grid-template-columns: 1fr; padding: 26px 22px; }
  .google-mark { width: 64px; height: 64px; font-size: 2.4rem; }
  .reviews-actions { grid-column: 1; grid-template-columns: 1fr; min-width: 0; width: 100%; }
  .google-review-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { flex-direction: column; }
  .brand strong { font-size: 1rem; }
}


/* Social media links */
.social-card {
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.social-card:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 140, 40, .85);
  background: rgba(255, 255, 255, .05);
}

.social-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-card-title svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-card-title svg path {
  fill: currentColor;
  stroke: none;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: border-color .2s ease, background .2s ease;
}

.footer-social a:hover {
  border-color: var(--orange);
  background: rgba(242, 140, 40, .12);
}

.footer-social svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-social svg path {
  fill: currentColor;
  stroke: none;
}

.footer-details {
  text-align: right;
}

@media (max-width: 560px) {
  .footer-details {
    text-align: left;
  }
}


/* Our customer: Viskaalin */
.customer-section { background: #f4f7fa; }
.customer-card { display:grid; grid-template-columns:minmax(220px,.75fr) minmax(0,1.7fr); gap:clamp(28px,5vw,64px); align-items:center; padding:clamp(28px,5vw,58px); border:1px solid var(--border); border-radius:24px; background:#fff; box-shadow:var(--shadow); overflow:hidden; position:relative; }
.customer-card::before { content:""; position:absolute; inset:0 auto 0 0; width:6px; background:var(--orange); }
.customer-logo-wrap { display:grid; place-items:center; align-content:center; min-height:220px; padding:28px; border-radius:18px; background:linear-gradient(145deg,#fff 0%,#f4f7fa 100%); border:1px solid var(--border); text-align:center; }
.customer-logo-wrap .eyebrow { margin-bottom:22px; }
.customer-logo { display:block; width:min(100%,330px); height:auto; object-fit:contain; }
.customer-content h2 { margin-bottom:18px; }
.customer-content p { max-width:760px; }
.customer-services { display:flex; flex-wrap:wrap; gap:10px; margin:24px 0; }
.customer-services span { display:inline-flex; align-items:center; padding:9px 13px; border-radius:999px; background:rgba(18,59,102,.08); color:var(--navy); font-size:.9rem; font-weight:700; }
.customer-services span::before { content:"✓"; margin-right:7px; color:var(--orange); font-weight:900; }
.customer-note { margin-bottom:0; padding:16px 18px; border-left:4px solid var(--orange); border-radius:0 10px 10px 0; background:#fff8f1; color:var(--navy-dark); font-weight:650; }
@media (max-width:850px){ .customer-card{grid-template-columns:1fr}.customer-logo-wrap{min-height:180px} }
@media (max-width:560px){ .customer-card{padding:24px 20px 26px;border-radius:18px}.customer-logo-wrap{min-height:150px;padding:22px 18px}.customer-services span{width:100%;border-radius:10px} }
