/* ==========================================================================
   Piris Road — Design Tokens
   Palette:  Ink #14132B · Navy #1E1B4B · Indigo #4338CA · Indigo Light #6D5EF5
             Gold #F5A623 · Paper #F6F6FB · Slate #6B7280
   Type:     Display  — "Space Grotesk"  (confident, geometric, engineered)
             Body     — "Inter"          (clean, highly legible)
             Utility  — "IBM Plex Mono"  (manifest / tracking-code register)
   Signature: the "manifest route line" — a dashed waybill path with way-
   point nodes that threads through the page, plus a CSS-built shipping
   container in the hero standing in for a cargo photograph.
   ========================================================================== */

:root {
  --ink: #14132b;
  --navy: #1e1b4b;
  --indigo: #5b4bf0;
  --indigo-light: #7b6bff;
  --indigo-soft: #eceafd;
  --gold: #ffd700;
  --gold-dark: #ffb800;
  --paper: #f6f6fb;
  --white: #ffffff;
  --slate: #6b7280;
  --line: rgba(20, 19, 43, 0.1);

  --display: "Space Grotesk", "Segoe UI", sans-serif;
  --body: "Inter", "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", "Courier New", monospace;

  --container: 1180px;
  --radius: 14px;
  --shadow: 0 20px 60px -25px rgba(20, 19, 43, 0.35);
}

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

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

section { position: relative; }

h1, h2, h3, h4 {
  font-family: var(--display);
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.eyebrow {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--indigo);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.on-dark .eyebrow { color: var(--gold); }
.on-dark .eyebrow::before { background: var(--indigo-light); }

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 42px); line-height: 1.15; }
.section-head p { color: var(--slate); font-size: 17px; margin-top: 16px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-dark); box-shadow: 0 14px 30px -12px rgba(245, 166, 35, 0.6); }
.btn-indigo { background: var(--indigo); color: var(--white); }
.btn-indigo:hover { background: var(--navy); box-shadow: 0 14px 30px -12px rgba(67, 56, 202, 0.55); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.35); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); }
.btn-arrow {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--indigo); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(20, 19, 43, 0.0);
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 22px 0;
}
.site-header.scrolled {
  background: rgba(246, 246, 251, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px -20px rgba(20,19,43,0.4);
  padding: 12px 0;
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--indigo-light), var(--indigo));
  position: relative; flex-shrink: 0;
}
.logo-mark::after {
  content: "";
  position: absolute; inset: 9px;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  background: var(--white);
}
.logo-text { font-family: var(--display); font-weight: 700; font-size: 18px; line-height: 1.1; color: var(--white); }
.site-header.scrolled .logo-text { color: var(--ink); }
.logo-text span { display: block; color: var(--gold); font-size: 12px; letter-spacing: 0.1em; font-weight: 600; }

.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a {
  font-size: 14.5px; font-weight: 500; color: rgba(255,255,255,0.88);
  padding: 6px 0; position: relative;
}
.site-header.scrolled .main-nav a { color: var(--ink); }
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--gold); transition: width 0.2s ease;
}
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 16px; }
.nav-toggle {
  display: none; background: none; border: none; width: 34px; height: 34px;
  flex-direction: column; justify-content: center; gap: 5px;
}
.nav-toggle span { height: 2px; background: var(--white); border-radius: 2px; }
.site-header.scrolled .nav-toggle span { background: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, #5b4bf0 0%, #4338ca 50%, var(--navy) 100%);
  padding: 168px 0 120px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
  pointer-events: none;
}
.hero .wrap { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }

.hero-copy .eyebrow { color: #cfd0ff; }
.hero-copy .eyebrow::before { background: var(--gold); }
.hero-copy h1 {
  color: var(--white);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.06;
  margin-bottom: 22px;
}
.hero-copy h1 em { font-style: normal; color: var(--gold); }
.hero-copy p {
  color: rgba(255,255,255,0.82);
  font-size: 17.5px;
  max-width: 500px;
  margin-bottom: 34px;
}
.hero-stats { display: flex; gap: 30px; margin-top: 44px; }
.hero-stats div strong { display: block; font-family: var(--mono); font-size: 26px; color: var(--white); }
.hero-stats div span { font-size: 13px; color: rgba(255,255,255,0.65); }

.hero-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 32px;
  box-shadow: var(--shadow);
  max-width: 380px;
}
.hero-card h3 { font-size: 21px; margin-bottom: 6px; }
.hero-card p.small { color: var(--slate); font-size: 14px; margin-bottom: 20px; }
.hero-card .btn { width: 100%; justify-content: space-between; margin-bottom: 16px; }
.hero-card .email-line { font-size: 14px; color: var(--slate); text-align: center; }
.hero-card .email-line b { color: var(--ink); }

.hero-visual { position: relative; height: 420px; display: flex; align-items: center; justify-content: center; }

/* CSS-built shipping container — signature hero element */
.container-rig { position: relative; width: 340px; height: 340px; transform: rotate(-6deg); }
.crate {
  position: absolute;
  border-radius: 6px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}
.crate.body {
  width: 300px; height: 170px; left: 20px; top: 90px;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.08) 0 2px, transparent 2px 18px),
    linear-gradient(160deg, var(--indigo-light), var(--navy) 80%);
  transform: perspective(700px) rotateY(-18deg) rotateX(4deg);
}
.crate.body::before {
  content: "PIRIS ROAD";
  position: absolute; left: 24px; top: 30px;
  font-family: var(--display); font-weight: 700; color: var(--white);
  font-size: 26px; letter-spacing: 0.02em; opacity: 0.95;
}
.crate.body::after {
  content: "PR · 4471 — BSR / IST — OSC CERTIFIED";
  position: absolute; left: 24px; bottom: 16px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
}
.crate.end {
  width: 92px; height: 170px; left: 0; top: 96px;
  background: linear-gradient(200deg, var(--gold), var(--gold-dark));
  transform: perspective(700px) rotateY(38deg) skewY(2deg);
  z-index: 1;
}
.crate.top {
  width: 300px; height: 46px; left: 20px; top: 66px;
  background: linear-gradient(100deg, #8f7bff, var(--indigo-light));
  transform: perspective(700px) rotateX(58deg) rotateZ(0deg);
  z-index: 2;
}
.rig-shadow {
  position: absolute; width: 320px; height: 40px; left: 10px; bottom: 20px;
  background: radial-gradient(closest-side, rgba(0,0,0,0.35), transparent 70%);
  filter: blur(2px);
}
.route-orbit {
  position: absolute; inset: -30px;
  border: 1px dashed rgba(255,255,255,0.25);
  border-radius: 50%;
}
.route-orbit svg { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ---------- Manifest route line (signature divider) ---------- */
.route-line {
  position: relative;
  padding: 34px 0;
  background: var(--navy);
  overflow: hidden;
}
.route-line .track {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--container); margin: 0 auto; padding: 0 28px;
  position: relative;
}
.route-line .track::before {
  content: ""; position: absolute; left: 28px; right: 28px; top: 50%;
  height: 1px; background-image: linear-gradient(90deg, rgba(255,255,255,0.3) 0 8px, transparent 8px 16px);
  background-size: 16px 1px; transform: translateY(-50%);
}
.route-line .stop {
  position: relative; z-index: 1; background: var(--navy);
  padding: 0 16px; display: flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.05em;
  color: rgba(255,255,255,0.75);
}
.route-line .stop .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.route-line .stop:first-child, .route-line .stop:last-child { color: var(--gold); font-weight: 600; }

/* ---------- About ---------- */
.about { padding: 120px 0 90px; }
.about .wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: start; }
.about-badges { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
.badge {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.06em;
  border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px;
  color: var(--navy); background: var(--white);
}
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 26px; }
.value-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-card .num { font-family: var(--mono); color: var(--indigo); font-size: 13px; margin-bottom: 12px; }
.value-card h4 { font-size: 17px; margin-bottom: 10px; }
.value-card p { color: var(--slate); font-size: 14.5px; margin: 0; }

/* ---------- Industries ---------- */
.industries { padding: 90px 0; background: var(--white); }
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.industry-card {
  border-radius: var(--radius); padding: 30px 24px;
  background: var(--paper); border: 1px solid var(--line);
  min-height: 168px; display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; overflow: hidden;
}
.industry-card .ico { width: 40px; height: 40px; margin-bottom: 16px; color: var(--indigo); }
.industry-card h4 { font-size: 16.5px; }
.industry-card::after {
  content: ""; position: absolute; right: -30px; top: -30px; width: 110px; height: 110px;
  border-radius: 50%; background: var(--indigo-soft); z-index: 0;
}
.industry-card > * { position: relative; z-index: 1; }

/* ---------- Why / stats ---------- */
.why { padding: 100px 0; background: var(--paper); }
.why .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat-card {
  background: var(--navy); color: var(--white); border-radius: var(--radius);
  padding: 30px 24px;
}
.stat-card strong { display: block; font-family: var(--mono); font-size: 32px; color: var(--gold); }
.stat-card span { font-size: 13.5px; color: rgba(255,255,255,0.7); }
.stat-card.light { background: var(--white); color: var(--ink); border: 1px solid var(--line); }
.stat-card.light strong { color: var(--indigo); }
.stat-card.light span { color: var(--slate); }
.stat-card p.small { font-size: 13px; color: var(--slate); margin-top: 10px; }

/* ---------- Services ---------- */
.services { padding: 100px 0; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 22px; display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.service-card .ico {
  width: 46px; height: 46px; border-radius: 12px; background: var(--indigo-soft);
  display: flex; align-items: center; justify-content: center; color: var(--indigo);
}
.service-card h4 { font-size: 16.5px; }
.service-card p { color: var(--slate); font-size: 13.8px; margin: 0; flex-grow: 1; }
.service-card .tags { display: flex; flex-wrap: wrap; gap: 6px; }
.service-card .tags span {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.02em;
  background: var(--paper); border-radius: 6px; padding: 4px 8px; color: var(--slate);
}
.services-more { text-align: center; margin-top: 44px; }

/* ---------- Process ---------- */
.process { padding: 100px 0; background: var(--navy); color: var(--white); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.process-card { border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 30px 26px; }
.process-card .step { font-family: var(--mono); color: var(--gold); font-size: 13px; margin-bottom: 18px; }
.process-card h4 { color: var(--white); font-size: 19px; margin-bottom: 10px; }
.process-card p { color: rgba(255,255,255,0.68); font-size: 14.5px; margin: 0; }

/* ---------- Philosophy ---------- */
.philosophy { padding: 100px 0; }
.phil-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 10px; }
.phil-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--line); padding: 30px; }
.phil-card h3 { font-size: 19px; margin-bottom: 12px; color: var(--indigo); }
.phil-card p { color: var(--slate); font-size: 14.5px; }
.phil-card ul { margin-top: 10px; }
.phil-card ul li { font-size: 14.5px; color: var(--ink); padding: 6px 0 6px 20px; position: relative; }
.phil-card ul li::before { content: "—"; position: absolute; left: 0; color: var(--gold); }

/* ---------- CTA ---------- */
.cta {
  padding: 100px 0;
  background: linear-gradient(120deg, var(--indigo) 0%, var(--navy) 100%);
  color: var(--white); text-align: center;
}
.cta h2 { color: var(--white); font-size: clamp(30px, 4vw, 46px); }
.cta p { color: rgba(255,255,255,0.75); max-width: 520px; margin: 18px auto 34px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- FAQ ---------- */
.faq { padding: 100px 0; }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 22px 0; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--display); font-size: 16.5px; font-weight: 600; color: var(--ink);
}
.faq-q .plus { font-family: var(--mono); color: var(--indigo); font-size: 20px; transition: transform 0.25s ease; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a p { color: var(--slate); font-size: 14.8px; padding-bottom: 22px; margin: 0; max-width: 680px; }

/* ---------- Contact ---------- */
.contact { padding: 100px 0; background: var(--white); }
.contact .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.contact-info .item { display: flex; gap: 14px; align-items: flex-start; }
.contact-info .ico {
  width: 42px; height: 42px; border-radius: 10px; background: var(--indigo-soft);
  color: var(--indigo); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info h4 { font-size: 15px; margin-bottom: 4px; }
.contact-info p, .contact-info a { color: var(--slate); font-size: 14.5px; margin: 0; }
.contact-form { background: var(--paper); border-radius: var(--radius); padding: 34px; border: 1px solid var(--line); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.contact-form label { font-size: 12.5px; font-family: var(--mono); color: var(--slate); display: block; margin-bottom: 6px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 12px 14px; border-radius: 8px; border: 1px solid var(--line);
  font-family: var(--body); font-size: 14.5px; background: var(--white);
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form .full { grid-column: 1 / -1; }
.form-note { font-size: 12px; color: var(--slate); margin-top: 12px; }

/* ---------- Footer ---------- */
footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 70px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-grid h5 { color: var(--white); font-family: var(--display); font-size: 15px; margin-bottom: 18px; }
.footer-grid ul li { margin-bottom: 10px; font-size: 14px; }
.footer-grid ul li a:hover { color: var(--gold); }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { font-size: 14px; margin: 16px 0 20px; max-width: 300px; color: rgba(255,255,255,0.55); }
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
}
.social-row a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px;
  display: flex; justify-content: space-between; font-size: 13px; flex-wrap: wrap; gap: 10px;
}

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-visual { height: 300px; order: -1; }
  .about .wrap, .why .wrap, .contact .wrap { grid-template-columns: 1fr; }
  .values-grid, .process-grid, .phil-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .service-grid, .industry-grid, .why-stats { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .route-line .track { flex-wrap: wrap; gap: 10px 0; justify-content: center; }
  .route-line .track::before { display: none; }
  .hero-stats { flex-wrap: wrap; }
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed; inset: 0; background: var(--navy); z-index: 200;
  display: flex; flex-direction: column; padding: 28px;
  transform: translateX(100%); transition: transform 0.3s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav .close-btn { align-self: flex-end; background: none; border: none; color: var(--white); font-size: 26px; }
.mobile-nav a { color: var(--white); font-size: 20px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }

/* Multi-page additions */
.logo-image img{width:178px;height:auto}.site-header.scrolled .logo-image img{filter:none}.page-hero{padding:160px 0 90px;background:linear-gradient(135deg,#3568ff,#12399d 65%,#081742);color:#fff;position:relative;overflow:hidden}.page-hero:after{content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.055) 1px,transparent 1px);background-size:54px 54px;mask-image:linear-gradient(#000,transparent)}.page-hero .wrap{position:relative;z-index:1}.page-hero h1{color:#fff;font-size:clamp(42px,6vw,72px);max-width:850px}.page-hero p{max-width:720px;font-size:18px;color:rgba(255,255,255,.82)}.content-section{padding:90px 0}.content-section.alt{background:#fff}.feature-list{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}.feature-box{padding:28px;border-radius:16px;background:#fff;border:1px solid var(--line);box-shadow:0 18px 45px -35px rgba(20,19,43,.5)}.feature-box h3{margin:12px 0 8px}.feature-box .icon{font-size:32px}.two-col{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:start}.rich-copy p{color:var(--slate)}.rich-copy ul{padding-left:20px;color:var(--slate)}.contact-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}.contact-card{background:#fff;padding:28px;border-radius:16px;border:1px solid var(--line)}.contact-card a{color:var(--indigo);font-weight:700}.legal{max-width:820px}.legal h2{margin-top:38px}.service-detail{display:grid;grid-template-columns:80px 1fr;gap:22px;padding:28px 0;border-bottom:1px solid var(--line)}.service-detail .big-icon{font-size:48px}.page-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:28px}@media(max-width:800px){.feature-list,.contact-cards,.two-col{grid-template-columns:1fr}.page-hero{padding-top:130px}.logo-image img{width:145px}}
