:root {
    --navy: #221f5d;
    --maroon: #831413;
    --ink: #111827;
    --muted: #5f6472;
    --line: #e6e7ec;
    --soft: #f7f7fb;
    --white: #ffffff;
    --shadow: 0 20px 50px rgba(34, 31, 93, .12);
    --display: 'Bebas Neue', 'Roboto', Inter, Arial, sans-serif;
    --heading: 'Roboto', Inter, Arial, sans-serif;
    --body: 'Inter', Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--white);
    color: var(--ink);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.55;
}

img { max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

p { margin: 0 0 18px; color: var(--muted); font-family: var(--body); }

h1, h2, h3, h4 {
    margin: 0;
    color: var(--navy);
    font-family: var(--heading);
    font-weight: 700;
    line-height: 1.3;
}

.wrap {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.top-strip {
    background: #0d0d0d;
    color: var(--white);
    font-size: 14px;
    height: 40px;
    overflow: hidden;
}

.top-strip__inner {
    display: flex;
    align-items: center;
    gap: 160px;
    width: max-content;
    height: 40px;
    padding: 0;
    text-transform: uppercase;
    font-weight: 800;
    white-space: nowrap;
    animation: marqueeStrip 38s linear infinite;
}

@keyframes marqueeStrip {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.top-strip a { color: var(--white); }
.top-strip i { margin-right: 7px; }

.site-header {
    position: relative;
    top: 0;
    z-index: 50;
    background: var(--white);
    border-bottom: 0;
}

.nav-bar {
    width: min(1608px, calc(100% - 160px));
    min-height: 105px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 44px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: Roboto, Inter, Arial, sans-serif;
    font-weight: 900;
    color: var(--navy);
    text-transform: uppercase;
}

.brand img {
    width: 110px;
    height: 76px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 50px;
    font-weight: 700;
    font-size: 16px;
}

.main-nav a {
    color: var(--ink);
    transition: color .18s ease;
}

.main-nav a:hover { color: var(--maroon); }

.nav-dropdown {
    position: relative;
}

.nav-dropdown__button {
    min-height: 0;
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--maroon);
    box-shadow: none;
    font: inherit;
    font-weight: 800;
}

.nav-dropdown__button:hover {
    transform: none;
    box-shadow: none;
}

.nav-dropdown__button i {
    margin-left: 8px;
    font-weight: 700;
}

.nav-dropdown__menu {
    position: absolute;
    top: 32px;
    left: -84px;
    width: 187px;
    display: grid;
    gap: 0;
    padding: 0;
    background: #fff;
    border: 1px solid #111;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity .14s ease, transform .14s ease, visibility .14s ease;
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown__menu a {
    display: block;
    padding: 10px 16px;
    color: #111;
    font-size: 16px;
    line-height: 1.15;
    white-space: nowrap;
}

.nav-dropdown__menu a:hover {
    color: var(--maroon);
    background: #f7f7f7;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-footer {
    background: #050505;
}

.footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
    max-width: 1120px;
}

.footer-brand img {
    width: 98px;
    height: auto;
}

.footer-grid > div:first-child p,
.footer-grid > div:first-child a {
    font-weight: 700;
}

.footer-grid a:before {
    content: "> ";
    color: var(--white);
}

.footer-grid > div:first-child a:before,
.footer-brand:before {
    content: "";
}

.footer-bottom {
    text-align: center;
    max-width: 1120px;
}

.btn,
button,
input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border: 3px solid var(--navy);
    border-radius: 0;
    padding: 13px 24px;
    font-family: Roboto, Inter, Arial, sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.nav-actions .btn {
    min-width: 130px;
    min-height: 56px;
    border-radius: 25px;
    padding: 16px 26px;
}

.nav-actions .btn-primary {
    min-width: 157px;
}

.left-contact-tab {
    position: fixed;
    left: 0;
    top: 530px;
    z-index: 40;
    display: grid;
    overflow: hidden;
    border-radius: 0 12px 12px 0;
}

.left-contact-tab a {
    display: grid;
    place-items: center;
    width: 45px;
    height: 56px;
    background: #9a1715;
    color: #fff;
    font-size: 23px;
}

.left-contact-tab a + a {
    border-top: 1px solid rgba(255,255,255,.15);
}

.btn:hover,
button:hover,
input[type="submit"]:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(34, 31, 93, .16);
}

.btn-primary,
input[type="submit"] {
    background: var(--maroon);
    border-color: var(--maroon);
    color: var(--white);
}

.btn-outline {
    background: var(--white);
    color: var(--navy);
}

.nav-toggle { display: none; }
.nav-toggle-label { display: none; color: var(--navy); font-size: 24px; }

.hero {
    position: relative;
    overflow: hidden;
    min-height: 680px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.9) 42%, rgba(255,255,255,.55) 100%),
        var(--hero-image, url("/assets/images/ghl-home/69931d5f6bac24c405c5ee7d.jpg")) center right / cover no-repeat;
    border-bottom: 1px solid var(--line);
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 46px;
    align-items: center;
    padding: 82px 0;
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--maroon);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.hero h1 {
    max-width: 780px;
    font-size: clamp(42px, 6vw, 82px);
    font-weight: 900;
    text-transform: uppercase;
}

.hero p {
    max-width: 610px;
    margin-top: 22px;
    font-size: 19px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-panel,
.quote-panel,
.content-card,
.stat-card,
.process-card,
.contact-card,
.form-card {
    background: var(--white);
    border: 2px solid var(--navy);
    box-shadow: var(--shadow);
}

.hero-panel {
    padding: 28px;
}

.hero-panel h2 { font-size: 28px; margin-bottom: 16px; }

.check-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--ink);
    font-weight: 700;
}

.check-list i { color: var(--maroon); margin-top: 4px; }

.section { padding: 82px 0; }
.section--soft { background: var(--soft); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3, .section--navy p { color: var(--white); }

.section-head {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head h2 {
    font-size: clamp(32px, 4vw, 54px);
    text-transform: uppercase;
}

.section-head p {
    margin-top: 14px;
    font-size: 18px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.content-card,
.stat-card,
.process-card,
.contact-card,
.form-card {
    padding: 28px;
}

.content-card h3,
.process-card h3,
.contact-card h3 { font-size: 24px; margin-bottom: 10px; }

.content-card i,
.process-card .number {
    color: var(--maroon);
    font-size: 30px;
    margin-bottom: 18px;
}

.ghl-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.ghl-gallery img,
.patch-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 2px solid var(--navy);
    background: var(--white);
}

.patch-card {
    display: grid;
    gap: 14px;
}

.patch-card h3 { font-size: 22px; }

.resource-list {
    display: grid;
    gap: 18px;
}

.resource-row {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 18px;
    align-items: center;
    padding: 18px;
    background: var(--white);
    border: 2px solid var(--navy);
}

.resource-row img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.ghl-hero {
    background:
        radial-gradient(circle at 54% 23%, rgba(58, 54, 129, .52), rgba(34, 31, 93, .98) 58%),
        linear-gradient(135deg, #15124d, #272067);
    color: var(--white);
    text-align: center;
    min-height: 820px;
    padding: 116px 0 74px;
    overflow: hidden;
}

.ghl-hero h1 {
    color: var(--white);
    font-size: clamp(42px, 4.05vw, 55px);
    text-transform: uppercase;
    line-height: 1.18;
    margin: 0 auto 22px;
    letter-spacing: .2px;
}

.ghl-hero p {
    max-width: 900px;
    color: rgba(255,255,255,.88);
    margin: 0 auto 42px;
    font-size: 16px;
    line-height: 1.55;
}

.hero-slider {
    position: relative;
    width: min(800px, 92%);
    height: 500px;
    margin: 0 auto;
    filter: drop-shadow(0 35px 26px rgba(0,0,0,.35));
    overflow: hidden;
    border-radius: 8px;
}

.hero-slider img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    animation: heroSlide 12s infinite;
}

.hero-slider img:nth-child(2) {
    animation-delay: 4s;
}

.hero-slider img:nth-child(3) {
    animation-delay: 8s;
}

.hero-start {
    margin-top: 40px;
}

@keyframes heroSlide {
    0%, 28% { opacity: 1; }
    35%, 100% { opacity: 0; }
}

.client-strip {
    background: #fff;
    padding: 28px 0;
    border-bottom: 1px solid #eee;
    overflow: hidden;
}

.client-track {
    display: flex;
    align-items: center;
    gap: clamp(28px, 5vw, 76px);
    color: #858585;
    font-size: 24px;
    font-weight: 800;
    opacity: .85;
    white-space: nowrap;
    width: max-content;
    animation: marqueeClients 38s linear infinite;
}

@keyframes marqueeClients {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}

.ghl-about {
    padding: 110px 0 130px;
    background:
        linear-gradient(rgba(255,255,255,.94), rgba(255,255,255,.94)),
        repeating-radial-gradient(ellipse at center, rgba(34,31,93,.08) 0 1px, transparent 1px 14px);
}

.ghl-about-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 70px;
    align-items: center;
    max-width: 980px;
}

.asi-logo {
    width: 215px;
    margin-bottom: 32px;
}

.about-copy h2 {
    color: #101010;
    font-size: 32px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.about-copy h3 {
    color: var(--maroon);
    font-size: 22px;
    margin-bottom: 28px;
}

.about-copy p {
    color: #111;
    font-size: 17px;
}

.about-media {
    position: relative;
    min-height: 580px;
}

.about-machine,
.about-thread {
    position: absolute;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 24px 55px rgba(0,0,0,.18);
}

.about-machine {
    right: 0;
    top: 0;
    width: 470px;
    height: 520px;
}

.about-thread {
    left: 0;
    bottom: 0;
    width: 360px;
    height: 330px;
}

.flag-section {
    background:
        linear-gradient(rgba(255,255,255,.64), rgba(255,255,255,.64)),
        url("/assets/images/ghl-home/69931d5f6bac24c405c5ee7d.jpg") center / cover fixed;
}

.ghl-services {
    padding: 92px 0 120px;
}

.section-title {
    text-align: center;
    margin-bottom: 58px;
}

.section-title h2 {
    color: #080808;
    font-size: clamp(34px, 3vw, 52px);
    text-transform: uppercase;
}

.section-title p {
    color: #171717;
    margin-top: 10px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 54px 40px;
}

.service-card {
    background: #fff;
    border: 3px dashed var(--navy);
    border-radius: 8px;
    padding: 28px 28px 44px;
    text-align: center;
    min-height: 620px;
}

.service-card img {
    width: 100%;
    aspect-ratio: 1 / .85;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 28px;
}

.service-card h3 {
    color: var(--maroon);
    text-transform: uppercase;
    font-size: 28px;
    margin-bottom: 24px;
    text-shadow: 0 3px 2px rgba(0,0,0,.2);
}

.service-card p {
    color: #111;
    font-size: 16px;
    min-height: 132px;
}

.service-card a {
    color: var(--navy);
    font-weight: 800;
    font-size: 13px;
}

.production-band {
    display: grid;
    grid-template-columns: 240px 1fr 240px;
    align-items: center;
    gap: 28px;
    background: #981514;
    color: #fff;
    text-align: center;
    padding: 54px 48px;
}

.production-band h2 {
    color: #fff;
    text-transform: uppercase;
    font-size: 42px;
    margin-bottom: 14px;
}

.production-band p {
    color: #fff;
    max-width: 850px;
    margin: 0 auto 28px;
    font-size: 17px;
}

.production-band img {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    object-fit: cover;
    opacity: .9;
}

.btn.light {
    border-color: #fff;
    color: #fff;
    background: transparent;
    width: auto;
}

.process {
    padding: 74px 0 88px;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 54px 1fr 54px 1fr 54px 1fr;
    align-items: center;
    gap: 0;
}

.process-box {
    min-height: 260px;
    padding: 38px 30px;
    border-radius: 12px;
    background: #fff;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0,0,0,.16);
}

.process-box.dark {
    background: var(--navy);
    color: #fff;
}

.process-box.dark h3,
.process-box.dark p,
.process-box.dark i {
    color: #fff;
}

.process-box i {
    color: var(--navy);
    font-size: 50px;
    margin-bottom: 22px;
}

.process-box h3 {
    font-size: 21px;
    margin-bottom: 10px;
}

.process-box p {
    color: inherit;
    font-size: 15px;
}

.arrow {
    color: var(--navy);
    font-size: 52px;
    font-weight: 900;
    text-align: center;
}

.discuss {
    position: relative;
    min-height: 720px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 110px 16px 220px;
    overflow: hidden;
    text-align: center;
}

.discuss h2 {
    position: relative;
    z-index: 3;
    color: var(--navy);
    font-family: var(--display);
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    font-size: clamp(72px, 9vw, 120px);
    line-height: 1.05;
    letter-spacing: .5px;
    margin: 0;
}

.ribbon {
    position: absolute;
    left: -14%;
    right: -14%;
    color: #fff;
    background: transparent;
    padding: 18px 0;
    overflow: hidden;
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
}

.ribbon span {
    display: inline-block;
    padding: 0 38px;
    font-family: var(--heading);
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
    animation: ribbonScroll 35s linear infinite;
}

.ribbon-red span {
    animation-direction: reverse;
}

.ribbon-blue {
    bottom: 140px;
    background: var(--navy);
    transform: rotate(6deg);
}

.ribbon-red {
    bottom: 60px;
    background: var(--maroon);
    transform: rotate(-7deg);
}

@keyframes ribbonScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.faq-section {
    padding: 95px 0 105px;
    background:
        linear-gradient(rgba(245,245,245,.92), rgba(245,245,245,.92)),
        repeating-radial-gradient(ellipse at center, rgba(34,31,93,.08) 0 1px, transparent 1px 14px);
}

.faq-wrap {
    max-width: 880px;
}

.faq-wrap details {
    background: #fff;
    border: 2px solid var(--navy);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-wrap summary {
    cursor: pointer;
    padding: 18px 22px;
    color: #111;
    font-weight: 900;
}

.faq-wrap details[open] summary {
    background: var(--navy);
    color: #fff;
}

.faq-wrap details p {
    color: #111;
    padding: 20px 22px;
    margin: 0;
    font-size: 17px;
}

.inspiration {
    padding: 86px 0 110px;
    background:
        linear-gradient(rgba(255,255,255,.94), rgba(255,255,255,.94)),
        repeating-radial-gradient(ellipse at center, rgba(34,31,93,.08) 0 1px, transparent 1px 14px);
}

.inspiration-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    max-width: 880px;
    margin: 0 auto;
}

.inspiration-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 7px;
}

.stat-card strong {
    display: block;
    color: var(--maroon);
    font-family: Roboto, Inter, Arial, sans-serif;
    font-size: 42px;
    line-height: 1;
}

.stat-card span {
    display: block;
    margin-top: 8px;
    color: var(--navy);
    font-weight: 800;
}

.media-band {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 34px;
    align-items: center;
}

.media-frame {
    border: 10px solid var(--maroon);
    background: var(--white);
    padding: 12px;
    box-shadow: var(--shadow);
}

.media-frame img {
    display: block;
    width: 100%;
}

.quote-panel h2 { font-size: 30px; margin-bottom: 18px; }

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.form-grid .full { grid-column: 1 / -1; }

label {
    display: block;
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 7px;
}

.form-control,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="file"],
select,
textarea {
    width: 100%;
    min-height: 48px;
    border: 2px solid var(--line);
    border-radius: 0;
    background: var(--white);
    color: var(--ink);
    padding: 11px 13px;
    font: inherit;
}

textarea { min-height: 112px; resize: vertical; }

.form-control:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--maroon);
    box-shadow: 0 0 0 3px rgba(131, 20, 19, .12);
}

.alert {
    padding: 16px 18px;
    border: 2px solid var(--navy);
    margin-bottom: 20px;
    background: var(--soft);
    color: var(--navy);
    font-weight: 700;
}

.alert-danger {
    border-color: var(--maroon);
    color: var(--maroon);
}

.page-hero {
    padding: 78px 0;
    background: var(--soft);
    border-bottom: 1px solid var(--line);
}

.page-hero h1 {
    font-size: clamp(40px, 5vw, 68px);
    text-transform: uppercase;
}

.page-hero p {
    max-width: 760px;
    margin-top: 14px;
    font-size: 18px;
}

.article {
    max-width: 880px;
}

.article h2 { font-size: 34px; margin: 30px 0 14px; }
.article h3, .article h4 { font-size: 24px; margin: 26px 0 10px; }

.split-page {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 32px;
    align-items: start;
}

.sidebar {
    position: sticky;
    top: 120px;
}

.payment-card img { margin-top: 14px; }

.registration-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 30px;
    align-items: start;
}

.auth-layout {
    display: grid;
    grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
    gap: 34px;
    align-items: center;
}

.auth-art {
    min-height: 560px;
    border: 10px solid var(--maroon);
    background: var(--white);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.auth-art img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
}

.registration-form .form-row {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    margin-bottom: 14px;
}

.registration-form .form-row--top { align-items: start; }

.registration-form .form-row label { margin-bottom: 0; }
.registration-form .star-mark { color: var(--maroon); font-weight: 900; margin-left: 6px; }
.registration-form .show-pass { margin-left: 10px; color: var(--maroon); cursor: pointer; font-weight: 800; }
.more-emails-wrap, .billing-info-outer { margin-top: 14px; }
.hidden { display: none !important; }
.billing-info-outer { padding-top: 18px; border-top: 2px solid var(--line); }
.billing-info-outer h2 { margin: 0 0 18px; font-size: 28px; }
input.error { border-color: var(--maroon); }
label.error { color: var(--maroon); margin-top: 6px; font-size: 13px; }

.contact-list {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}

.contact-list a,
.contact-list span {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--ink);
    font-weight: 700;
}

.contact-list i { color: var(--maroon); margin-top: 4px; }

.site-footer {
    background: #050505;
    color: var(--white);
    padding: 54px 0 24px;
}

.site-footer p,
.site-footer a { color: rgba(255,255,255,.78); }

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 72px;
    max-width: 1120px;
}

.site-footer h3 {
    margin-bottom: 14px;
    color: var(--white);
    font-size: 18px;
}

.site-footer a {
    display: block;
    margin-bottom: 9px;
}

.footer-brand { color: var(--white); margin-bottom: 22px; }
.footer-brand img { width: 98px; height: auto; }

.footer-grid a:before {
    content: "> ";
    color: var(--white);
}

.footer-grid > div:first-child a:before,
.footer-brand:before {
    content: "";
}

.footer-bottom {
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.14);
    color: rgba(255,255,255,.62);
    font-size: 14px;
    text-align: center;
    max-width: 1120px;
}

.page-banner {
    background:
        linear-gradient(rgba(34, 31, 93, .88), rgba(34, 31, 93, .92)),
        url("/assets/images/ghl-home/69931d5f6bac24c405c5ee7d.jpg") center / cover;
    color: var(--white);
    padding: 96px 0 78px;
    border-bottom: 6px solid var(--maroon);
}

.page-banner .wrap { text-align: center; max-width: 880px; }

.page-banner .eyebrow {
    color: #ffbcbc;
    letter-spacing: 2px;
    font-size: 13px;
}

.page-banner h1 {
    color: var(--white);
    font-size: clamp(36px, 4.4vw, 64px);
    text-transform: uppercase;
    margin: 12px 0 18px;
}

.page-banner p {
    color: rgba(255, 255, 255, .85);
    max-width: 760px;
    margin: 0 auto;
    font-size: 17px;
}

.section-title.section-title--left {
    text-align: left;
    margin-bottom: 20px;
}

.product-hero {
    padding: 88px 0 70px;
    background: var(--white);
}

.product-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
}

.product-hero__copy h1 {
    color: var(--navy);
    font-size: clamp(36px, 3.8vw, 58px);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.product-hero__copy h2 {
    color: var(--maroon);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 18px;
}

.product-hero__copy p {
    color: #1f2937;
    font-size: 18px;
    margin-bottom: 28px;
}

.product-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.product-hero__media {
    border: 3px dashed var(--navy);
    border-radius: 8px;
    padding: 14px;
    background: #fff;
    box-shadow: var(--shadow);
}

.product-hero__media img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 6px;
}

.product-what {
    padding: 80px 0;
    background: var(--soft);
}

.product-what__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    gap: 56px;
    align-items: center;
}

.product-what__copy h2 {
    color: var(--navy);
    text-transform: uppercase;
}

.product-what__copy p {
    color: #1f2937;
    font-size: 17px;
}

.product-what__media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 10px solid var(--maroon);
    background: #fff;
    box-shadow: var(--shadow);
}

.feature-list {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.feature-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: #111;
    font-weight: 700;
    font-size: 16px;
}

.feature-list li i {
    color: var(--maroon);
    margin-top: 5px;
    font-size: 13px;
}

.feature-list.compact li { font-weight: 600; font-size: 15px; }
.feature-list.compact li i { color: var(--navy); font-size: 8px; margin-top: 8px; }

.product-types {
    padding: 92px 0 110px;
}

.type-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.type-card {
    background: #fff;
    border: 3px dashed var(--navy);
    border-radius: 8px;
    padding: 26px 26px 32px;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.type-card__media {
    margin: -26px -26px 22px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.type-card__media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.type-card h3 {
    color: var(--maroon);
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 12px;
}

.type-card h4 {
    color: var(--navy);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    margin: 18px 0 8px;
}

.type-card p {
    color: #1f2937;
    font-size: 15px;
    margin: 0;
}

.product-info {
    padding: 84px 0 100px;
    background:
        linear-gradient(rgba(255,255,255,.94), rgba(255,255,255,.94)),
        repeating-radial-gradient(ellipse at center, rgba(34,31,93,.08) 0 1px, transparent 1px 14px);
}

.product-info__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.info-card {
    background: #fff;
    border: 2px solid var(--navy);
    border-radius: 8px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: var(--shadow);
}

.info-card h3 {
    color: var(--navy);
    font-size: 21px;
    text-transform: uppercase;
}

.info-card p {
    color: #1f2937;
    font-size: 15px;
}

.info-card--accent {
    background: var(--navy);
    border-color: var(--navy);
}

.info-card--accent h3,
.info-card--accent p {
    color: #fff;
}

.info-card--cta {
    background: var(--maroon);
    border-color: var(--maroon);
}

.info-card--cta h3,
.info-card--cta p {
    color: #fff;
}

.info-card--cta .btn {
    margin-top: auto;
    align-self: flex-start;
    background: #fff;
    border-color: #fff;
    color: var(--maroon);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.value-card {
    background: #fff;
    border: 2px solid var(--navy);
    border-radius: 8px;
    padding: 28px;
    text-align: center;
    box-shadow: var(--shadow);
}

.value-card i {
    color: var(--maroon);
    font-size: 38px;
    margin-bottom: 14px;
}

.value-card h3 {
    font-size: 19px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.value-card p {
    color: #111;
    font-size: 15px;
}

.values {
    padding: 92px 0 110px;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.resource-card {
    background: #fff;
    border: 3px dashed var(--navy);
    border-radius: 8px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.resource-card i {
    color: var(--maroon);
    font-size: 34px;
    margin-bottom: 6px;
}

.resource-card h3 {
    font-size: 20px;
    text-transform: uppercase;
    color: var(--navy);
}

.resource-card p {
    color: #111;
    font-size: 15px;
    margin: 0;
}

.resource-card__link {
    margin-top: auto;
    color: var(--navy);
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-top: 12px;
}

.resource-card__link:hover { color: var(--maroon); }

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: 34px;
    align-items: start;
}

.contact-info-card {
    background: var(--navy);
    color: #fff;
    border: 2px solid var(--navy);
    border-radius: 8px;
    padding: 36px;
    box-shadow: var(--shadow);
}

.contact-info-card h2,
.contact-info-card h3 {
    color: #fff;
    text-transform: uppercase;
}

.contact-info-card p,
.contact-info-card .contact-list a,
.contact-info-card .contact-list span,
.contact-info-card .check-list li {
    color: rgba(255, 255, 255, .9);
}

.contact-info-card .contact-list a:hover { color: #ffbcbc; }
.contact-info-card .contact-list i { color: #ffbcbc; }
.contact-info-card .check-list i { color: #ffbcbc; }
.contact-info-card .contact-perks { margin-top: 30px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .18); }

.contact-form-card {
    background: #fff;
    border: 2px solid var(--navy);
    border-radius: 8px;
    padding: 36px;
    box-shadow: var(--shadow);
}

.service-card__media {
    margin: -28px -28px 24px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.service-card__media img {
    margin-bottom: 0;
    border-radius: 0;
}

.auth-helper {
    margin-top: 20px;
    color: var(--muted);
    line-height: 1.6;
}

.auth-helper a { color: var(--maroon); }

.payment-card .btn {
    width: 100%;
    margin-bottom: 16px;
}

.payment-card img { margin-top: 4px; }

.article p,
.article ul,
.article ol {
    color: #111;
    font-size: 17px;
    line-height: 1.65;
}

.article ul,
.article ol {
    padding-left: 22px;
    margin: 0 0 18px;
}

.article a {
    color: var(--maroon);
    text-decoration: underline;
}

.captcha-image {
    margin-bottom: 10px;
}

.captcha-image img {
    border: 2px solid var(--line);
    background: #fff;
}

.inline-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    font-weight: 700;
}

@media (max-width: 980px) {
    .product-hero__grid,
    .product-what__grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .type-grid,
    .product-info__grid,
    .value-grid,
    .resource-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-banner { padding: 72px 0 60px; }
}

@media (max-width: 720px) {
    .type-grid,
    .product-info__grid,
    .value-grid,
    .resource-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 26px;
    }

    .product-hero { padding: 60px 0 40px; }
    .product-what { padding: 56px 0; }
    .product-types { padding: 60px 0 72px; }
    .product-info { padding: 56px 0 72px; }
    .values { padding: 56px 0 72px; }
}

@media (max-width: 980px) {
    .nav-bar {
        grid-template-columns: auto auto;
        width: min(100% - 32px, 1180px);
        min-height: 74px;
    }

    .nav-toggle-label {
        display: block;
        justify-self: end;
    }

    .main-nav,
    .nav-actions {
        display: none;
        grid-column: 1 / -1;
        justify-content: flex-start;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding-bottom: 18px;
    }

    .main-nav a { padding: 12px 0; border-top: 1px solid var(--line); }
    .nav-dropdown { border-top: 1px solid var(--line); padding: 12px 0; }
    .nav-dropdown__menu {
        position: static;
        width: 100%;
        border: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 10px;
        background: #f7f7f7;
    }
    .nav-dropdown__menu a {
        padding: 10px 14px;
    }
    .nav-actions { padding-top: 0; }
    .nav-toggle:checked ~ .main-nav,
    .nav-toggle:checked ~ .nav-actions { display: flex; }

    .hero__grid,
    .media-band,
    .split-page,
    .registration-layout,
    .auth-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ghl-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ghl-about-grid,
    .service-grid,
    .process-grid,
    .production-band {
        grid-template-columns: 1fr;
    }
    .about-media {
        min-height: auto;
        display: grid;
        gap: 18px;
    }
    .about-machine,
    .about-thread {
        position: static;
        width: 100%;
        height: auto;
    }
    .arrow {
        transform: rotate(90deg);
    }
    .production-band img {
        margin: 0 auto;
    }
    .service-card {
        min-height: auto;
    }
    .hero { min-height: auto; }
    .sidebar { position: static; }
}

@media (max-width: 720px) {
    .top-strip__inner { justify-content: flex-start; gap: 80px; padding-left: 12px; }
    .brand span { font-size: 14px; }
    .grid-2, .grid-3, .grid-4, .form-grid { grid-template-columns: 1fr; }
    .ghl-gallery { grid-template-columns: 1fr; }
    .ghl-hero { padding: 58px 0 72px; }
    .client-track { justify-content: flex-start; overflow-x: auto; padding: 0 16px; }
    .hero-slider {
        height: 280px;
    }
    .ghl-about, .ghl-services, .faq-section, .inspiration { padding: 56px 0; }
    .service-card { padding: 18px; }
    .production-band { padding: 42px 24px; }
    .production-band h2 { font-size: 30px; }
    .process-box { min-height: auto; }
    .discuss { min-height: 360px; }
    .inspiration-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .section { padding: 58px 0; }
    .hero__grid { padding: 58px 0; }
    .registration-form .form-row {
        grid-template-columns: 1fr;
        gap: 7px;
    }
    .btn, button, input[type="submit"] { width: 100%; }
    .discuss {
        min-height: 540px;
        padding: 70px 12px 180px;
    }
    .discuss h2 { font-size: clamp(56px, 14vw, 90px); }
    .ribbon span { font-size: 14px; padding: 0 24px; }
    .ribbon-blue { bottom: 110px; }
    .ribbon-red { bottom: 50px; }
}
