:root {
  --ink: #182332;
  --muted: #526171;
  --line: #dfe9eb;
  --surface: #ffffff;
  --surface-soft: #f6fafb;
  --teal: #078c8d;
  --teal-dark: #066f70;
  --teal-bright: #0db8b7;
  --copper: #bd5d2b;
  --copper-dark: #93431f;
  --shadow: 0 14px 40px rgba(26, 63, 72, 0.11);
  --radius: 18px;
  --contact-url: "https://support.yoorshop.hosting/contactus";
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.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; left: 12px; top: -60px; z-index: 9999; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px; text-decoration: none; }
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner { min-height: 88px; display: flex; align-items: center; gap: 26px; }
.brand { display: inline-flex; align-items: flex-end; gap: 4px; text-decoration: none; flex: 0 0 auto; }
.brand img { width: 218px; height: auto; }
.brand-tld { font-size: 20px; line-height: 1; font-weight: 700; color: var(--ink); padding-bottom: 12px; letter-spacing: -.04em; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 30px; }
.main-nav a { text-decoration: none; color: #263646; font-weight: 650; font-size: 15px; position: relative; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--teal); transition: right .2s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 10px; background: #fff; padding: 10px; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; background: var(--ink); margin: 4px 0; }

.button { display: inline-flex; justify-content: center; align-items: center; min-height: 50px; padding: 12px 24px; border-radius: 10px; border: 1px solid transparent; text-decoration: none; font-weight: 750; letter-spacing: -.01em; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible { outline: 3px solid rgba(13,184,183,.32); outline-offset: 3px; }
.button-primary { color: #fff; background: linear-gradient(135deg, var(--teal), var(--teal-bright)); box-shadow: 0 10px 22px rgba(7,140,141,.22); }
.button-primary:hover { box-shadow: 0 14px 28px rgba(7,140,141,.29); }
.button-secondary { color: var(--teal-dark); border-color: var(--teal); background: #fff; }
.button-secondary:hover { background: #eefafa; }
.button-light { color: var(--teal-dark); background: #fff; box-shadow: 0 10px 24px rgba(0,0,0,.14); }
.header-cta { margin-left: 2px; min-height: 48px; padding-inline: 22px; }

.hero { padding: 74px 0 62px; overflow: hidden; background: radial-gradient(circle at 75% 20%, rgba(13,184,183,.08), transparent 32%), #fff; }
.hero-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr); gap: 36px; align-items: center; }
.eyebrow { margin: 0 0 10px; text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 850; color: var(--teal); }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 16px; max-width: 690px; font-size: clamp(38px, 4.4vw, 62px); line-height: 1.08; letter-spacing: -.045em; }
h2 { margin-bottom: 12px; font-size: clamp(30px, 3vw, 43px); line-height: 1.15; letter-spacing: -.035em; }
h3 { letter-spacing: -.02em; }
.section-mark { width: 62px; height: 4px; border-radius: 4px; margin: 20px 0 24px; background: linear-gradient(90deg, var(--copper), var(--teal)); }
.section-mark.centered { margin-left: auto; margin-right: auto; }
.hero-lead { max-width: 660px; color: var(--muted); font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-points { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-top: 34px; }
.mini-point { display: flex; align-items: center; gap: 10px; min-width: 0; color: #334454; font-size: 14px; font-weight: 700; line-height: 1.25; }
.icon-bubble { flex: 0 0 auto; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; color: var(--teal); background: #e9f7f7; }
.icon-bubble svg { width: 23px; height: 23px; }
.hero-visual { min-width: 0; }
.hero-image-frame { position: relative; border-radius: 26px; overflow: hidden; background: #fff; box-shadow: var(--shadow); }
.hero-image-frame::after { content: ""; position: absolute; inset: auto 0 0; height: 26%; background: linear-gradient(transparent, rgba(255,255,255,.95)); pointer-events: none; }
.hero-image-frame img { width: 100%; aspect-ratio: 1.12 / 1; object-fit: cover; object-position: center 22%; }

.section { padding: 82px 0; }
.section-applications { background: linear-gradient(180deg, #f8fbfc, #fff); border-top: 1px solid #eef3f4; }
.section-heading { max-width: 760px; margin: 0 auto 42px; text-align: center; }
.section-heading.compact { margin-bottom: 34px; }
.section-heading p:last-child { color: var(--muted); }
.application-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; }
.application-card { overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: 0 8px 24px rgba(40,70,78,.06); transition: transform .2s ease, box-shadow .2s ease; }
.application-card:hover { transform: translateY(-5px); box-shadow: 0 16px 32px rgba(40,70,78,.12); }
.application-card img { width: 100%; aspect-ratio: 1.12 / .88; object-fit: cover; }
.card-body { padding: 18px 16px 20px; }
.card-body h3 { color: var(--teal-dark); font-size: 17px; line-height: 1.22; margin-bottom: 9px; }
.accent-copper .card-body h3 { color: var(--copper-dark); }
.card-body p { margin: 0; color: var(--muted); font-size: 14px; }

.section-value { padding-top: 68px; }
.value-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); border-block: 1px solid var(--line); }
.value-item { text-align: center; padding: 30px 18px; border-right: 1px solid var(--line); }
.value-item:last-child { border-right: 0; }
.value-item svg { width: 47px; height: 47px; color: var(--teal); margin-bottom: 13px; }
.value-item h3 { font-size: 16px; margin-bottom: 8px; }
.value-item p { margin: 0; color: var(--muted); font-size: 13px; }

.section-concept { padding-top: 26px; }
.concept-panel { display: grid; grid-template-columns: .82fr 1.18fr; align-items: stretch; min-height: 320px; padding: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid #cfe2e5; background: linear-gradient(115deg, #edf8f9, #fff); box-shadow: 0 10px 30px rgba(37,81,89,.08); }
.concept-image img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.concept-copy { padding: 48px 52px; align-self: center; }
.concept-copy p { color: var(--muted); font-size: 17px; }
.concept-copy strong { color: var(--teal-dark); }
.concept-note { font-size: 14px !important; padding-top: 10px; border-top: 1px solid rgba(7,140,141,.18); }

.section-directions { padding-top: 58px; }
.direction-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); border-block: 1px solid var(--line); }
.direction-grid article { display: flex; min-height: 138px; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 20px 14px; border-right: 1px solid var(--line); font-size: 14px; font-weight: 700; line-height: 1.3; }
.direction-grid article:last-child { border-right: 0; }
.direction-grid svg { width: 39px; height: 39px; margin-bottom: 12px; color: var(--teal); }

.section-contact { padding-top: 24px; }
.contact-panel { display: grid; grid-template-columns: 35% 65%; overflow: hidden; border-radius: var(--radius); background: linear-gradient(120deg, #057b7c, #059b9a); color: #fff; box-shadow: var(--shadow); }
.contact-image { position: relative; min-height: 270px; background: #fff; }
.contact-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 60%, #057b7c 100%); }
.contact-image img { width: 100%; height: 100%; object-fit: cover; }
.contact-copy { padding: 44px 50px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.contact-copy h2 { margin-bottom: 10px; }
.contact-copy p { max-width: 610px; color: rgba(255,255,255,.86); }
.eyebrow.light { color: #d9ffff; }

.site-footer { margin-top: 70px; border-top: 1px solid var(--line); background: #f8fbfc; }
.footer-inner { min-height: 128px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; }
.footer-brand img { width: 185px; }
.footer-brand .brand-tld { font-size: 17px; padding-bottom: 9px; }
.footer-inner p { margin: 0; color: var(--muted); font-size: 14px; }
.footer-inner > p:nth-of-type(1) { text-align: center; }
.legal { text-align: right; max-width: 310px; }

@media (max-width: 1080px) {
  .header-cta { display: none; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-points { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .application-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .value-grid, .direction-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .value-item:nth-child(3), .direction-grid article:nth-child(3) { border-right: 0; }
  .value-item:nth-child(-n+3), .direction-grid article:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 820px) {
  .header-inner { min-height: 76px; }
  .brand img { width: 180px; }
  .brand-tld { font-size: 17px; padding-bottom: 9px; }
  .menu-toggle { display: block; margin-left: auto; }
  .main-nav { display: none; position: absolute; top: 76px; left: 20px; right: 20px; margin: 0; padding: 16px; flex-direction: column; align-items: stretch; gap: 0; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: var(--shadow); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 12px 10px; }
  .main-nav a::after { display: none; }
  .hero { padding-top: 48px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-image-frame { max-width: 660px; margin-inline: auto; }
  h1 { font-size: clamp(38px, 8vw, 56px); }
  .concept-panel { grid-template-columns: 1fr; }
  .concept-image img { min-height: 260px; }
  .concept-copy { padding: 36px 30px; }
  .contact-panel { grid-template-columns: 1fr; }
  .contact-image { min-height: 230px; }
  .contact-image::after { background: linear-gradient(180deg, transparent 60%, #057b7c 100%); }
  .contact-copy { padding: 36px 30px 42px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; padding: 32px 0; gap: 14px; }
  .footer-brand { justify-self: center; }
  .footer-inner > p:nth-of-type(1), .legal { text-align: center; max-width: none; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1180px); }
  .header-inner { gap: 8px; }
  .brand img { width: 150px; }
  .brand-tld { font-size: 14px; padding-bottom: 7px; }
  .hero { padding: 32px 0 46px; }
  .hero-image-frame img { aspect-ratio: 1.18 / .9; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-points { grid-template-columns: 1fr 1fr; }
  .mini-point { font-size: 13px; }
  .icon-bubble { width: 42px; height: 42px; }
  .section { padding: 62px 0; }
  .application-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .card-body { padding: 15px 13px 18px; }
  .card-body h3 { font-size: 15px; }
  .card-body p { font-size: 13px; }
  .value-grid, .direction-grid { grid-template-columns: 1fr 1fr; }
  .value-item:nth-child(odd), .direction-grid article:nth-child(odd) { border-right: 1px solid var(--line); }
  .value-item:nth-child(even), .direction-grid article:nth-child(even) { border-right: 0; }
  .value-item:nth-child(-n+4), .direction-grid article:nth-child(-n+4) { border-bottom: 1px solid var(--line); }
  .value-item { padding: 24px 12px; }
  .concept-image img { min-height: 210px; }
  .contact-copy .button { width: 100%; }
}

@media (max-width: 390px) {
  .brand img { width: 133px; }
  .brand-tld { font-size: 12px; padding-bottom: 6px; }
  .application-grid { grid-template-columns: 1fr; }
  .hero-points { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .001ms !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
}
