@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* Foundation */
:root {
  --ink: #111c1b;
  --ink-soft: #1b2c29;
  --paper: #f7f8f5;
  --white: #fff;
  --line: #dce4df;
  --muted: #52635d;
  --muted-light: #b4c5bf;
  --brand-green: #21b38b;
  --brand-cyan: #0AAFD1;
  --green-text: #08765b;
  --display: 'Space Grotesk', 'Segoe UI', sans-serif;
  --body: 'DM Sans', 'Segoe UI', sans-serif;
  --container: 1200px;
  --radius: 16px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.nav-is-open { overflow: hidden; }
::selection { background: var(--brand-green); color: var(--ink); }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a, summary { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
img, svg { display: block; max-width: 100%; }
button { border: 0; }
p, h1, h2, h3, h4 { margin: 0; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 500; }
h1, h2 { text-wrap: balance; }
a, button, input, textarea, select, summary { touch-action: manipulation; }
:focus-visible { outline: 3px solid var(--brand-cyan); outline-offset: 5px; }
.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: 16px; z-index: 100;
  padding: 12px 18px; border-radius: 8px; background: white; color: var(--ink);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 80px), var(--container)); margin-inline: auto; }
.site-shell { overflow: clip; }
html:not(.js) .site-header { position: static; }
html:not(.js) .hero { padding-top: 64px; }
.contact-form { scroll-margin-top: 16px; }
.section { padding-block: 88px; }
section[id] { scroll-margin-top: -56px; }
#glavni-sadrzaj { scroll-margin-top: 16px; }
.section-heading { margin-bottom: 32px; }
.section-heading--split {
  display: grid; grid-template-columns: 1.15fr 1fr; align-items: end; gap: 56px;
}
.section-intro { max-width: 460px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.section h2 {
  font-size: clamp(34px, 4vw, 50px); letter-spacing: -0.05em; line-height: 1.1;
}
.section h2 span { color: var(--green-text); }
h1 em, h2 em { color: var(--brand-green); font-style: normal; }
.eyebrow {
  display: flex; align-items: center; gap: 10px; margin-bottom: 17px;
  color: var(--muted); font-size: 12px; font-weight: 700;
  letter-spacing: 0.13em; line-height: 1.5; text-transform: uppercase;
}
.eyebrow--light { color: var(--muted-light); }
.eyebrow-dot { width: 7px; height: 7px; flex: 0 0 7px; border-radius: 50%; background: var(--brand-green); }

/* Navigation */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 30;
  color: white; background: rgba(17, 28, 27, 0.88);
  transition: box-shadow 180ms ease, background 180ms ease;
  backdrop-filter: blur(16px);
}
.site-header.is-scrolled { background: rgba(17, 28, 27, 0.97); box-shadow: 0 4px 24px #0002; }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 84px; }
.brand { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-logo { width: 40px; height: 44px; object-fit: contain; }
.brand-copy { display: grid; gap: 4px; line-height: 1; }
.brand-copy strong { font-family: var(--display); font-size: 17px; font-weight: 700; letter-spacing: 0.09em; }
.brand-copy small { color: #9fc8b6; font-size: 9px; letter-spacing: 0.1em; line-height: 1; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 26px; }
.nav-link { position: relative; display: inline-flex; align-items: center; min-height: 44px; color: #c1cdc8; font-size: 14px; font-weight: 500; }
.nav-link::after { position: absolute; inset: auto 0 3px; height: 2px; background: var(--brand-green); content: ''; transform: scaleX(0); transition: transform 180ms ease; }
.nav-link:hover, .nav-link.is-active { color: white; }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }
.nav-cta.button--dark { background: #ffffff0d; border-color: #62726b; }
.nav-cta.button--dark:hover { background: var(--brand-green); border-color: var(--brand-green); color: var(--ink); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 11px; border: 1px solid #73817c; border-radius: 10px; background: transparent; }
.menu-toggle > span:not(.sr-only) { display: block; height: 2px; width: 20px; margin: 5px 0; background: white; transition: transform 180ms ease; }
.menu-toggle[aria-expanded='true'] > span:nth-child(2) { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded='true'] > span:nth-child(3) { transform: translateY(-3.5px) rotate(-45deg); }

/* Actions */
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 18px;
  min-height: 50px; padding: 12px 23px; border: 1px solid transparent; border-radius: 8px;
  font-size: 15px; font-weight: 700; line-height: 1.4; text-align: center;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.button span { font-size: 20px; font-weight: 400; }
.button--small { min-height: 44px; padding: 10px 17px; font-size: 14px; }
.button--lime { background: var(--brand-green); color: var(--ink); }
.button--lime:hover { background: #4acaa6; }
.button--dark { background: var(--ink); color: white; }
.button--dark:hover { background: #2c4640; }
.button--outline { border-color: #acbfb4; background: transparent; color: var(--ink); }
.button--outline:hover { background: var(--ink); color: white; border-color: var(--ink); }
.button--full { width: 100%; margin-top: auto; }
.text-link {
  display: inline-flex; align-items: center; gap: 12px; width: fit-content; min-height: 44px;
  font-size: 15px; font-weight: 700; line-height: 1.45;
  text-decoration: underline; text-underline-offset: 5px; text-decoration-thickness: 1px;
}
.text-link span { flex-shrink: 0; font-size: 20px; font-weight: 400; }
.text-link:hover { color: var(--green-text); }
.text-link--light { color: white; }
.text-link--light:hover { color: var(--brand-green); }

/* Hero and decorative website preview */
.hero { position: relative; padding-top: 148px; overflow: hidden; background: var(--ink); color: #f5f9f7; }
.hero::before {
  position: absolute; inset: 0; content: ''; pointer-events: none;
  background-image: linear-gradient(#ffffff03 1px, transparent 1px), linear-gradient(90deg, #ffffff03 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-glow { position: absolute; width: 640px; height: 640px; border-radius: 50%; pointer-events: none; }
.hero-glow--one { top: -340px; left: -200px; background: radial-gradient(circle, #0aafd124, transparent 65%); }
.hero-glow--two { right: -200px; bottom: -320px; background: radial-gradient(circle, #21b38b25, transparent 65%); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
.hero-content h1 { max-width: 620px; font-size: clamp(50px, 5.8vw, 80px); letter-spacing: -0.06em; line-height: 1.04; }
.hero-content h1 em { display: block; }
.hero-lead { max-width: 525px; margin-top: 24px; color: #bdcdc6; font-size: 18px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px; margin-top: 28px; }
.hero-proof { display: flex; align-items: center; gap: 12px; margin-top: 32px; color: #b4c5bf; font-size: 14px; line-height: 1.5; }
.hero-proof strong { color: #f4f8f6; font-weight: 500; }
.proof-mark { display: grid; place-items: center; flex: 0 0 38px; height: 38px; border: 1px solid #21b38b66; border-radius: 50%; color: var(--brand-green); font-size: 24px; }
.proof-mark svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; }
.proof-mark .proof-dot { fill: currentColor; stroke: none; }
.hero-visual { position: relative; min-height: 445px; }
.visual-grid { position: absolute; inset: -30px; background-image: linear-gradient(#21b38b18 1px, transparent 1px), linear-gradient(90deg, #21b38b18 1px, transparent 1px); background-size: 30px 30px; mask-image: radial-gradient(ellipse, black, transparent 70%); }
.visual-orbit { position: absolute; top: 50%; left: 50%; width: 110%; height: 230px; border: 1px solid #21b38b40; border-radius: 50%; transform: translate(-50%, -50%) rotate(-30deg); }
.visual-orbit--inner { width: 90%; height: 260px; border-color: #0aafd133; transform: translate(-50%, -50%) rotate(40deg); }
.orbit-point { position: absolute; top: 0; left: 0; width: 8px; height: 8px; border-radius: 50%; background: var(--brand-cyan); box-shadow: 0 0 0 5px #0aafd11c, 0 0 16px #0aafd180; offset-path: ellipse(50% 50% at 50% 50%); offset-rotate: 0deg; }
.orbit-point--one { offset-distance: 15%; }
.orbit-point--two { offset-distance: 65%; background: var(--brand-green); box-shadow: 0 0 0 5px #21b38b1c, 0 0 16px #21b38b80; }
.product-window { position: absolute; top: 30px; left: 2%; width: 94%; overflow: hidden; border: 1px solid #ffffff24; border-radius: 14px; background: #223a33; box-shadow: 20px 30px 60px #0004; transform: rotate(-4deg); }
.window-bar { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px; min-height: 42px; padding: 12px 16px; border-bottom: 1px solid #ffffff18; color: #b8c9c0; font-size: 10px; }
.window-dots { display: flex; gap: 5px; }
.window-dots span { width: 6px; height: 6px; border-radius: 50%; background: #9eb1a6; }
.window-signal { justify-self: end; }
.window-signal i { display: inline-block; width: 5px; height: 5px; margin-right: 3px; border-radius: 50%; background: var(--brand-green); }
.window-body { position: relative; padding: 34px 32px 70px; background: radial-gradient(ellipse at top right, #0aafd127, transparent 70%), #213a31; }
.window-body::before { position: absolute; right: 26px; top: 35px; width: 130px; height: 130px; border: 1px solid #21b38b55; border-radius: 50%; box-shadow: 0 0 0 20px #21b38b0d; content: ''; }
.window-kicker { position: relative; color: #83dfc5; font-size: 10px; font-weight: 600; letter-spacing: 0.14em; }
.window-title { position: relative; margin-block: 30px 18px; font-family: var(--display); font-size: clamp(46px, 4.3vw, 64px); letter-spacing: -0.07em; line-height: 1.04; }
.window-title span { color: var(--brand-green); }
.window-footer { position: absolute; bottom: 30px; left: 32px; display: flex; gap: 16px; color: #b5c8be; font-size: 11px; }
.window-arrow { position: absolute; right: 28px; bottom: 24px; display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--brand-green); border-radius: 50%; color: var(--brand-green); font-size: 24px; }
.floating-card { position: absolute; z-index: 2; border: 1px solid #526c60; border-radius: 10px; background: #20362dee; box-shadow: 0 12px 24px #0003; }
.floating-card--status { right: -8px; bottom: 33px; max-width: 236px; padding: 17px 20px; transform: rotate(3deg); }
.floating-label { display: block; margin-bottom: 5px; color: #adc6b9; font-size: 11px; }
.floating-card--status strong { display: block; font-family: var(--display); font-size: 15px; font-weight: 500; }
.floating-card--status small { display: block; margin-top: 5px; color: #b8cbc2; font-size: 12px; }
.floating-card--metric { top: 8px; left: -18px; display: flex; align-items: center; gap: 12px; padding: 13px 17px; background: #e6f7ef; color: var(--ink); transform: rotate(3deg); }
.metric-icon { color: var(--green-text); font-size: 27px; }
.floating-card--metric strong, .floating-card--metric small { display: block; }
.floating-card--metric strong { font-size: 16px; }
.floating-card--metric small { color: var(--muted); font-size: 12px; }
.hero-services { position: relative; margin-top: 64px; border-top: 1px solid #ffffff1c; }
.hero-services > .container { display: flex; align-items: center; gap: 36px; padding-block: 18px; color: #c9d6ce; font-size: 14px; }
.hero-services > .container > span::before { display: inline-block; width: 5px; height: 5px; margin: 0 10px 3px 0; border-radius: 50%; background: var(--brand-cyan); content: ''; }
.hero-services a { display: inline-flex; align-items: center; gap: 20px; min-height: 44px; margin-left: auto; color: white; }
.hero-services a:hover { color: var(--brand-green); }

/* Services: the main offer leads, while the important secondary offer gets its own spotlight. */
.services-section { background: var(--paper); }
.services-offer { display: grid; grid-template-columns: minmax(0, 1.32fr) minmax(290px, .88fr); gap: 16px; }
.website-service { display: grid; grid-template-columns: 1.08fr 1fr; align-items: center; gap: 44px; min-height: 350px; padding: 34px 36px; border-radius: var(--radius); background: var(--ink); color: white; }
.service-label { display: flex; align-items: center; gap: 8px; margin-bottom: 9px; color: #93e2c9; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; }
.service-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-green); }
.website-service h3 { font-size: clamp(28px, 3vw, 36px); line-height: 1.2; letter-spacing: -0.04em; }
.website-service-copy > p:not(.service-label) { max-width: 550px; margin-top: 12px; color: #c1d0c9; font-size: 16px; line-height: 1.65; }
.service-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-top: 24px; }
.service-starting-price { color: #bdcdc5; font-size: 15px; }
.service-starting-price strong { color: white; font-size: 19px; font-weight: 500; white-space: nowrap; }
.website-benefits { display: grid; gap: 20px; align-content: center; list-style: none; margin: 0; padding: 0 0 0 36px; border-left: 1px solid #ffffff25; }
.website-benefits li { display: flex; align-items: start; gap: 12px; }
.benefit-check { display: grid; place-items: center; flex: 0 0 22px; height: 22px; margin-top: 2px; border-radius: 50%; background: #21b38b22; color: #7be0bf; font-size: 13px; }
.website-benefits strong { display: block; font-size: 16px; font-weight: 600; }
.website-benefits p { margin-top: 2px; color: #b9ccc1; font-size: 15px; line-height: 1.55; }
.application-service { position: relative; display: flex; min-height: 350px; flex-direction: column; gap: 18px; overflow: hidden; padding: 30px; border: 1px solid #86d6d0; border-radius: var(--radius); background: linear-gradient(145deg, #dff8ef 0%, #c5f0f1 100%); color: var(--ink); box-shadow: 0 16px 35px #0aafd116; }
.application-service::after { position: absolute; right: -80px; bottom: -110px; width: 250px; height: 250px; border: 1px solid #0aafd14d; border-radius: 50%; box-shadow: 0 0 0 26px #0aafd112, 0 0 0 52px #0aafd10b; content: ''; pointer-events: none; }
.application-service-heading { position: relative; z-index: 1; display: flex; align-items: flex-start; gap: 16px; }
.application-service .service-label { color: #075d67; font-size: 11px; margin-bottom: 3px; }
.application-service h3 { font-size: clamp(27px, 2.5vw, 34px); letter-spacing: -0.04em; line-height: 1.15; }
.application-service > p { position: relative; z-index: 1; color: #174e51; font-size: 16px; line-height: 1.6; }
.application-service .text-link { position: relative; z-index: 1; max-width: 100%; margin-top: auto; color: var(--ink); font-size: 14px; }
.application-examples { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; list-style: none; margin: 0; padding: 0; }
.application-examples li { padding: 8px 9px; border: 1px solid #54bfc0; border-radius: 6px; background: #ffffff80; color: #174e51; font-size: 12px; font-weight: 600; line-height: 1.25; }
.service-icon { display: grid; place-items: center; flex: 0 0 42px; width: 42px; height: 42px; border: 1px solid #d0e3dc; border-radius: 10px; color: var(--green-text); background: #ebf5ef; }
.service-icon svg { width: 26px; height: 26px; }
.application-service .service-icon { color: #07758a; background: #dbf1f5; border-color: #b5dee5; width: 48px; height: 48px; flex-basis: 48px; }
.support-heading { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 4px 20px; margin-top: 32px; margin-bottom: 4px; }
.support-heading h3 { font-size: 21px; letter-spacing: -0.02em; }
.support-heading p { color: var(--muted); font-size: 14px; }
.support-services { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 40px; }
.support-service { display: flex; align-items: start; gap: 16px; padding-block: 22px; border-bottom: 1px solid var(--line); }
.support-service h4 { margin-top: 1px; font-size: 19px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.35; }
.support-service p { margin-top: 6px; color: var(--muted); font-size: 15px; line-height: 1.6; }
.services-help { display: flex; align-items: center; flex-wrap: wrap; gap: 6px 20px; margin-top: 20px; font-size: 15px; color: var(--muted); }
.services-help .text-link { color: var(--green-text); }

/* Clear, non-interactive process steps */
.process-section { background: var(--ink); color: white; }
.process-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: start; gap: 80px; }
.process-intro > p:not(.eyebrow) { max-width: 420px; margin: 24px 0 18px; color: var(--muted-light); font-size: 17px; }
.process-list { border-top: 1px solid #ffffff25; }
.process-item { display: grid; grid-template-columns: 36px 1fr; gap: 18px; padding: 23px 0; border-bottom: 1px solid #ffffff25; }
.process-number { padding-top: 4px; font-family: var(--display); font-size: 14px; color: var(--brand-green); }
.process-item h3 { font-size: 23px; letter-spacing: -0.03em; line-height: 1.3; }
.process-item p { margin-top: 7px; color: var(--muted-light); font-size: 16px; }

/* Pricing */
.packages-section { background: #eff3ee; }
.packages-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; align-items: start; }
.package-card { position: relative; display: flex; flex-direction: column; padding: 26px; border: 1px solid #d2ddd3; border-radius: var(--radius); background: white; }
.package-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.package-label { color: var(--muted); font-size: 12px; font-weight: 600; letter-spacing: 0.05em; }
.package-index { color: #63766b; font-family: var(--display); font-size: 12px; }
.package-card h3 { font-size: clamp(24px, 2.1vw, 29px); letter-spacing: -0.04em; line-height: 1.2; }
.package-card > p { margin-top: 10px; min-height: 52px; color: var(--muted); font-size: 15px; line-height: 1.6; }
.price { display: flex; align-items: baseline; gap: 8px; margin: 22px 0; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.price strong { font-family: var(--display); font-size: 45px; font-weight: 500; letter-spacing: -0.06em; line-height: 1; }
.price > span { font-size: 15px; font-weight: 600; color: var(--muted); }
.feature-list { display: grid; gap: 10px; list-style: none; margin: 0 0 26px; padding: 0; }
.feature-list li { position: relative; padding-left: 22px; color: #394e42; font-size: 15px; line-height: 1.5; }
.feature-list li::before { position: absolute; left: 0; color: var(--green-text); content: '✓'; font-size: 14px; font-weight: 700; }
.package-card--featured { border-color: #2c7461; background: var(--ink-soft); color: white; }
.package-card--featured .package-label, .package-card--featured > p, .package-card--featured .price > span { color: #c1d4c9; }
.package-card--featured .package-index { visibility: hidden; }
.package-card--featured .price { border-color: #ffffff30; }
.package-card--featured .feature-list li { color: #d3e2d9; }
.package-card--featured .feature-list li::before { color: var(--brand-green); }
.package-badge { position: absolute; right: 18px; top: 18px; border-radius: 5px; padding: 5px 9px; background: var(--brand-cyan); color: var(--ink); font-size: 12px; font-weight: 700; }
.package-notes { display: grid; grid-template-columns: 26px 1fr; gap: 10px 14px; margin-top: 24px; padding: 22px; border-radius: 10px; background: #e3ebe3; }
.note-mark { display: grid; place-items: center; width: 24px; height: 24px; border: 1px solid #7d9784; border-radius: 50%; color: #355841; font-size: 13px; }
.package-notes p { color: #495f4e; font-size: 14px; line-height: 1.7; }
.package-notes p strong { color: #233c2a; }
.package-notes .text-link { grid-column: 2; min-height: 38px; }

/* Web applications, with a clearly labelled illustrative interface */
.applications-section { background: white; }
.applications-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; }
.app-showcase { position: relative; padding: 25px 20px 0; }
.app-backdrop { position: absolute; inset: 0 0 40px; border-radius: 28px; background: linear-gradient(135deg, #e3f5ec, #def1f5); transform: rotate(-4deg); }
.app-panel { position: relative; overflow: hidden; padding: 24px; border: 1px solid #d7e8df; border-radius: 16px; background: white; box-shadow: 0 16px 40px #17362a12; }
.app-panel-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.app-logo { font-family: var(--display); font-size: 23px; font-weight: 700; letter-spacing: -0.08em; }
.app-logo > span { color: var(--brand-green); }
.app-demo-label { padding: 4px 9px; border-radius: 4px; background: #f0f5f1; color: var(--muted); font-size: 11px; }
.app-welcome { display: grid; gap: 6px; margin-top: 22px; }
.app-welcome > span { color: var(--green-text); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; }
.app-welcome strong { font-family: var(--display); font-weight: 500; font-size: 30px; line-height: 1.15; letter-spacing: -0.05em; }
.app-welcome small { color: var(--muted); font-size: 13px; }
.app-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-block: 22px; }
.app-stats > div { display: grid; gap: 6px; padding: 14px; border: 1px solid #dce7df; border-radius: 8px; background: #f4f8f4; }
.app-stats > div:last-child { background: #eff8fa; border-color: #d4e8ed; }
.app-stats small { color: var(--muted); font-size: 12px; }
.app-stats strong { font-family: var(--display); font-size: 28px; font-weight: 500; line-height: 1; letter-spacing: -0.05em; }
.schedule-heading { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 8px; font-size: 12px; }
.schedule-heading > span { color: var(--muted); font-size: 10px; }
.schedule-row { display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 10px; padding: 12px 0; border-top: 1px solid #e6ede7; font-size: 12px; }
.order-code { color: #587361; font-family: var(--display); font-size: 11px; }
.order-details { display: grid; gap: 2px; min-width: 0; }
.order-details strong { overflow: hidden; font-size: 12px; font-weight: 600; text-overflow: ellipsis; white-space: nowrap; }
.order-details small { overflow: hidden; color: var(--muted); font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.schedule-status { padding: 3px 6px; border-radius: 4px; background: #e1f3e8; color: #256747; font-size: 9px; white-space: nowrap; }
.schedule-status--pending { background: #f8f0db; color: #795c1c; }
.app-caption { position: relative; margin: 22px 0 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.lead-copy { margin-top: 24px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.app-features { display: grid; gap: 20px; margin: 26px 0; }
.app-features > div { display: flex; gap: 12px; align-items: start; }
.check-icon { display: grid; place-items: center; flex: 0 0 23px; height: 23px; margin-top: 2px; border-radius: 50%; background: #e3f5ec; color: var(--green-text); font-size: 13px; }
.app-features strong { display: block; font-size: 17px; font-weight: 600; }
.app-features small { display: block; margin-top: 3px; color: var(--muted); font-size: 15px; line-height: 1.6; }
.app-price-note { margin-bottom: 20px; color: var(--muted); font-size: 14px; }

/* About and FAQ */
.about-section { background: #eaf0e9; }
.about-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 80px; }
.about-since { display: inline-flex; align-items: center; gap: 9px; margin-top: 28px; padding: 10px 14px; border: 1px solid #b7d1bc; border-radius: 999px; color: var(--green-text); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; line-height: 1; text-transform: uppercase; }
.about-since > span { width: 7px; height: 7px; flex: 0 0 7px; border-radius: 50%; background: var(--brand-green); }
.about-lead { color: #20392a; font-size: 22px; line-height: 1.55; }
.about-copy > p:not(.about-lead) { margin: 20px 0 16px; color: var(--muted); font-size: 16px; }
.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.principle-card { display: flex; align-items: start; gap: 14px; padding-top: 22px; border-top: 1px solid #c4d4c3; }
.principle-card > span { margin-top: 3px; color: var(--green-text); font-family: var(--display); font-size: 13px; }
.principle-card h3 { font-size: 20px; letter-spacing: -0.03em; }
.principle-card p { margin-top: 8px; color: var(--muted); font-size: 15px; }
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 80px; }
.faq-intro > p:not(.eyebrow) { max-width: 340px; margin: 24px 0 16px; color: var(--muted); font-size: 16px; }
.faq-list { border-top: 1px solid #cbd8ce; }
.faq-item { border-bottom: 1px solid #cbd8ce; }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 22px 0; list-style: none; font-size: 17px; font-weight: 600; line-height: 1.5; cursor: pointer; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus { position: relative; flex: 0 0 28px; height: 28px; border: 1px solid #91aa97; border-radius: 50%; }
.faq-plus::before, .faq-plus::after { position: absolute; top: 13px; left: 8px; width: 10px; height: 1px; background: var(--ink); content: ''; }
.faq-plus::after { transform: rotate(90deg); transition: transform 180ms ease; }
.faq-item[open] .faq-plus { background: var(--brand-green); border-color: var(--brand-green); }
.faq-item[open] .faq-plus::after { transform: rotate(0); }
.faq-item p { margin: -2px 42px 22px 0; color: var(--muted); font-size: 16px; line-height: 1.7; }

/* Contact: honest email handoff, readable labels */
.contact-section { padding-block: 88px; background: var(--ink); color: white; }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: start; }
.contact-intro h2 { max-width: 520px; font-size: clamp(38px, 4.5vw, 58px); letter-spacing: -0.055em; line-height: 1.08; }
.contact-intro > p:not(.eyebrow) { max-width: 390px; margin-top: 24px; color: var(--muted-light); font-size: 17px; }
.contact-details { display: grid; gap: 20px; margin-top: 32px; }
.contact-details a, .contact-details > span { display: flex; align-items: center; gap: 14px; width: fit-content; min-height: 44px; font-size: 18px; }
.contact-details a:hover { color: var(--brand-green); }
.contact-details a > span:last-child, .contact-details > span > span:last-child { display: grid; gap: 2px; }
.contact-details small { color: var(--muted-light); font-size: 12px; }
.detail-icon { display: grid; place-items: center; flex: 0 0 40px; width: 40px; height: 40px; border: 1px solid #496458; border-radius: 10px; color: var(--brand-green); }
.detail-icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.contact-socials { margin-top: 28px; }
.contact-socials > p { margin-bottom: 10px; color: var(--muted-light); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.social-links { display: flex; flex-wrap: wrap; gap: 10px; }
.social-link { display: inline-flex; align-items: center; gap: 8px; min-height: 40px; padding: 8px 12px; border: 1px solid #496458; border-radius: 8px; color: #d2e0d7; font-size: 14px; font-weight: 600; transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease; }
.social-icon { width: 17px; height: 17px; flex: 0 0 17px; fill: currentColor; stroke: none; }
.social-link:nth-child(2) .social-icon { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.social-link:hover { transform: translateY(-2px); border-color: var(--brand-green); background: #21b38b18; color: var(--brand-green); }
@keyframes contact-location-bob {
  0%, 100% { box-shadow: 0 0 0 0 #21b38b00; transform: translateY(0) scale(1); }
  50% { box-shadow: 0 0 0 5px #21b38b16; transform: translateY(-3px) scale(1.05); }
}
.contact-details a .detail-icon, .contact-details > span .detail-icon { animation: contact-location-bob 3.2s ease-in-out infinite; }
.contact-details a:nth-child(1) .detail-icon { animation-delay: -1.05s; }
.contact-phone .detail-icon { animation-delay: -2.1s; }
.contact-form { position: relative; min-width: 0; padding: 28px; border: 1px solid #3e574a; border-radius: var(--radius); background: #1c2c25; }
.form-heading { margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid #41564a; }
.form-heading h3 { font-size: 24px; letter-spacing: -0.03em; }
.form-heading p { margin-top: 7px; color: #b6c9bf; font-size: 14px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 8px; margin-bottom: 20px; min-width: 0; }
.field > span { color: #d2e0d7; font-size: 14px; font-weight: 500; }
.field b, .form-bottom b { color: var(--brand-green); font-weight: 500; }
.field input, .field select, .field textarea { width: 100%; min-width: 0; border: 1px solid #658270; border-radius: 7px; background: #24372c; color: #f5faf6; font-size: 16px; outline: none; }
.field input, .field select { height: 50px; padding: 0 12px; }
.field select { color-scheme: dark; padding-right: 28px; text-overflow: ellipsis; }
.field textarea { min-height: 125px; padding: 12px; line-height: 1.55; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #a6b9ac; opacity: 1; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand-green); box-shadow: 0 0 0 3px #21b38b25; }
.form-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.form-bottom p { color: #b6c9bf; font-size: 13px; }
.form-privacy-note { margin-top: 16px; color: #aebfb7; font-size: 12px; line-height: 1.65; }
.form-privacy-note a { color: #d8eee1; text-decoration: underline; text-underline-offset: 3px; }
.form-status { margin-top: 14px; color: #8bdfbc; font-size: 14px; }
.form-status.is-error { color: #ffb9a9; }
.form-status:empty { display: none; }
.form-trap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.selected-package { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 22px; padding: 12px 14px; border: 1px solid #4b8e74; border-radius: 8px; background: #21b38b16; color: #d8eee1; font-size: 14px; }
.selected-package strong { display: block; }
.selected-package button { min-height: 44px; padding: 8px 4px; color: #b8e9d2; background: transparent; font-size: 13px; text-decoration: underline; text-underline-offset: 3px; }

/* Footer */
.site-footer { background: var(--ink); color: white; }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 30px; border-top: 1px solid #3a5244; border-bottom: 1px solid #3a5244; }
.footer-top > p { color: var(--muted-light); font-size: 14px; }
.footer-arrow { display: grid; place-items: center; flex: 0 0 44px; height: 44px; border: 1px solid #718979; border-radius: 50%; color: var(--brand-green); font-size: 23px; }
.footer-arrow:hover { background: var(--brand-green); color: var(--ink); }
.footer-back-to-top { display: inline-flex; align-items: center; gap: 12px; min-height: 44px; color: var(--muted-light); font-size: 14px; font-weight: 600; }
.footer-back-to-top:hover { color: white; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px 24px; padding-block: 24px; color: #a3b7aa; font-size: 12px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { display: inline-flex; align-items: center; min-height: 44px; }
.footer-links a:hover { color: white; }
.legal-header { position: static; }
.legal-back { display: inline-flex; align-items: center; gap: 10px; min-height: 44px; color: #c1cdc8; font-size: 14px; font-weight: 600; }
.legal-back > span { color: var(--brand-green); font-size: 19px; }
.legal-back:hover { color: white; }
.legal-page { padding-block: 88px 104px; background: var(--paper); }
.legal-page h1 { max-width: 760px; font-size: clamp(42px, 6vw, 72px); letter-spacing: -0.06em; line-height: 1.05; }
.legal-lead { max-width: 720px; margin-top: 22px; color: var(--muted); font-size: 18px; line-height: 1.7; }
.legal-date { margin-top: 14px; color: #6b7c73; font-size: 13px; }
.legal-content { max-width: 820px; margin-top: 54px; }
.legal-section { padding-block: 28px; border-top: 1px solid var(--line); }
.legal-section h2 { font-size: 25px; letter-spacing: -0.035em; line-height: 1.25; }
.legal-section p, .legal-section li { color: var(--muted); font-size: 16px; line-height: 1.75; }
.legal-section p + p { margin-top: 14px; }
.legal-section ul { margin: 14px 0 0 22px; padding: 0; }
.legal-section li + li { margin-top: 6px; }
.legal-section a { color: var(--green-text); text-decoration: underline; text-underline-offset: 3px; }
.legal-note { margin-top: 18px; padding: 18px 20px; border-left: 3px solid var(--brand-green); background: #e4eee8; }
.toast { position: fixed; right: 24px; bottom: 24px; z-index: 60; max-width: 380px; padding: 15px 18px; border: 1px solid #4a9779; border-radius: 10px; background: var(--ink); box-shadow: 0 12px 30px #0003; color: white; font-size: 14px; line-height: 1.5; opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity 180ms ease, transform 180ms ease; }
.toast.is-visible { opacity: 1; transform: translateY(0); }

/* Tablet */
@media (max-width: 1100px) {
  .container { width: min(calc(100% - 48px), var(--container)); }
  .main-nav { gap: 18px; }
  .hero-grid { gap: 38px; }
  .hero-content h1 { font-size: 64px; }
  .hero-lead { font-size: 17px; }
  .hero-visual { min-height: 420px; }
  .window-title { font-size: 48px; }
  .window-body { padding-inline: 26px; }
  .website-service { gap: 28px; padding: 28px; }
  .website-benefits { padding-left: 28px; }
  .application-service { padding: 28px; }
  .process-grid, .applications-grid, .about-grid, .faq-grid, .contact-grid { gap: 44px; }
  .package-card { padding: 23px; }
  .package-card h3 { font-size: 25px; }
  .app-showcase { padding-inline: 10px; }
  .app-panel { padding: 20px; }
  .schedule-row { grid-template-columns: 34px 1fr; gap: 5px 10px; }
  .schedule-status { grid-column: 2; width: fit-content; }
}
@media (max-width: 900px) {
  .section, .contact-section { padding-block: 64px; }
  section[id] { scroll-margin-top: -32px; }
  .section-heading--split { gap: 32px; grid-template-columns: 1fr 1fr; }
  .section-intro { font-size: 16px; }
  .main-nav { gap: 16px; }
  .nav-cta { display: none; }
  .hero { padding-top: 130px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-content { max-width: 660px; }
  .hero-content h1 { max-width: 650px; font-size: 68px; }
  .hero-lead { max-width: 620px; }
  .hero-visual { display: none; }
  .hero-services { margin-top: 44px; }
  .hero-services > .container { gap: 24px; }
  .website-service { grid-template-columns: 1fr 1fr; gap: 24px; }
  .website-benefits { padding-left: 24px; }
  .website-benefits strong { font-size: 15px; }
  .website-benefits p { font-size: 14px; }
  .service-actions { gap: 12px; }
  .support-services { column-gap: 28px; }
  .process-grid { grid-template-columns: 1fr 1.1fr; gap: 32px; }
  .process-item h3 { font-size: 21px; }
  .process-item { grid-template-columns: 28px 1fr; gap: 12px; }
  .process-intro > p:not(.eyebrow) { font-size: 16px; }
  .packages-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .package-card { padding: 26px; }
  .applications-grid { grid-template-columns: 1fr; gap: 40px; }
  .applications-copy { grid-row: 1; }
  .applications-copy .lead-copy { max-width: 660px; }
  .app-features { max-width: 640px; }
  .app-showcase { width: 100%; max-width: 530px; justify-self: center; }
  .schedule-row { grid-template-columns: 38px 1fr auto; gap: 10px; }
  .schedule-status { grid-column: auto; }
  .about-grid, .faq-grid { grid-template-columns: 1fr 1.2fr; gap: 32px; }
  .about-lead { font-size: 19px; }
  .principles-grid { gap: 22px; }
  .principle-card { flex-direction: column; gap: 8px; }
  .contact-grid { grid-template-columns: 1fr 1.15fr; gap: 32px; }
  .contact-form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-intro > p:not(.eyebrow) { font-size: 16px; }
  .contact-details a, .contact-details > span { font-size: 16px; gap: 10px; }
}

@media (max-width: 820px) {
  .services-offer { grid-template-columns: 1fr; }
  .application-service { min-height: 0; }
}

/* Mobile navigation and single-column content */
@media (max-width: 700px) {
  html { scroll-padding-top: 72px; }
  .container { width: calc(100% - 40px); }
  .section, .contact-section { padding-block: 56px; }
  .section h2 { font-size: 36px; }
  .section-heading--split { grid-template-columns: 1fr; gap: 18px; }
  .section-heading { margin-bottom: 26px; }
  .section-intro { max-width: 540px; }
  .eyebrow { margin-bottom: 14px; font-size: 11px; }
  .nav-wrap { min-height: 72px; flex-wrap: wrap; }
  .brand-logo { width: 36px; height: 40px; }
  .brand-copy strong { font-size: 15px; }
  .brand-copy small { font-size: 9px; }
  .main-nav { width: 100%; flex-wrap: wrap; gap: 8px 20px; padding-bottom: 16px; }
  .js .menu-toggle { display: block; }
  .js .main-nav {
    position: absolute; top: 71px; left: 0; right: 0; display: flex; align-items: stretch;
    flex-direction: column; flex-wrap: nowrap; gap: 0; padding: 16px 20px 24px;
    max-height: calc(100dvh - 72px); overflow-y: auto;
    border-bottom: 1px solid #41594b; background: var(--ink);
    visibility: hidden; opacity: 0; pointer-events: none;
  }
  .js .main-nav.is-open { visibility: visible; opacity: 1; pointer-events: auto; }
  .js .main-nav .nav-link { min-height: 50px; border-bottom: 1px solid #ffffff16; font-size: 17px; }
  .js .nav-link::after { display: none; }
  .js .nav-link.is-active { color: #64d4b3; }
  .js .nav-cta { display: inline-flex; margin-top: 18px; }
  .site-header:has(.main-nav.is-open) { background: var(--ink); }
  .hero { padding-top: 124px; }
  .hero-content h1 { font-size: clamp(45px, 9.5vw, 62px); letter-spacing: -0.055em; }
  .hero-lead { font-size: 16px; margin-top: 22px; }
  .hero-actions { gap: 12px 20px; margin-top: 24px; }
  .hero-proof { margin-top: 24px; font-size: 13px; }
  .hero-services { margin-top: 36px; }
  .hero-services > .container { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 12px; padding-block: 16px; font-size: 12px; }
  .hero-services > .container > span::before { margin-right: 7px; width: 4px; height: 4px; }
  .hero-services a { min-height: 36px; margin-left: 0; gap: 10px; }
  .services-offer { grid-template-columns: 1fr; gap: 12px; }
  .website-service { grid-template-columns: 1fr; gap: 26px; min-height: 0; padding: 26px 24px; }
  .website-service h3 { font-size: 29px; }
  .website-benefits { gap: 17px; border-left: 0; border-top: 1px solid #ffffff25; padding: 24px 0 0; }
  .website-benefits strong { font-size: 16px; }
  .website-benefits p { font-size: 15px; }
  .website-benefits li:not(:last-child) p { display: none; }
  .service-actions { gap: 18px; margin-top: 22px; }
  .service-actions .button { padding-inline: 18px; }
  .application-service { min-height: 0; gap: 15px; padding: 24px; }
  .application-service .text-link { font-size: 15px; }
  .application-service h3 { font-size: 24px; }
  .support-heading { margin-top: 28px; }
  .support-heading h3 { font-size: 20px; }
  .support-services { grid-template-columns: 1fr; }
  .support-service { padding-block: 20px; }
  .support-service h4 { font-size: 18px; }
  .support-service p { font-size: 15px; }
  .services-help { align-items: start; flex-direction: column; gap: 4px; margin-top: 20px; }
  .services-help .text-link { font-size: 14px; }
  .process-grid, .about-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .process-intro > p:not(.eyebrow) { max-width: none; }
  .process-item { padding-block: 22px; grid-template-columns: 30px 1fr; gap: 14px; }
  .process-item p { font-size: 15px; }
  .packages-grid { gap: 16px; }
  .package-card { padding: 22px; }
  .package-card h3 { font-size: 26px; }
  .package-card > p { min-height: 0; }
  .feature-list li { font-size: 15px; }
  .package-notes { padding: 20px; gap: 12px; }
  .package-notes p { font-size: 14px; }
  .app-showcase { padding: 16px 5px 0; }
  .applications-grid { gap: 32px; }
  .lead-copy { font-size: 16px; margin-top: 20px; }
  .app-features { gap: 18px; margin-block: 24px; }
  .app-features strong { font-size: 16px; }
  .app-features small { font-size: 15px; }
  .about-lead { font-size: 20px; }
  .principles-grid { grid-template-columns: 1fr; gap: 0; margin-top: 28px; }
  .principle-card { flex-direction: row; gap: 16px; padding-block: 20px; }
  .principle-card h3 { font-size: 20px; }
  .principle-card p { margin-top: 4px; }
  .faq-intro > p:not(.eyebrow) { max-width: none; }
  .faq-item summary { padding-block: 20px; font-size: 16px; gap: 16px; }
  .faq-item p { margin-right: 0; font-size: 15px; }
  .contact-intro h2 { font-size: 42px; }
  .contact-intro > p:not(.eyebrow) { max-width: 540px; margin-top: 20px; }
  .contact-details { margin-top: 24px; gap: 16px; }
  .contact-details a, .contact-details > span { font-size: 18px; }
  .contact-form { padding: 24px; }
  .form-heading h3 { font-size: 24px; }
  .form-row { grid-template-columns: 1fr 1fr; gap: 14px; }
  .footer-top { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 20px; padding-block: 26px; }
  .footer-top > p { grid-column: 1; font-size: 13px; }
  .footer-back-to-top { grid-column: 2; grid-row: 1; justify-self: end; }
  .footer-bottom { align-items: start; flex-direction: column; gap: 10px; padding-block: 22px; }
  .toast { right: 16px; bottom: 16px; left: 16px; max-width: none; }
}
@media (max-width: 520px) {
  .packages-grid { grid-template-columns: 1fr; }
  .package-card { padding: 25px; }
  .package-head { margin-bottom: 12px; }
  .package-card h3 { font-size: 28px; }
  .package-card > p { max-width: 360px; }
  .price { margin-block: 20px; }
  .feature-list { margin-bottom: 24px; }
  .package-notes { grid-template-columns: 1fr; }
  .note-mark { display: none; }
  .package-notes .text-link { grid-column: 1; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 380px) {
  .container { width: calc(100% - 32px); }
  .hero-content h1 { font-size: clamp(34px, 10.5vw, 40px); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 6px; }
  .section h2 { font-size: 33px; }
  .website-service, .application-service { padding: 22px 20px; }
  .website-service h3 { font-size: 27px; }
  .website-service-copy > p:not(.service-label) { font-size: 15px; }
  .service-actions { gap: 12px; }
  .service-actions .button { width: 100%; }
  .support-service { gap: 12px; }
  .service-icon { flex-basis: 36px; width: 36px; height: 36px; }
  .app-panel { padding: 18px; }
  .schedule-row { grid-template-columns: 34px 1fr; }
  .schedule-status { grid-column: 2; }
  .contact-form { padding: 20px; }
  .form-bottom { align-items: stretch; flex-direction: column; gap: 12px; }
  .selected-package { align-items: flex-start; padding: 10px; }
}
/* Presentation refresh: preserve every package item and all existing copy. */
.packages-grid { grid-template-columns: 1fr; gap: 18px; }
.package-card { display: grid; grid-template-columns: 255px minmax(0, 1fr); grid-template-rows: auto auto auto auto 1fr; gap: 0 38px; padding: 30px; border-radius: 20px; box-shadow: 0 4px 20px #17362a04; }
.package-head, .package-card h3, .package-card > p, .package-card .price, .package-card > .button { grid-column: 1; }
.package-head { grid-row: 1; }
.package-card h3 { grid-row: 2; }
.package-card > p { grid-row: 3; min-height: 0; }
.package-card .price { grid-row: 4; margin: 22px 0; border-bottom: 0; padding-bottom: 0; }
.package-card > .button { grid-row: 5; align-self: end; margin-top: 8px; }
.package-card .feature-list { grid-column: 2; grid-row: 1 / 6; display: block; column-count: 2; column-gap: 26px; column-fill: balance; margin: 0; padding: 3px 0 3px 30px; border-left: 1px solid var(--line); }
.package-card .feature-list li { break-inside: avoid; margin-bottom: 13px; font-size: 15px; }
.package-card--featured { background: radial-gradient(ellipse at top right, #0aafd11a, transparent 65%), var(--ink-soft); border-color: #21b38b; }
.package-card--featured .feature-list { border-color: #ffffff25; }
.package-badge { position: static; grid-column: 1; grid-row: 1; justify-self: end; align-self: start; z-index: 1; }
.package-card--featured .package-head { padding-right: 85px; }
.package-notes { border-left: 3px solid var(--brand-green); background: #e4eee8; padding: 26px; }
.applications-section { background: #edf4f1; padding-block: 72px; }
.applications-grid { width: min(calc(100% - 48px), 1280px); grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 54px; padding: 54px; border-radius: 28px; color: white; background: radial-gradient(ellipse at left top, #0aafd124, transparent 60%), var(--ink); }
.applications-copy .eyebrow { color: #b4d3c9; }
.applications-copy h2 span { color: #53d5b2; }
.applications-copy .lead-copy, .applications-copy .app-price-note { color: #bcd0c7; }
.applications-copy .app-features small { color: #bcd0c7; }
.applications-copy .button { background: var(--brand-green); color: var(--ink); }
.app-showcase { padding: 18px 0 0; min-width: 0; }
.app-panel { color: var(--ink); border-radius: 18px; box-shadow: 0 24px 65px #0003; }
.app-backdrop { inset: 4px -12px 55px; background: linear-gradient(140deg, #21b38b80, #0aafd140); transform: rotate(-3deg); }
.app-caption { color: #bcd0c7; font-size: 13px; }
.app-features { gap: 0; }
.app-features > div { padding: 15px 0; border-bottom: 1px solid #ffffff20; }
.app-features > div:first-child { border-top: 1px solid #ffffff20; }
.app-features .check-icon { background: #21b38b25; color: #72e4c5; }
.app-stats > div { border-left: 3px solid var(--brand-green); }
.app-stats > div:last-child { border-left: 3px solid var(--brand-cyan); }
.button, .text-link, .package-card, .support-service, .principle-card, .app-panel, .app-stats > div, .schedule-row { transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease, background 240ms ease, color 240ms ease; }
.button span, .text-link span { transition: transform 240ms ease; }
.button:active { transform: translateY(1px) scale(.985); }
.button:disabled { opacity: .65; cursor: progress; }
.faq-item[open] { background: #21b38b08; }
.faq-item { transition: background 240ms ease; }
@media (hover: hover) and (pointer: fine) {
  .button:hover { transform: translateY(-2px); box-shadow: 0 8px 20px #00000014; }
  .button:hover span, .text-link:hover span { transform: translate(3px, -3px); }
  .package-card:hover { border-color: var(--brand-green); box-shadow: 0 12px 32px #17362a10; transform: translateY(-3px); }
  .support-service:hover, .principle-card:hover { transform: translateY(-3px); }
  .app-stats > div:hover { transform: translateY(-3px); box-shadow: 0 6px 18px #17362a12; }
  .schedule-row:hover { background: #21b38b09; }
  .app-panel:hover { transform: translateY(-4px); }
}
@media (max-width: 1100px) {
  .applications-grid { padding: 36px; gap: 32px; }
  .package-card { grid-template-columns: 225px minmax(0, 1fr); gap: 0 26px; padding: 26px; }
.package-card .feature-list { padding-left: 24px; column-gap: 20px; }
}
@media (max-width: 900px) {
  .applications-grid { grid-template-columns: 1fr; }
  .applications-copy { grid-row: 1; }
  .app-showcase { max-width: 530px; }
.package-card .feature-list { column-count: 1; column-gap: 0; }
}
@media (max-width: 600px) {
  .package-card { display: flex; padding: 25px; gap: 0; }
  .package-card .feature-list { border-left: 0; border-top: 1px solid var(--line); padding: 20px 0 0; margin-bottom: 20px; }
  .package-card--featured .feature-list { border-color: #ffffff25; }
  .package-badge { position: absolute; top: 22px; right: 22px; }
  .package-card .price { margin-block: 22px 0; }
  .package-card > .button { margin-top: 0; }
  .applications-section { padding-block: 24px; }
  .applications-grid { width: calc(100% - 24px); padding: 30px 22px; border-radius: 22px; gap: 30px; }
  .applications-copy h2 { font-size: 32px; }
  .app-panel { padding: 18px; }
  .app-backdrop { inset-inline: -5px; }
  .package-notes { padding: 22px; }
}
/* Continuous ambient movement while the illustration is visible. */
.hero-visual { transition: translate 600ms cubic-bezier(.2,.7,.2,1); translate: var(--hero-x, 0px) var(--hero-y, 0px); }
@keyframes preview-drift {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-12px) rotate(-2.5deg); }
}
@keyframes preview-card-drift {
  0%, 100% { transform: translateY(0) rotate(3deg); }
  50% { transform: translateY(10px) rotate(1deg); }
}
@keyframes preview-orbit {
  from { offset-distance: 0%; }
  to { offset-distance: 100%; }
}
@keyframes preview-light {
  0%, 100% { opacity: .65; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); }
}
@keyframes preview-ring {
  0%, 100% { transform: scale(1); opacity: .7; }
  50% { transform: scale(1.18); opacity: 1; }
}
.hero-visual.is-animating .product-window { animation: preview-drift 6s ease-in-out infinite; }
.hero-visual.is-animating .floating-card { animation: preview-card-drift 6s ease-in-out infinite; }
.hero-visual.is-animating .floating-card--metric { animation-direction: reverse; }
.hero-visual.is-animating .orbit-point--one { animation: preview-orbit 12s linear infinite; animation-delay: -1.8s; }
.hero-visual.is-animating .orbit-point--two { animation: preview-orbit 16s linear infinite reverse; animation-delay: -5.6s; }
.hero-visual.is-animating .window-signal i { animation: preview-light 2.4s ease-in-out infinite; }
.hero-visual.is-animating .window-body::before { animation: preview-ring 6s ease-in-out infinite; }

/* Web applications: four readable capabilities within one secondary offer. */
.application-service { gap: 22px; padding: 30px; background: radial-gradient(ellipse at top right, #0aafd119, transparent 65%), #f3fbf8; border: 1px solid #b6dbd4; box-shadow: 0 8px 26px #113d2f07; }
.application-service::before { content: ''; position: absolute; inset: 0 0 auto; height: 4px; background: linear-gradient(90deg, var(--brand-green), var(--brand-cyan)); }
.application-service::after { display: none; }
.application-service-heading { align-items: center; gap: 14px; }
.application-service .service-label { color: #43665f; margin-bottom: 6px; font-size: 11px; }
.application-service .service-icon { flex-basis: 50px; width: 50px; height: 50px; border-color: #b8ded7; background: white; color: #087b74; box-shadow: 0 4px 12px #174e5107; border-radius: 14px; }
.application-service h3 { font-size: clamp(26px, 2.3vw, 32px); }
.application-service > p { color: #3d5d55; }
.application-examples { gap: 0; border-top: 1px solid #cce2da; border-bottom: 1px solid #cce2da; }
.application-examples li { display: flex; align-items: center; gap: 10px; min-height: 62px; padding: 12px 8px 12px 0; background: transparent; border: 0; border-radius: 0; color: #234d43; font-size: 13px; line-height: 1.4; font-weight: 500; }
.application-examples li:nth-child(-n+2) { border-bottom: 1px solid #cce2da; }
.application-examples li:nth-child(even) { padding-left: 12px; }
.application-examples svg { flex: 0 0 22px; width: 22px; height: 22px; fill: none; stroke: #087b74; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.application-service .text-link { justify-content: space-between; width: 100%; text-decoration: none; min-height: 44px; font-size: 15px; font-weight: 700; }
.application-service .text-link > span { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: #21b38b; color: var(--ink); }
.application-service { transition: border-color 240ms ease, box-shadow 240ms ease; }
@media (hover: hover) and (pointer: fine) {
  .application-service:hover { border-color: #21b38b; box-shadow: 0 12px 32px #113d2f10; }
}
@media (max-width: 700px) {
  .application-service { padding: 26px 24px; gap: 18px; }
}
@media (max-width: 380px) {
  .application-service { padding: 24px 20px; }
  .application-service-heading { gap: 10px; }
  .application-service .service-icon { flex-basis: 40px; width: 40px; height: 40px; }
  .application-service h3 { font-size: 25px; }
  .application-examples li { font-size: 12px; gap: 8px; }
}
/* Consistent feedback for the service cards and interactive controls. */
.website-service, .application-service {
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms ease, border-color 300ms ease;
}
.website-service { box-shadow: 0 0 0 1px transparent; }
.service-icon, .benefit-check {
  transition: transform 300ms ease, background 300ms ease, box-shadow 300ms ease;
}
.website-service:focus-within { box-shadow: 0 0 0 1px #21b38b, 0 14px 32px #113d2f18; }
.application-service:focus-within { border-color: var(--brand-green); box-shadow: 0 14px 32px #113d2f12; }
.field input, .field select, .field textarea {
  transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}
.contact-details a .detail-icon, .contact-details > span .detail-icon, .footer-arrow {
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease;
}
.contact-details a:focus-visible .detail-icon { border-color: var(--brand-green); background: #21b38b18; }
.faq-item summary { transition: color 200ms ease; }
@media (hover: hover) and (pointer: fine) {
  .website-service:hover, .application-service:hover { transform: translateY(-4px); }
  .website-service:hover { box-shadow: 0 0 0 1px #21b38b80, 0 16px 36px #113d2f20; }
  .website-service:hover .benefit-check { background: #21b38b38; }
  .application-service:hover .service-icon { transform: translateY(-2px); box-shadow: 0 6px 16px #087b7415; }
  .support-service:hover .service-icon { background: #dff4eb; transform: translateY(-2px); }
  .contact-details a:hover .detail-icon { animation-play-state: paused; transform: translateY(-2px); border-color: var(--brand-green); background: #21b38b18; }
  .contact-location:hover .detail-icon { animation-play-state: paused; transform: translateY(-2px); border-color: var(--brand-green); background: #21b38b18; }
  .footer-arrow:hover { transform: translateY(-3px); }
  .faq-item summary:hover { color: var(--green-text); }
}
/* Respect motion preferences; content never depends on a reveal animation. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-visual { translate: none; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
/* Keep every decorative north-east arrow optically aligned and independent of font metrics. */
.button > span[aria-hidden="true"],
.text-link > span[aria-hidden="true"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  font-size: 0;
  line-height: 0;
  text-decoration: none;
}
.button > span[aria-hidden="true"]::before,
.text-link > span[aria-hidden="true"]::before,
.window-arrow::before,
.metric-icon::before {
  display: block;
  width: 100%;
  height: 100%;
  background: currentColor;
  content: '';
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M4 16 16 4M8 4h8v8' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M4 16 16 4M8 4h8v8' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}
.application-service .text-link > span[aria-hidden="true"] {
  display: grid;
  flex-basis: 36px;
  width: 36px;
  height: 36px;
  place-items: center;
  transition: background 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}
.application-service .text-link > span[aria-hidden="true"]::before { content: none; }
.application-service .text-link > span[aria-hidden="true"] svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
  @media (hover: hover) and (pointer: fine) {
    .application-service .text-link:hover > span[aria-hidden="true"] {
      background: #4acaa6;
      box-shadow: 0 0 0 4px #4acaa61f;
      transform: translateY(-2px);
    }
  }
  .application-service .text-link:focus-visible > span[aria-hidden="true"] {
    background: #4acaa6;
    box-shadow: 0 0 0 4px #4acaa61f;
  }
.window-arrow,
.metric-icon { font-size: 0; line-height: 0; }
.window-arrow::before { width: 20px; height: 20px; }
.metric-icon::before { width: 22px; height: 22px; }
.footer-arrow::before {
  width: 19px;
  height: 19px;
  background: currentColor;
  content: '';
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M10 16V4M5.5 8.5 10 4l4.5 4.5' fill='none' stroke='black' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M10 16V4M5.5 8.5 10 4l4.5 4.5' fill='none' stroke='black' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* Spacing refinement: tighter transitions without changing content or hierarchy. */
.packages-section { padding-bottom: 52px; }
.applications-section { padding-block: 48px 60px; }
.applications-grid { gap: 56px; }
.faq-section { padding-bottom: 56px; }
.contact-section { padding-block: 72px; }

@media (max-width: 900px) {
  .packages-section { padding-bottom: 48px; }
  .applications-section { padding-block: 40px 48px; }
  .applications-grid { gap: 40px; }
  .faq-section { padding-bottom: 48px; }
  .contact-section { padding-block: 64px; }
}

@media (max-width: 600px) {
  .applications-section { padding-block: 24px; }
  .contact-section { padding-block: 56px; }
}
