:root {
    --yt-ink: #081925;
    --yt-ink-2: #102b3c;
    --yt-blue: #0a4f78;
    --yt-cyan: #19a9c7;
    --yt-cyan-soft: #dff7fb;
    --yt-mint: #67d7b2;
    --yt-cream: #f3f5f1;
    --yt-white: #ffffff;
    --yt-grey-50: #f7f9f8;
    --yt-grey-100: #edf1f0;
    --yt-grey-300: #c9d2d1;
    --yt-grey-500: #667776;
    --yt-grey-700: #344846;
    --yt-shadow: 0 24px 70px rgba(7, 25, 37, 0.12);
    --yt-radius: 22px;
    --yt-container: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--yt-ink);
    background: var(--yt-white);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 {
    color: var(--yt-ink);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.035em;
}
h1 { font-size: clamp(3rem, 6vw, 6.2rem); }
h2 { font-size: clamp(2.25rem, 4vw, 4.35rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
p { color: var(--yt-grey-700); }

.yt-container { width: min(calc(100% - 48px), var(--yt-container)); margin-inline: auto; }
.yt-skip-link {
    position: fixed; left: 20px; top: -100px; z-index: 9999;
    padding: 10px 16px; background: var(--yt-white); border-radius: 8px; color: var(--yt-ink);
}
.yt-skip-link:focus { top: 16px; }

.yt-utility-bar { background: #06131d; color: rgba(255,255,255,.68); font-size: 12px; letter-spacing: .035em; }
.yt-utility-bar__inner { min-height: 34px; display: flex; align-items: center; gap: 12px; }
.yt-utility-bar__inner a { color: var(--yt-white); margin-left: auto; }
.yt-utility-bar__divider { width: 3px; height: 3px; border-radius: 50%; background: var(--yt-cyan); }

.yt-site-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(255,255,255,.94); border-bottom: 1px solid rgba(8,25,37,.08);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
}
.admin-bar .yt-site-header { top: 32px; }
.yt-site-header__inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.yt-brand { display: inline-flex; align-items: center; gap: 13px; flex: 0 0 auto; }
.yt-brand img { display: block; width: 54px; height: 54px; border-radius: 12px; }
.yt-brand__wordmark { display: flex; flex-direction: column; line-height: 1.1; }
.yt-brand__wordmark strong { font-size: 15px; letter-spacing: .08em; }
.yt-brand__wordmark small { color: var(--yt-grey-500); font-size: 10px; letter-spacing: .08em; margin-top: 5px; text-transform: uppercase; }
.yt-primary-nav { display: flex; align-items: center; gap: 22px; }
.yt-primary-nav ul { display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; list-style: none; }
.yt-primary-nav ul a { display: block; padding: 12px 10px; color: var(--yt-grey-700); font-size: 13px; font-weight: 650; white-space: nowrap; }
.yt-primary-nav ul a:hover, .yt-primary-nav ul a[aria-current="page"] { color: var(--yt-blue); }
.yt-primary-nav ul a[aria-current="page"] { box-shadow: inset 0 -2px var(--yt-cyan); }
.yt-nav-toggle { display: none; border: 0; background: transparent; color: var(--yt-ink); align-items: center; gap: 10px; padding: 10px; }
.yt-nav-toggle__label { font-size: 13px; font-weight: 700; }
.yt-nav-toggle__icon { width: 24px; display: grid; gap: 5px; }
.yt-nav-toggle__icon i { display: block; width: 100%; height: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }

.yt-button {
    display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 9px;
    padding: 13px 22px; border: 1px solid transparent; border-radius: 999px;
    font-size: 14px; font-weight: 750; letter-spacing: -.01em; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.yt-button:hover { transform: translateY(-2px); }
.yt-button--small { min-height: 42px; padding: 10px 17px; font-size: 12px; }
.yt-button--primary { color: var(--yt-white); background: linear-gradient(135deg, #08779b, #16a9c5); box-shadow: 0 10px 30px rgba(13,153,184,.22); }
.yt-button--primary:hover { color: var(--yt-white); background: linear-gradient(135deg, #086487, #0e92af); }
.yt-button--ghost { border-color: rgba(255,255,255,.25); color: var(--yt-white); background: rgba(255,255,255,.05); }
.yt-button--ghost:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.1); }
.yt-button--dark { color: var(--yt-white); background: var(--yt-ink); }
.yt-button--light { color: var(--yt-ink); background: var(--yt-white); }

.yt-eyebrow { display: block; color: var(--yt-blue); font-size: 11px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 18px; }
.yt-eyebrow--light { color: var(--yt-mint); }

.yt-hero { position: relative; overflow: hidden; min-height: 760px; color: var(--yt-white); background: radial-gradient(circle at 78% 30%, #124a62 0, transparent 33%), linear-gradient(125deg, #06131d 0%, #0a2332 62%, #0b3040 100%); }
.yt-hero::after { content: ""; position: absolute; inset: auto -12% -42% 42%; height: 600px; border-radius: 50%; background: rgba(24,174,200,.09); filter: blur(2px); }
.yt-hero__grid { position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to right, transparent 0, #000 48%, #000 100%); }
.yt-hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0,1.1fr) minmax(380px,.9fr); align-items: center; gap: clamp(40px, 7vw, 105px); padding-block: 90px 110px; }
.yt-hero__content { max-width: 720px; }
.yt-hero h1 { color: var(--yt-white); margin-bottom: 28px; font-size: clamp(3.2rem, 5.7vw, 5.8rem); }
.yt-hero h1 em { color: var(--yt-mint); font-style: normal; }
.yt-hero__content > p { max-width: 690px; color: rgba(255,255,255,.74); font-size: 18px; line-height: 1.65; }
.yt-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 34px 0 40px; }
.yt-hero__proof { display: flex; flex-wrap: wrap; gap: 12px 26px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.58); font-size: 11px; letter-spacing: .025em; }
.yt-hero__proof span { display: grid; gap: 2px; }
.yt-hero__proof strong { color: var(--yt-white); font-size: 12px; }
.yt-hero__visual { position: relative; min-height: 545px; display: grid; place-items: center; }
.yt-hero__orbit { position: absolute; border: 1px solid rgba(103,215,178,.23); border-radius: 50%; }
.yt-hero__orbit--one { width: 510px; height: 510px; }
.yt-hero__orbit--two { width: 390px; height: 390px; border-style: dashed; animation: yt-rotate 32s linear infinite; }
.yt-hero-card { position: relative; z-index: 2; width: min(390px, 86%); overflow: hidden; border: 1px solid rgba(255,255,255,.18); border-radius: 28px; background: rgba(255,255,255,.96); box-shadow: 0 36px 90px rgba(0,0,0,.34); }
.yt-hero-card__topline { display: flex; justify-content: space-between; padding: 16px 18px 8px; color: var(--yt-grey-500); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.yt-hero-card__topline i { display: inline-flex; align-items: center; gap: 6px; color: #19855d; font-style: normal; }
.yt-hero-card__topline i::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #36c28a; box-shadow: 0 0 0 4px rgba(54,194,138,.15); }
.yt-hero-card > img { display: block; width: 100%; aspect-ratio: 1 / .82; object-fit: contain; padding: 10px 24px; }
.yt-hero-card__caption { padding: 18px 22px 22px; border-top: 1px solid var(--yt-grey-100); color: var(--yt-ink); }
.yt-hero-card__caption span { display: block; color: var(--yt-cyan); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.yt-hero-card__caption strong { display: block; margin: 5px 0 12px; font-size: 16px; line-height: 1.3; }
.yt-hero-card__caption a { color: var(--yt-blue); font-size: 12px; font-weight: 750; }
.yt-signal-card { position: absolute; z-index: 3; display: grid; grid-template-columns: 34px 1fr; gap: 10px; align-items: center; min-width: 180px; padding: 13px 16px; border: 1px solid rgba(255,255,255,.16); border-radius: 14px; background: rgba(5,25,36,.82); box-shadow: 0 18px 50px rgba(0,0,0,.22); backdrop-filter: blur(12px); }
.yt-signal-card span { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: rgba(103,215,178,.14); color: var(--yt-mint); font-size: 10px; }
.yt-signal-card strong { color: var(--yt-white); font-size: 11px; letter-spacing: .02em; }
.yt-signal-card--top { right: -5px; top: 82px; }
.yt-signal-card--bottom { left: -18px; bottom: 86px; }
@keyframes yt-rotate { to { transform: rotate(360deg); } }

.yt-partner-bar { color: var(--yt-white); background: #07141d; border-top: 1px solid rgba(255,255,255,.08); }
.yt-partner-bar__inner { min-height: 105px; display: grid; grid-template-columns: 1.15fr repeat(3,1fr); align-items: center; gap: 24px; }
.yt-partner-bar__label { color: rgba(255,255,255,.45); font-size: 10px; font-weight: 750; letter-spacing: .15em; text-transform: uppercase; }
.yt-partner-brand { min-height: 50px; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 13px; padding-left: 24px; border-left: 1px solid rgba(255,255,255,.1); }
.yt-partner-brand img { width: 114px; max-height: 42px; object-fit: contain; object-position: left center; }
.yt-partner-brand strong { font-size: 20px; letter-spacing: .12em; }
.yt-partner-brand--local strong { display: grid; place-items: center; width: 45px; height: 45px; border: 1px solid rgba(103,215,178,.5); border-radius: 50%; color: var(--yt-mint); font-size: 13px; }
.yt-partner-brand small { display: block; color: rgba(255,255,255,.49); font-size: 9px; letter-spacing: .07em; text-transform: uppercase; }

.yt-section { padding-block: clamp(82px, 9vw, 138px); }
.yt-section-heading { margin-bottom: 54px; }
.yt-section-heading h2 { max-width: 900px; margin-bottom: 0; }
.yt-section-heading--split { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(280px, .5fr); gap: clamp(40px, 8vw, 110px); align-items: end; }
.yt-section-heading--split > p { margin: 0; font-size: 17px; }
.yt-section-heading--centred { max-width: 820px; margin-inline: auto; text-align: center; }
.yt-section-heading--light h2, .yt-section-heading--light p { color: var(--yt-white); }
.yt-section-heading--light p { color: rgba(255,255,255,.62); }

.yt-section--intro { background: var(--yt-cream); }
.yt-capability-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.yt-capability-card { position: relative; min-height: 390px; display: flex; flex-direction: column; padding: 30px; overflow: hidden; border: 1px solid rgba(8,25,37,.09); border-radius: var(--yt-radius); background: rgba(255,255,255,.75); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.yt-capability-card:hover { transform: translateY(-6px); border-color: rgba(25,169,199,.35); box-shadow: var(--yt-shadow); }
.yt-capability-card--featured { background: var(--yt-white); }
.yt-capability-card__number { color: var(--yt-grey-500); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.yt-capability-card__icon { width: 58px; height: 58px; display: grid; place-items: center; margin: 54px 0 24px; border-radius: 16px; color: var(--yt-blue); background: var(--yt-cyan-soft); font-size: 25px; }
.yt-capability-card h3 { margin-bottom: 15px; }
.yt-capability-card p { font-size: 14px; }
.yt-text-link { margin-top: auto; color: var(--yt-blue); font-size: 12px; font-weight: 750; }
.yt-text-link b { display: inline-block; margin-left: 4px; transition: transform .2s ease; }
a:hover > .yt-text-link b, .yt-text-link:hover b { transform: translateX(4px); }
.yt-text-link--standalone { margin: 0; font-size: 14px; }

.yt-section--dark { position: relative; color: var(--yt-white); background: linear-gradient(145deg, #071821, #0b2938); overflow: hidden; }
.yt-section--dark::before { content: ""; position: absolute; width: 680px; height: 680px; right: -250px; top: -270px; border: 1px solid rgba(103,215,178,.12); border-radius: 50%; box-shadow: 0 0 0 80px rgba(103,215,178,.025), 0 0 0 160px rgba(103,215,178,.02); }
.yt-section--dark .yt-container { position: relative; z-index: 1; }
.yt-industrial-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.12); }
.yt-industrial-card { position: relative; min-height: 310px; padding: 34px; background: #0a2432; transition: background .2s ease; }
.yt-industrial-card:hover { background: #103849; }
.yt-industrial-card__line { display: block; width: 46px; height: 3px; margin-bottom: 82px; background: var(--yt-mint); transition: width .2s ease; }
.yt-industrial-card:hover .yt-industrial-card__line { width: 90px; }
.yt-industrial-card h3 { color: var(--yt-white); }
.yt-industrial-card p { color: rgba(255,255,255,.56); font-size: 13px; }
.yt-industrial-card > span:last-child { position: absolute; left: 34px; bottom: 28px; color: var(--yt-mint); font-size: 11px; font-weight: 750; }
.yt-industry-list { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px; margin-top: 36px; }
.yt-industry-list span, .yt-industry-list a { padding: 9px 15px; border: 1px solid rgba(255,255,255,.13); border-radius: 999px; color: rgba(255,255,255,.62); font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.yt-industry-list a { transition: color .2s ease, border-color .2s ease, background .2s ease; }
.yt-industry-list a:hover, .yt-industry-list a:focus-visible { color: var(--yt-white); border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.08); }

.yt-section--ai { background: var(--yt-white); }
.yt-ai-layout { display: grid; grid-template-columns: minmax(400px,.85fr) minmax(0,1.15fr); gap: clamp(55px, 10vw, 140px); align-items: center; }
.yt-ai-visual { position: relative; min-height: 560px; border-radius: 30px; background: radial-gradient(circle at center, rgba(25,169,199,.16), transparent 32%), linear-gradient(145deg, #eef8f7, #f7faf8); overflow: hidden; }
.yt-ai-visual::before { content: ""; position: absolute; inset: 38px; border: 1px dashed rgba(10,79,120,.18); border-radius: 50%; }
.yt-ai-node { position: absolute; z-index: 2; display: grid; place-items: center; border-radius: 50%; background: var(--yt-white); box-shadow: 0 15px 45px rgba(8,25,37,.12); color: var(--yt-blue); font-size: 12px; font-weight: 800; }
.yt-ai-node--centre { width: 125px; height: 125px; left: calc(50% - 62px); top: calc(50% - 62px); color: var(--yt-white); background: linear-gradient(135deg, var(--yt-blue), var(--yt-cyan)); font-size: 34px; }
.yt-ai-node--one, .yt-ai-node--two, .yt-ai-node--three, .yt-ai-node--four { width: 78px; height: 78px; }
.yt-ai-node--one { left: 13%; top: 18%; }
.yt-ai-node--two { right: 12%; top: 20%; }
.yt-ai-node--three { left: 13%; bottom: 18%; }
.yt-ai-node--four { right: 12%; bottom: 18%; }
.yt-ai-line { position: absolute; z-index: 1; width: 35%; height: 1px; left: 32%; top: 50%; background: rgba(10,79,120,.23); transform-origin: center; }
.yt-ai-line--one { transform: rotate(43deg); }
.yt-ai-line--two { transform: rotate(-43deg); }
.yt-ai-line--three { transform: rotate(137deg); }
.yt-ai-line--four { transform: rotate(-137deg); }
.yt-ai-content h2 { margin-bottom: 25px; }
.yt-ai-content > p { max-width: 650px; font-size: 17px; }
.yt-check-list { list-style: none; margin: 35px 0; padding: 0; display: grid; gap: 16px; }
.yt-check-list li { position: relative; display: grid; gap: 3px; padding-left: 34px; }
.yt-check-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; display: grid; place-items: center; width: 21px; height: 21px; border-radius: 50%; color: var(--yt-blue); background: var(--yt-cyan-soft); font-size: 11px; font-weight: 900; }
.yt-check-list strong { color: var(--yt-ink); font-size: 14px; }
.yt-check-list span { color: var(--yt-grey-500); font-size: 13px; }

.yt-section--process { background: var(--yt-cream); }
.yt-process-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); margin: 0; padding: 0; list-style: none; counter-reset: none; }
.yt-process-grid li { position: relative; min-height: 235px; padding: 0 35px 0 0; border-top: 1px solid var(--yt-grey-300); }
.yt-process-grid li::before { content: ""; position: absolute; top: -5px; left: 0; width: 9px; height: 9px; border: 2px solid var(--yt-blue); border-radius: 50%; background: var(--yt-cream); }
.yt-process-grid span { display: block; margin: 25px 0 52px; color: var(--yt-blue); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.yt-process-grid h3 { margin-bottom: 12px; }
.yt-process-grid p { max-width: 230px; font-size: 13px; }

.yt-section--products { background: var(--yt-white); }

/* Page and article layouts */
.yt-page-hero { position: relative; overflow: hidden; padding: 100px 0 88px; color: var(--yt-white); background: radial-gradient(circle at 80% 30%, #174e64 0, transparent 30%), linear-gradient(125deg, #071620, #0b2b3a); }
.yt-page-hero::after { content: ""; position: absolute; width: 480px; height: 480px; right: -140px; top: -240px; border: 1px solid rgba(103,215,178,.18); border-radius: 50%; box-shadow: 0 0 0 80px rgba(103,215,178,.03); }
.yt-page-hero .yt-container { position: relative; z-index: 1; }
.yt-page-hero h1 { max-width: 930px; color: var(--yt-white); font-size: clamp(3rem, 5vw, 5.2rem); margin-bottom: 20px; }
.yt-page-hero p { max-width: 720px; margin: 0; color: rgba(255,255,255,.68); font-size: 18px; }
.yt-breadcrumb { margin-bottom: 25px; color: var(--yt-mint); font-size: 11px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.yt-breadcrumb a { color: rgba(255,255,255,.58); }
.yt-page-content { padding-block: 80px 120px; }
.yt-page-content__inner { max-width: 920px; }
.yt-page-content h2 { margin-top: 64px; font-size: clamp(2rem, 4vw, 3.3rem); }
.yt-page-content h3 { margin-top: 38px; }
.yt-page-content p, .yt-page-content li { font-size: 17px; }
.yt-page-content a:not(.yt-button) { color: var(--yt-blue); text-decoration: underline; text-decoration-color: rgba(10,79,120,.25); text-underline-offset: 3px; }
.yt-page-content .yt-service-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; margin: 38px 0; }
.yt-page-content .yt-service-card { padding: 28px; border: 1px solid var(--yt-grey-100); border-radius: 18px; background: var(--yt-grey-50); }
.yt-page-content .yt-service-card h3 { margin: 0 0 12px; }
.yt-page-content .yt-service-card p { margin: 0; font-size: 14px; }
.yt-page-content .yt-callout { margin: 48px 0; padding: 34px; border-left: 4px solid var(--yt-cyan); border-radius: 0 18px 18px 0; background: var(--yt-cyan-soft); }
.yt-page-content .yt-callout h2, .yt-page-content .yt-callout h3 { margin-top: 0; }
.yt-page-content .yt-steps { display: grid; gap: 12px; margin: 35px 0; padding: 0; list-style: none; counter-reset: yt-steps; }
.yt-page-content .yt-steps li { counter-increment: yt-steps; position: relative; padding: 20px 22px 20px 68px; border: 1px solid var(--yt-grey-100); border-radius: 14px; }
.yt-page-content .yt-steps li::before { content: counter(yt-steps, decimal-leading-zero); position: absolute; left: 20px; color: var(--yt-blue); font-size: 12px; font-weight: 850; letter-spacing: .08em; }
.yt-post-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.yt-post-card { overflow: hidden; border: 1px solid var(--yt-grey-100); border-radius: 18px; background: var(--yt-white); }
.yt-post-card > a img { display: block; width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.yt-post-card__body { padding: 24px; }
.yt-post-card__body > span { color: var(--yt-blue); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.yt-post-card h2 { margin: 10px 0 14px; font-size: 22px; }
.yt-post-card p { font-size: 14px; }
.yt-article-image { margin-bottom: 45px; overflow: hidden; border-radius: 22px; }

.yt-contact-layout { display: grid; grid-template-columns: minmax(260px,.6fr) minmax(0,1.4fr); gap: clamp(40px,7vw,85px); align-items: start; }
.yt-contact-details { padding: 28px; border-radius: 18px; background: var(--yt-grey-50); }
.yt-contact-details h3 { margin-top: 0; }
.yt-contact-details p { font-size: 14px; }
.yt-contact-form { padding: 34px; border: 1px solid var(--yt-grey-100); border-radius: 22px; background: var(--yt-white); box-shadow: var(--yt-shadow); }
.yt-contact-form__grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; margin-bottom: 24px; }
.yt-contact-form label { display: grid; gap: 7px; }
.yt-contact-form label > span { color: var(--yt-ink); font-size: 12px; font-weight: 750; }
.yt-contact-form__wide { grid-column: 1 / -1; }
.yt-contact-form input, .yt-contact-form select, .yt-contact-form textarea { width: 100%; padding: 13px 14px; border: 1px solid var(--yt-grey-300); border-radius: 10px; color: var(--yt-ink); background: var(--yt-white); }
.yt-contact-form input:focus, .yt-contact-form select:focus, .yt-contact-form textarea:focus { outline: 3px solid rgba(25,169,199,.16); border-color: var(--yt-cyan); }
.yt-contact-form__honeypot { position: absolute !important; left: -9999px !important; }
.yt-contact-form__privacy { display: inline-block; margin: 0 0 0 12px; color: var(--yt-grey-500); font-size: 11px; }
.yt-form-notice { display: grid; gap: 2px; margin-bottom: 22px; padding: 17px 20px; border-radius: 12px; font-size: 13px; }
.yt-form-notice--success { color: #145c41; background: #e3f8ef; }
.yt-form-notice--error { color: #7d2b2b; background: #fff0f0; }

/* WooCommerce */
.woocommerce .woocommerce-breadcrumb { margin-bottom: 25px; color: var(--yt-grey-500); font-size: 12px; }
.yt-commerce-wrap { padding: 72px 0 110px; }
.yt-commerce-wrap .page-title { font-size: clamp(2.5rem, 4vw, 4.2rem); }
ul.products, .woocommerce ul.products, .woocommerce-page ul.products { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; margin: 0; padding: 0; list-style: none; }
ul.products::before, ul.products::after, .woocommerce ul.products::before, .woocommerce ul.products::after { display: none; }
ul.products li.product, .woocommerce ul.products li.product, .woocommerce-page ul.products li.product { float: none; width: auto; margin: 0; display: flex; flex-direction: column; padding: 18px; border: 1px solid var(--yt-grey-100); border-radius: 18px; background: var(--yt-white); transition: transform .2s ease, box-shadow .2s ease; }
ul.products li.product:hover { transform: translateY(-5px); box-shadow: var(--yt-shadow); }
ul.products li.product a img { width: 100%; aspect-ratio: 1 / .86; object-fit: contain; margin: 0 0 18px; border-radius: 12px; background: var(--yt-grey-50); }
ul.products li.product .woocommerce-loop-product__title { color: var(--yt-ink); font-size: 15px; line-height: 1.35; min-height: 61px; padding: 0; }
ul.products li.product .price { color: var(--yt-blue); font-size: 13px; }
ul.products li.product .button { width: 100%; margin-top: auto; padding: 12px 14px; border-radius: 999px; color: var(--yt-blue); background: var(--yt-cyan-soft); text-align: center; font-size: 12px; }
.woocommerce .woocommerce-ordering select { padding: 10px 34px 10px 12px; border: 1px solid var(--yt-grey-300); border-radius: 10px; background: var(--yt-white); }
.woocommerce nav.woocommerce-pagination ul { border: 0; display: flex; gap: 6px; }
.woocommerce nav.woocommerce-pagination ul li { border: 0; }
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span { min-width: 40px; border-radius: 9px; }
.woocommerce nav.woocommerce-pagination ul li span.current { color: var(--yt-white); background: var(--yt-blue); }
.single-product div.product { display: grid; grid-template-columns: minmax(0,1fr) minmax(360px,.9fr); gap: clamp(40px,7vw,90px); }
.single-product div.product .woocommerce-product-gallery, .single-product div.product .summary { float: none !important; width: auto !important; }
.single-product div.product .woocommerce-product-gallery { padding: 20px; border: 1px solid var(--yt-grey-100); border-radius: 22px; background: var(--yt-grey-50); }
.single-product div.product .product_title { font-size: clamp(2.2rem, 4vw, 3.8rem); }
.single-product div.product .summary .price { color: var(--yt-blue); }
.single-product div.product .summary .product_meta { padding-top: 20px; border-top: 1px solid var(--yt-grey-100); color: var(--yt-grey-500); font-size: 12px; }
.yt-product-quote { margin-top: 28px; padding: 22px; border-radius: 16px; background: var(--yt-grey-50); }
.yt-product-quote p { margin: 12px 0 0; font-size: 12px; }
.woocommerce div.product .woocommerce-tabs { grid-column: 1 / -1; margin-top: 30px; }
.woocommerce div.product .woocommerce-tabs ul.tabs { padding: 0; border-bottom: 1px solid var(--yt-grey-300); }
.woocommerce div.product .woocommerce-tabs ul.tabs::before, .woocommerce div.product .woocommerce-tabs ul.tabs li::before, .woocommerce div.product .woocommerce-tabs ul.tabs li::after { display: none; }
.woocommerce div.product .woocommerce-tabs ul.tabs li { margin: 0 8px 0 0; border: 0; border-radius: 0; background: transparent; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active { border-bottom: 3px solid var(--yt-cyan); }
.woocommerce div.product .woocommerce-tabs .panel { padding: 26px 0; }

.yt-site-footer { color: rgba(255,255,255,.64); background: #06131d; }
.yt-site-footer__cta { background: linear-gradient(120deg, #0a567b, #0b8097); }
.yt-site-footer__cta-inner { min-height: 215px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.yt-site-footer__cta h2 { max-width: 760px; margin: 0; color: var(--yt-white); font-size: clamp(2.3rem,4vw,4rem); }
.yt-site-footer__grid { display: grid; grid-template-columns: 1.6fr repeat(3,1fr); gap: 60px; padding-block: 74px; }
.yt-site-footer h3 { margin-bottom: 22px; color: var(--yt-white); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.yt-site-footer ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.yt-site-footer li, .yt-site-footer address, .yt-site-footer p, .yt-site-footer a { color: rgba(255,255,255,.56); font-size: 13px; font-style: normal; }
.yt-site-footer a:hover { color: var(--yt-white); }
.yt-brand--footer .yt-brand__wordmark strong { color: var(--yt-white); }
.yt-site-footer__brand > p { max-width: 370px; margin-top: 22px; }
.yt-site-footer__bottom { border-top: 1px solid rgba(255,255,255,.08); }
.yt-site-footer__bottom .yt-container { min-height: 64px; display: flex; justify-content: space-between; align-items: center; font-size: 10px; letter-spacing: .05em; text-transform: uppercase; }

@media (max-width: 1180px) {
    .yt-primary-nav { gap: 10px; }
    .yt-primary-nav ul a { padding-inline: 7px; font-size: 12px; }
    .yt-brand__wordmark small { display: none; }
    .yt-capability-grid, .yt-industrial-grid, ul.products, .woocommerce ul.products, .woocommerce-page ul.products { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .yt-partner-bar__inner { grid-template-columns: 1fr repeat(3,1.1fr); }
}

@media (max-width: 1080px) {
    .admin-bar .yt-site-header { top: 46px; }
    .yt-nav-toggle { display: inline-flex; }
    .yt-primary-nav { position: fixed; inset: 116px 0 auto; max-height: calc(100vh - 116px); overflow: auto; display: none; align-items: stretch; padding: 28px 24px 40px; background: var(--yt-white); border-top: 1px solid var(--yt-grey-100); box-shadow: 0 20px 40px rgba(8,25,37,.14); }
    .admin-bar .yt-primary-nav { top: 128px; }
    .yt-primary-nav.is-open { display: grid; }
    .yt-primary-nav ul { display: grid; align-items: stretch; }
    .yt-primary-nav ul a { padding: 14px 2px; border-bottom: 1px solid var(--yt-grey-100); font-size: 16px; }
    .yt-primary-nav ul a[aria-current="page"] { box-shadow: none; color: var(--yt-blue); }
    .yt-primary-nav .yt-button { margin-top: 10px; }
    .nav-open .yt-nav-toggle__icon i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-open .yt-nav-toggle__icon i:nth-child(2) { opacity: 0; }
    .nav-open .yt-nav-toggle__icon i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .yt-hero__inner { grid-template-columns: 1fr; padding-top: 72px; }
    .yt-hero__content { max-width: 760px; }
    .yt-hero__visual { min-height: 520px; }
    .yt-partner-bar__inner { grid-template-columns: repeat(3,1fr); padding-block: 22px; }
    .yt-partner-bar__label { grid-column: 1 / -1; }
    .yt-partner-brand:first-of-type { padding-left: 0; border-left: 0; }
    .yt-section-heading--split { grid-template-columns: 1fr; gap: 25px; }
    .yt-ai-layout { grid-template-columns: 1fr; }
    .yt-ai-visual { min-height: 500px; order: 2; }
    .yt-process-grid { grid-template-columns: repeat(2,1fr); gap: 48px 0; }
    .yt-site-footer__grid { grid-template-columns: 1.5fr repeat(2,1fr); }
    .yt-site-footer__grid > div:last-child { grid-column: 2 / -1; }
    .single-product div.product { grid-template-columns: 1fr; }
    .yt-post-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .yt-contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
    .yt-container { width: min(calc(100% - 32px), var(--yt-container)); }
    .yt-utility-bar__inner { min-height: 30px; }
    .yt-utility-bar__inner span:nth-child(2), .yt-utility-bar__inner span:nth-child(3) { display: none; }
    .yt-site-header__inner { min-height: 74px; }
    .yt-brand img { width: 46px; height: 46px; }
    .yt-brand__wordmark strong { font-size: 13px; }
    .yt-primary-nav { top: 104px; }
    .admin-bar .yt-primary-nav { top: 120px; }
    .yt-hero { min-height: auto; }
    .yt-hero__inner { gap: 30px; padding-block: 58px 70px; }
    .yt-hero h1 { font-size: clamp(2.7rem, 13vw, 4rem); }
    .yt-hero__content > p { font-size: 16px; }
    .yt-hero__actions { display: grid; }
    .yt-hero__proof { display: grid; grid-template-columns: repeat(2,1fr); }
    .yt-hero__visual { min-height: 410px; }
    .yt-hero__orbit--one { width: 370px; height: 370px; }
    .yt-hero__orbit--two { width: 290px; height: 290px; }
    .yt-hero-card { width: min(320px, 82%); }
    .yt-signal-card { min-width: 148px; padding: 10px; }
    .yt-signal-card--top { right: -10px; top: 44px; }
    .yt-signal-card--bottom { left: -8px; bottom: 42px; }
    .yt-partner-bar__inner { grid-template-columns: 1fr; }
    .yt-partner-brand { padding: 10px 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.08); }
    .yt-capability-grid, .yt-industrial-grid, ul.products, .woocommerce ul.products, .woocommerce-page ul.products { grid-template-columns: 1fr; }
    .yt-capability-card { min-height: 330px; }
    .yt-industrial-card { min-height: 270px; }
    .yt-ai-visual { min-height: 390px; }
    .yt-ai-visual::before { inset: 26px; }
    .yt-ai-node--centre { width: 96px; height: 96px; left: calc(50% - 48px); top: calc(50% - 48px); }
    .yt-ai-node--one, .yt-ai-node--two, .yt-ai-node--three, .yt-ai-node--four { width: 63px; height: 63px; font-size: 10px; }
    .yt-process-grid { grid-template-columns: 1fr; gap: 38px; }
    .yt-process-grid li { min-height: 190px; }
    .yt-page-hero { padding-block: 72px 65px; }
    .yt-page-content .yt-service-grid { grid-template-columns: 1fr; }
    .yt-post-grid, .yt-contact-form__grid { grid-template-columns: 1fr; }
    .yt-contact-form__wide { grid-column: auto; }
    .yt-contact-form { padding: 22px; }
    .yt-contact-form__privacy { display: block; margin: 12px 0 0; }
    .yt-site-footer__cta-inner { min-height: 260px; align-items: flex-start; justify-content: center; flex-direction: column; }
    .yt-site-footer__grid { grid-template-columns: 1fr; gap: 38px; }
    .yt-site-footer__grid > div:last-child { grid-column: auto; }
    .yt-site-footer__bottom .yt-container { align-items: flex-start; justify-content: center; flex-direction: column; gap: 4px; }
}

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