:root {
    --blue: #000066;
    --blue2: #0b65d8;
    --blue3: #eaf4ff;
    --navy: #071936;
    --black: #111;
    --text: #2f3742;
    --muted: #687385;
    --border: #dce8f8;
    --white: #fff;
    --soft: #f5f9ff;
    --radius: 28px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: inter;
    color: var(--black);
    background: var(--white);
}

.container {
    width: min(1350px, 94%);
    margin: 0 auto;
}

.site-header {
    background: rgba(255,255,255,.92);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(14px);
}

.header-inner {
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand img {
    width: 300px;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    font-size: 15px;
    font-weight: 500;
}

.main-nav a {
    color: var(--black);
    text-decoration: none;
}

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

.main-nav a[aria-current="page"] {
    color: var(--blue);
    font-weight: 600;
    border-bottom: 2px solid var(--blue);
    padding-bottom: 2px;
}

.main-nav a.nav-cta[aria-current="page"] {
    border-bottom: 0;
    padding-bottom: 13px;
}

.nav-cta {
    background: var(--blue);
    color: var(--white) !important;
    padding: 13px 18px;
    border-radius: 999px;
}

.nav-cta[aria-current="page"] {
    border-bottom: none;
    padding-bottom: 13px;
    opacity: 0.85;
}

.hero {
    padding: 86px 0 0;
    background:
        radial-gradient(circle at 82% 18%, rgba(0,59,153,.18), transparent 34%),
        linear-gradient(135deg, #fff 0%, #eef7ff 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 100px;
    align-items: center;
}

.eyebrow {
    display: inline-block;
    color: var(--blue);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: 13px;
    margin-bottom: 8px;	
}

.eyebrow.light {
    color: #8fc5ff;
}

h1 {
    font-size: clamp(48px, 6.8vw, 75px);
    line-height: .94;
    letter-spacing: -2px;
    margin: 0 0 28px;
}

h2 {
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1;
    letter-spacing: -1px;
    margin: 0 0 22px;
}

h3 {
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -1px;
    margin: 0 0 14px;
}

p {
    color: var(--text);
    font-size: 18px;
    line-height: 1.65;
    margin: 0;
}

.hero-intro {
    max-width: 690px;
    font-size: 21px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin: 36px 0 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 26px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
    border: 2px solid var(--blue);
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--blue);
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-tags span {
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--blue);
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 800;
}


.hero-panel {
    background: rgba(255,255,255,.88);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 44px;
    text-align: center;
    box-shadow: 0 28px 90px rgba(0,59,153,.15);
}

.section {
    padding: 60px 0;
}

.section-heading {
    max-width: 1350px;
    margin-bottom: 52px;
}

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

.card {
    background: var(--soft);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 34px;
}

.card a {
    display: inline-block;
    margin-top: 22px;
    color: var(--blue);
    font-weight: 900;
    text-decoration: none;
}

.print-section {
    background: var(--navy);
    color: var(--white);
}

.print-section p {
    color: #dbeaff;
}

.print-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 46px;
    align-items: center;
}

.print-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.print-options article {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--radius);
    padding: 32px;
}

.print-options h3 {
    color: var(--white);
}

.print-options p {
    color: #dbeaff;
}

.print-options .blue-card {
    background: linear-gradient(135deg, var(--blue), var(--blue2));
}

.cta-section {
    padding: 90px 0;
    background: var(--blue3);
}

.cta-box {
    background: var(--white);
    border-radius: 34px;
    padding: 58px;
    text-align: center;
    box-shadow: 0 24px 70px rgba(0,59,153,.13);
}

.cta-box p {
    max-width: 720px;
    margin: 0 auto 30px;
}

.site-footer {
    background: var(--black);
    color: var(--white);
    padding: 30px 0;
}

.site-footer p {
    color: var(--white);
    font-size: 15px;
}

@media (max-width: 960px) {
    .header-inner {
        height: auto;
        padding: 18px 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 14px;
    }

    .hero-grid,
.print-grid,
.card-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        letter-spacing: -1px;
    }

    .hero {
        padding: 58px 0;
    }

    .section {
        padding: 64px 0;
    }
}

@media (max-width: 560px) {
    .brand img {
        width: 180px;
    }

    h1 {
        font-size: 46px;
    }

    .hero-panel,
.cta-box {
        padding: 28px;
    }
}

.page-hero {
    padding: 40px 0;
    background:
        radial-gradient(circle at 80% 25%, rgba(0,59,153,.16), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #eef7ff 100%);
}

.page-hero-inner {
    max-width: 1350px;
}

.page-hero h1 {
    max-width: 1350px;
}

.page-hero p {
    max-width: 1350px;
    font-size: 21px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 54px;
    align-items: start;
}

.content-grid.reverse {
    grid-template-columns: .9fr 1.1fr;
}

.content-grid p + p {
    margin-top: 18px;
}

.side-card {
    background: var(--soft);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 34px;
}

.side-card ul {
    margin: 0;
    padding-left: 20px;
}

.side-card li {
    margin: 12px 0;
    color: var(--text);
    font-size: 18px;
}

.blue-side {
    background: linear-gradient(135deg, var(--blue), var(--blue2));
    color: var(--white);
}

.blue-side p {
    color: #eaf4ff;
}

.soft-section {
    background: var(--soft);
}

.text-link {
    display: inline-block;
    margin-top: 24px;
    color: var(--blue);
    font-weight: 900;
    text-decoration: none;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.brand-grid span {
    background: var(--soft);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 16px 18px;
    font-weight: 900;
    text-align: center;
    color: var(--blue);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr;
    gap: 44px;
    padding: 48px 0 28px;
}

.site-footer h4 {
    margin: 0 0 16px;
    color: #fff;
}

.site-footer a {
    display: block;
    color: #dbeaff;
    text-decoration: none;
    margin: 10px 0;
}

.site-footer a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.16);
    padding: 18px 0 28px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

@media (max-width: 960px) {
    .content-grid,
.content-grid.reverse,
.footer-grid {
        grid-template-columns: 1fr;
    }

    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-hero {
        padding: 64px 0;
    }
}

@media (max-width: 560px) {
    .brand-grid {
        grid-template-columns: 1fr;
    }
}

.credibility-section {
    background: var(--navy);
    color: #fff;
}

.credibility-section p {
    color: #dbeaff;
}

.credibility-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 54px;
    align-items: center;
}

.cred-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.cred-list div {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 22px;
    padding: 22px 24px;
}

.cred-list strong {
    display: block;
    color: #fff;
    font-size: 20px;
    margin-bottom: 8px;
}

.cred-list span {
    color: #dbeaff;
    font-size: 16px;
    line-height: 1.5;
}

@media (max-width: 960px) {
    .credibility-grid {
        grid-template-columns: 1fr;
    }
}

.how-it-works {
    background: #ffffff;
}

.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.who-we-work-with {
    background: var(--soft);
}

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

.audience-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 34px;
    text-align: center;
    transition: all .25s ease;
}

.audience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,59,153,.08);
}

.audience-card h3 {
    margin-bottom: 14px;
}

.audience-card p {
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 960px) {
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .audience-grid {
        grid-template-columns: 1fr;
    }
}

.header-inner {
    height: 112px;
}

.brand img {
    width: 270px;
    max-width: 100%;
    height: auto;
}

.quote-section {
    background: var(--soft);
}

.quote-grid {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: 34px;
    align-items: start;
}

.quote-form-card,
.quote-side-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 38px;
    box-shadow: 0 18px 50px rgba(0,59,153,.08);
}

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

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.form-field label {
    font-weight: 900;
    color: var(--black);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 15px 16px;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
}

.form-field textarea {
    resize: vertical;
}

.form-button {
    margin-top: 26px;
    cursor: pointer;
}

.form-error {
    display: block;
    margin-top: 20px;
    color: #b00020;
    font-weight: 900;
}

.success-box {
    text-align: center;
    padding: 40px 20px;
}

.quote-side-card {
    background: var(--navy);
    color: #fff;
}

.quote-side-card h2 {
    font-size: 38px;
}

.quote-steps {
    display: grid;
    gap: 14px;
    margin: 26px 0;
}

.quote-steps div {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 18px;
    padding: 18px;
}

.quote-steps strong {
    color: #8fc5ff;
    margin-right: 10px;
}

.quote-steps span {
    color: #fff;
    font-weight: 800;
}

.trust-list {
    margin: 28px 0 0;
    padding-left: 20px;
}

.trust-list li {
    margin: 12px 0;
    color: #dbeaff;
    font-size: 17px;
}

@media (max-width: 960px) {
    .quote-grid,
.form-grid {
        grid-template-columns: 1fr;
    }
}

.mobile-menu-toggle {
    display: none;
}

@media (max-width: 900px) {
    .site-header {
        position: sticky;
        top: 0;
        z-index: 999;
    }

    .header-inner {
        height: auto;
        min-height: 76px;
        padding: 14px 0;
        flex-direction: row;
        align-items: center;
    }

    .brand img {
        width: 220px;
        max-height: none;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 0;
        background: var(--blue);
        color: #fff;
        border-radius: 999px;
        padding: 11px 18px;
        font-weight: 900;
        font-size: 15px;
        cursor: pointer;
    }

    .main-nav {
        display: none;
        position: absolute;
        left: 4%;
        right: 4%;
        top: 76px;
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 22px;
        padding: 18px;
        box-shadow: 0 20px 50px rgba(0,59,153,.16);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-open .main-nav {
        display: flex;
    }

    .main-nav a {
        display: block;
        padding: 14px 16px;
        border-bottom: 1px solid var(--border);
    }

    .main-nav a:last-child {
        border-bottom: 0;
    }

    .main-nav a[aria-current="page"] {
        color: var(--blue);
        font-weight: 600;
        border-bottom: 1px solid var(--border);
        padding-bottom: 14px;
    }

    .main-nav .nav-cta {
        margin-top: 12px;
        text-align: center;
        padding: 14px 18px;
    }

    h1 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    h2 {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .hero {
        padding: 44px 0 0;
    }

    .page-hero {
        padding: 42px 0;
    }
}

@media (max-width: 768px) {

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

}

@media (max-width: 768px) {

    .form-field input,
.form-field select,
.form-field textarea {
        min-height: 50px;
        font-size: 16px;
    }

}

@media (max-width: 768px) {

    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

.site-footer {
    background: var(--navy);
    color: #fff;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding: 80px 0 60px;
}

.footer-column h3,
.footer-column h4 {
    color: #fff;
    margin-bottom: 18px;
}

.footer-column p {
    color: #dbeaff;
    line-height: 1.7;
}

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #dbeaff;
    text-decoration: none;
    transition: .2s ease;
}

.footer-column a:hover {
    color: #fff;
}

.footer-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--blue), var(--blue2));
    color: #fff !important;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 800;
    margin: 18px 0 28px;
}

.footer-contact {
    display: grid;
    gap: 18px;
    color: #dbeaff;
}

.footer-contact strong {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 22px 0;
    color: #b9cce8;
    font-size: 14px;
}

@media (max-width: 960px) {

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

}

@media (max-width: 640px) {

    .footer-grid {
        grid-template-columns: 1fr;
        padding: 50px 0;
    }

}


/* =====================================
   STATIC GOLF BRAND STRIP
   column-gap: clamp(34px, 4.5vw, 88px);
   min-height: 65px; 
===================================== */

.brands-static {
    background: var(--blue);
    padding: 0;
    overflow: hidden;
}

.brands-heading {
    color: var(--blue);
    text-align: center;
    font-size: 15px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding-top: 90px;
    padding-bottom: 12px;
}

.brands-static-row {
    width: 100%;       
    background: var(--blue);
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: center;
    justify-items: center; 
	padding-top: 10px;
	padding-bottom: 10px;	
	border-bottom: 1px solid white;
}

.brand-logo-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brands-static-row img {
    display: block;
    width: auto;
    height: 46px;
    max-width: 210px;
    object-fit: contain;
}

/* Individual balancing for naturally different logo shapes */
.brands-static-row img[alt="Titleist"] {
    height: 35px;
}

.brands-static-row img[alt="Bridgestone Golf"] {
    height: 40px;
}

.brands-static-row img[alt="Callaway"] {
    height: 56px;
}

.brands-static-row img[alt="Mizuno"] {
    height: 53px;
}

@media (max-width: 1100px) {
    .brands-static-row {
        padding-left: 5%;
        padding-right: 5%;
        column-gap: 28px;
    }

    .brands-static-row img {
        height: 58px;
        max-width: 170px;
    }

    .brands-static-row img[alt="Titleist"] {
        height: 48px;
    }

    .brands-static-row img[alt="Bridgestone Golf"],
.brands-static-row img[alt="Callaway"] {
        height: 62px;
    }

    .brands-static-row img[alt="Mizuno"] {
        height: 52px;
    }
}

@media (max-width: 768px) {
    .brands-heading {
        padding: 20px 14px 12px;
        font-size: 12px;
    }

    .brands-static-row {
        grid-template-columns: repeat(3, 1fr);
        min-height: 0;
        padding: 22px 7%;
        gap: 26px 34px;
    }

    .brands-static-row img {
        height: 42px;
        max-width: 140px;
    }

    .brands-static-row img[alt="Titleist"] {
        height: 36px;
    }

    .brands-static-row img[alt="Bridgestone Golf"],
.brands-static-row img[alt="Callaway"] {
        height: 48px;
    }

    .brands-static-row img[alt="Mizuno"] {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .brands-static-row {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px 6%;
    }
}


/* =====================================
   HERO ANIMATED LOGO BALL
===================================== */

.hero-ball-rotator {
    position: relative;
    width: min(100%, 360px);
    aspect-ratio: 1 / 1;
    margin: 0 auto 30px;
    border-radius: 28px;
    overflow: hidden;
    background: #b8c9e8;
    box-shadow: none;
}

.hero-ball-frame {
    position: absolute;
    inset: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    object-fit: cover;
    object-position: center center;
    opacity: 0;
    transform: scale(1.08);
    animation: heroBallSwap 16.5s infinite ease-in-out;
}

.frame-1 { animation-delay: 0s; }
.frame-2 { animation-delay: 1.5s; }
.frame-3 { animation-delay: 3s; }
.frame-4 { animation-delay: 4.5s; }
.frame-5 { animation-delay: 6s; }
.frame-6 { animation-delay: 7.5s; }
.frame-7 { animation-delay: 9s; }
.frame-9 { animation-delay: 10.5s; }
.frame-10 { animation-delay: 12s; }
.frame-11 { animation-delay: 13.5s; }
.frame-12 { animation-delay: 15s; }

@keyframes heroBallSwap {
    0% { opacity: 0; }
    4% { opacity: 1; }
    8% { opacity: 1; }
    12% { opacity: 0; }
    100% { opacity: 0; }
}

@media (max-width: 768px) {
    .hero-ball-rotator {
        width: min(100%, 280px);
        margin-bottom: 24px;
    }
}

.hero-tags .badge-uk {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    isolation: isolate;
    background: #ffffff;
    border: 1px solid #d8e1f0;
    color: #052e73;
    font-weight: 900;
}

.hero-tags .badge-uk::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(32deg, transparent 42%, rgba(255,255,255,.75) 42%, rgba(255,255,255,.75) 48%, #c8102e 48%, #c8102e 52%, rgba(255,255,255,.75) 52%, rgba(255,255,255,.75) 58%, transparent 58%),
        linear-gradient(-32deg, transparent 42%, rgba(255,255,255,.75) 42%, rgba(255,255,255,.75) 48%, #c8102e 48%, #c8102e 52%, rgba(255,255,255,.75) 52%, rgba(255,255,255,.75) 58%, transparent 58%),
        linear-gradient(90deg, transparent 38%, rgba(255,255,255,.85) 38%, rgba(255,255,255,.85) 44%, #c8102e 44%, #c8102e 56%, rgba(255,255,255,.85) 56%, rgba(255,255,255,.85) 62%, transparent 62%),
        linear-gradient(0deg, transparent 36%, rgba(255,255,255,.85) 36%, rgba(255,255,255,.85) 44%, #c8102e 44%, #c8102e 56%, rgba(255,255,255,.85) 56%, rgba(255,255,255,.85) 64%, transparent 64%),
        #012169;
    opacity: .16;
    z-index: -1;
}

.hero-tags .badge-uk em {
    position: relative;
    z-index: 1;
    font-style: normal;
}

/* =====================================
   UPDATED HOW IT WORKS
===================================== */

.how-it-works {
    padding-top: 50px;
    padding-bottom: 0;
}

.how-it-works .section-heading {
    max-width: 760px;
    margin-bottom: 44px;
}

.how-it-works .eyebrow {
    margin-bottom: 10px;
    color: var(--blue);
    font-size: 14px;
    letter-spacing: .03em;
}

.how-it-works h2 {
    color: var(--navy);
    font-size: clamp(42px, 4.4vw, 58px);
    line-height: .95;
    letter-spacing: -3px;
    margin-bottom: 20px;
}

.how-it-works .section-heading p {
    max-width: 650px;
    margin: 0 auto;
    color: #6f7b8f;
    font-size: 20px;
    line-height: 1.45;
}

@media (max-width: 640px) {
    .brands-heading {
        padding-top: 18px;
        padding-bottom: 10px;
        font-size: 12px;
    }

    .how-it-works {
        padding-top: 50px;
    }
}


/* =====================================
   LAYOUT TUNING: HEADER LOGO + BRAND STRIP
   Keeps the homepage brand strip tight and reduces the next-section gap.
===================================== */

@media (min-width: 901px) {
    .header-inner {
        height: 112px;
    }

    .brand img {
        width: 270px;
        max-width: 100%;
        height: auto;
    }
}

.hero {
    padding-bottom: 0;
}

.brands-heading {
    padding-bottom: 12px;
}

.how-it-works {
    padding-top: 50px;
}

@media (max-width: 900px) {
    .brand img {
        width: 210px;
        max-width: 70vw;
    }

    .hero {
        padding-bottom: 0;
    }
}

@media (max-width: 640px) {
    .how-it-works {
        padding-top: 50px;
    }
}

/* =====================================
   HOW IT WORKS TIMELINE REDESIGN
   Uses /images/how-it-works/ uploaded image assets.
===================================== */

.how-it-works.hiw-timeline-section {
    position: relative;
    overflow: hidden;
    padding: 72px 0 90px;
    background: linear-gradient(180deg, #021f43 0%, #003d7f 58%, #087de9 100%);
    color: #fff;
}

.how-it-works.hiw-timeline-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 6%, rgba(17, 129, 239, .24), transparent 26%),
        radial-gradient(circle at 78% 62%, rgba(0, 134, 255, .26), transparent 25%);
}

.hiw-timeline-heading {
    position: relative;
    z-index: 2;
    max-width: 620px !important;
    margin-bottom: 70px !important;
}

.how-it-works.hiw-timeline-section .eyebrow {
    color: #00a6ff;
    font-size: 12px;
    line-height: 1;
    letter-spacing: .04em;
    margin-bottom: 12px;
}

.how-it-works.hiw-timeline-section h2 {
    color: #fff;
    font-size: clamp(38px, 4.1vw, 58px);
    line-height: .9;
    letter-spacing: -3px;
    margin: 0 0 20px;
}

.how-it-works.hiw-timeline-section .section-heading p {
    color: rgba(255,255,255,.72);
    font-size: 17px;
    line-height: 1.45;
    max-width: 520px;
    margin: 0 auto;
}

.hiw-timeline-wrap {
    position: relative;
    z-index: 2;
    width: min(940px, 92%);
    min-height: 970px;
    margin: 0 auto;
}

.hiw-timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    transform: translateX(-50%);
    background: repeating-linear-gradient(
        to bottom,
        #00a6ff 0 18px,
        transparent 18px 35px
    );
    opacity: .92;
}

.hiw-step-icon {
    display: block;
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.hiw-step-number {
    color: #00a6ff;
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .02em;
}

.hiw-step-image {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 32px;
}

.hiw-send-logo-image {
    max-width: 310px;
    margin-left: auto;
    filter: drop-shadow(0 0 18px rgba(92, 188, 255, .35));
}

.hiw-choose-ball-image {
    max-width: 390px;
    margin-left: 0;
    margin-top: 48px;
}

.hiw-approve-artwork-image {
    max-width: 330px;
    margin-left: auto;
    margin-top: 70px;
    border-radius: 4px;
    box-shadow: 34px 30px 34px rgba(0, 14, 38, .35);
}

.hiw-receive-order-image {
    max-width: 390px;
    margin-left: 0;
    margin-top: 48px;
}

.hiw-ready-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 34px;
    border-radius: 999px;
    background: #062247;
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
}

.hiw-ready-button:hover {
    color: #fff;
    background: #021934;
}

@media (max-width: 900px) {
    .how-it-works.hiw-timeline-section {
        padding: 58px 0 70px;
    }

    .hiw-timeline-heading {
        margin-bottom: 48px !important;
    }

    .hiw-timeline-wrap {
        width: min(620px, 90%);
        min-height: 0;
        display: grid;
        gap: 52px;
    }

    .hiw-timeline-line {
        left: 18px;
        transform: none;
    }

    .hiw-step-image,
.hiw-send-logo-image,
.hiw-choose-ball-image,
.hiw-approve-artwork-image,
.hiw-receive-order-image {
        max-width: 420px;
        width: min(100%, 420px);
        margin: 28px 0 0;
    }
}

@media (max-width: 560px) {
    .how-it-works.hiw-timeline-section h2 {
        letter-spacing: -2px;
    }

    .hiw-timeline-wrap {
        width: 92%;
    }

    .hiw-step-icon {
        width: 36px;
        height: 36px;
    }

    .hiw-step-number {
        font-size: 21px;
    }
}


/* =====================================
   WHO WE WORK WITH - COMPACT ICON GRID
   Final compact version: no photo cards,
no blue feature card.
===================================== */

.who-we-work-with.www-icons-compact {
    background: #f4f9ff;
    padding: 0 0 70px;
    overflow: hidden;
}

.www-icons-compact .www-compact-heading {
    width: min(1180px, 92%);
    margin: 0 auto 38px;
    padding-top: 0;
}

.www-icons-compact .eyebrow {
    display: block;
    margin: 70px 0 14px;
    color: var(--blue);
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.www-icons-compact h2 {
    max-width: 980px;
    margin: 0 auto 24px;
    color: #071936;
    font-size: clamp(40px, 4.35vw, 54px);
    line-height: .94;
    letter-spacing: -3.4px;
    text-align: center;
}

.www-icons-compact .www-compact-heading p {
    max-width: 780px;
    margin: 0 auto;
    color: #667184;
    font-size: 18px;
    line-height: 1.45;
    text-align: center;
}

.www-compact-grid {
    width: min(1180px, 92%);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin: 0 auto;
}

.www-compact-card {
    min-height: 255px;
    padding: 38px 34px 30px;
    background: rgba(255,255,255,.74);
    border: 1px solid #d6e5f8;
    border-radius: 16px;
    text-align: left;
    box-shadow: none;
    transition: none;
}

.www-compact-card:hover {
    transform: none;
    box-shadow: none;
}

.www-compact-icon {
    display: block;
    width: 58px;
    height: 58px;
    margin: 0 0 34px;
    object-fit: contain;
    filter: none;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.www-compact-icon-logo {
    display: block;
    max-width: 100%;
    height: 58px;
    align:center;
    align-items: center;
    object-fit: contain;
    filter: none;
    background: transparent;
    border: 0;
    border-radius: 0;
    margin: 5px auto;
}

.www-compact-card h3 {
    margin: 0 0 18px;
    color: #071936;
    font-size: 23px;
    line-height: 1.08;
    letter-spacing: -1px;
    text-align: left;
}

.www-compact-card p {
    margin: 0;
    color: #557096;
    font-size: 16px;
    line-height: 1.38;
    text-align: left;
}

@media (max-width: 960px) {
    .who-we-work-with.www-icons-compact {
        padding-bottom: 58px;
    }

    .www-icons-compact .www-compact-heading {
        margin-bottom: 30px;
    }

    .www-icons-compact h2 {
        font-size: clamp(36px, 8vw, 48px);
        letter-spacing: -2.6px;
    }

    .www-compact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: min(820px, 92%);
    }
}

@media (max-width: 640px) {
    .www-icons-compact h2 br,
.www-icons-compact .desktop-break {
        display: none;
    }

    .www-icons-compact .www-compact-heading p {
        font-size: 16px;
    }

    .www-compact-grid {
        grid-template-columns: 1fr;
        width: min(360px, 92%);
    }

    .www-compact-card {
        min-height: 0;
        padding: 30px 24px;
    }
}

/* =====================================
   HOW IT WORKS TIMELINE - CLASS ALIGNMENT FIX
   Fixes the live markup classes: .hiw-timeline-item,
.hiw-step-copy,
.hiw-step-meta and .hiw-ready-panel.
===================================== */

.how-it-works.hiw-timeline-section {
    position: relative;
    overflow: hidden;
    padding: 72px 0 88px;
    background: linear-gradient(180deg, #021f43 0%, #003d7f 58%, #087de9 100%);
    color: #fff;
}

.how-it-works.hiw-timeline-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 6%, rgba(17,129,239,.24), transparent 26%),
        radial-gradient(circle at 78% 62%, rgba(0,134,255,.26), transparent 25%);
}

.how-it-works.hiw-timeline-section .hiw-timeline-heading {
    position: relative;
    z-index: 2;
    max-width: 620px !important;
    margin: 0 auto 70px !important;
    padding: 0;
    text-align: center;
}

.how-it-works.hiw-timeline-section .hiw-timeline-heading .eyebrow {
    display: block;
    color: #00a6ff;
    font-size: 12px;
    line-height: 1;
    letter-spacing: .04em;
    margin: 0 0 12px;
}

.how-it-works.hiw-timeline-section .hiw-timeline-heading h2 {
    color: #fff;
    font-size: clamp(38px, 4.1vw, 58px);
    line-height: .9;
    letter-spacing: -3px;
    margin: 0 0 20px;
}

.how-it-works.hiw-timeline-section .hiw-timeline-heading p {
    color: rgba(255,255,255,.72);
    font-size: 17px;
    line-height: 1.45;
    max-width: 520px;
    margin: 0 auto;
}

.hiw-timeline-wrap {
    position: relative;
    z-index: 2;
    width: min(940px, 92%);
    height: 970px;
    min-height: 0;
    margin: 0 auto;
}

.hiw-timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    transform: translateX(-50%);
    background: repeating-linear-gradient(to bottom, #00a6ff 0 18px, transparent 18px 35px);
    opacity: .92;
}

.hiw-timeline-line::before,
.hiw-timeline-line::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    background: #00a6ff;
}

.hiw-timeline-line::before {
    top: 0;
    width: 8px;
    height: 8px;
}

.hiw-timeline-line::after {
    top: 112px;
    width: 15px;
    height: 15px;
    box-shadow: 0 326px 0 -3.5px #00a6ff, 0 563px 0 -3.5px #00a6ff;
}

.hiw-timeline-item {
    position: absolute;
    width: 370px;
    color: #fff;
}

.hiw-item-left {
    right: calc(50% + 76px);
    text-align: right;
}

.hiw-item-right {
    left: calc(50% + 76px);
    text-align: left;
}

.hiw-item-01 { top: 66px; }
.hiw-item-02 { top: 260px; }
.hiw-item-03 { top: 520px; }
.hiw-item-04 { top: 815px; }

.hiw-step-copy {
    max-width: 330px;
}

.hiw-item-left .hiw-step-copy {
    margin-left: auto;
}

.hiw-step-meta {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 20px;
}

.hiw-step-icon {
    display: block;
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.hiw-step-number {
    color: #00a6ff;
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .02em;
}

.hiw-timeline-item h3 {
    color: #fff;
    font-size: 25px;
    line-height: 1.05;
    letter-spacing: -1px;
    margin: 0 0 14px;
}

.hiw-timeline-item p {
    color: rgba(255,255,255,.72);
    font-size: 13px;
    line-height: 1.45;
    margin: 0;
}

.hiw-step-image {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 32px;
}

.hiw-send-logo-image {
    max-width: 310px;
    margin-left: auto;
    filter: drop-shadow(0 0 18px rgba(92,188,255,.35));
}

.hiw-choose-ball-image {
    max-width: 390px;
    margin-left: 0;
    margin-top: 48px;
}

.hiw-approve-artwork-image {
    max-width: 330px;
    margin-left: auto;
    margin-top: 70px;
    border-radius: 4px;
    box-shadow: 34px 30px 34px rgba(0,14,38,.35);
}

.hiw-receive-order-image {
    max-width: 390px;
    margin-left: 0;
    margin-top: 48px;
}

.hiw-ready-panel {
    position: relative;
    z-index: 2;
    max-width: 430px;
    margin: 200px auto 0;
    padding: 0;
    text-align: center;
}

.hiw-ready-panel h2 {
    color: #fff;
    font-size: clamp(34px, 3vw, 46px);
    line-height: .92;
    letter-spacing: -2px;
    margin: 0 0 18px;
}

.hiw-ready-panel p {
    color: rgba(255,255,255,.72);
    font-size: 15px;
    line-height: 1.45;
    margin: 0 auto 34px;
}

.hiw-ready-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 34px;
    border-radius: 999px;
    background: #062247;
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(0,0,0,.22);
}

.hiw-ready-button:hover {
    color: #fff;
    background: #021934;
}

@media (max-width: 900px) {
    .how-it-works.hiw-timeline-section {
        padding: 58px 0 70px;
    }

    .how-it-works.hiw-timeline-section .hiw-timeline-heading {
        margin-bottom: 48px !important;
    }

    .hiw-timeline-wrap {
        width: min(620px, 90%);
        height: auto;
        display: grid;
        gap: 52px;
    }

    .hiw-timeline-line {
        left: 18px;
        transform: none;
    }

    .hiw-timeline-line::before,
.hiw-timeline-line::after {
        display: none;
    }

    .hiw-timeline-item,
.hiw-item-left,
.hiw-item-right {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        width: 100%;
        text-align: left;
        padding-left: 58px;
    }

    .hiw-timeline-item::before {
        content: "";
        position: absolute;
        left: 12px;
        top: 16px;
        width: 13px;
        height: 13px;
        border-radius: 50%;
        background: #00a6ff;
    }

    .hiw-item-left .hiw-step-copy,
.hiw-step-copy {
        max-width: none;
        margin: 0;
    }

    .hiw-step-image,
.hiw-send-logo-image,
.hiw-choose-ball-image,
.hiw-approve-artwork-image,
.hiw-receive-order-image {
        max-width: 420px;
        width: min(100%, 420px);
        margin: 28px 0 0;
    }

    .hiw-ready-panel {
        margin-top: 70px;
    }
}

@media (max-width: 560px) {
    .how-it-works.hiw-timeline-section .hiw-timeline-heading h2 {
        letter-spacing: -2px;
    }

    .hiw-timeline-wrap {
        width: 92%;
    }

    .hiw-timeline-item,
.hiw-item-left,
.hiw-item-right {
        padding-left: 44px;
    }

    .hiw-step-meta {
        gap: 16px;
        margin-bottom: 18px;
    }

    .hiw-step-icon {
        width: 36px;
        height: 36px;
    }

    .hiw-step-number {
        font-size: 21px;
    }

    .hiw-timeline-item h3 {
        font-size: 23px;
    }
}

/* =====================================
   WHY CHOOSE LOGO-BALLS.GOLF - LIGHT WIDE REDESIGN
   Uses the latest uploaded stylesheet and widens the section to match the 1500px site layout.
===================================== */

.credibility-section {
    background:
        radial-gradient(circle at 50% 18%, rgba(234, 244, 255, .95) 0%, rgba(255, 255, 255, .96) 34%, #ffffff 72%),
        #ffffff;
    color: var(--navy);
    padding: 20px 0 20px;
}

.credibility-section .credibility-grid {
    width: min(1350px, 92%);
    display: grid;
    grid-template-columns: minmax(500px, 0.86fr) minmax(640px, 1.14fr);
    gap: 70px;
    align-items: center;
    margin: 0 auto;
	margin-top:50px;
}

.credibility-section .eyebrow,
.credibility-section .eyebrow.light {
    display: block;
    color: #008bff;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .045em;
    text-transform: uppercase;
    margin: 0 0 16px;
}

.credibility-section h2 {
    max-width: 690px;
    color: #071936;
    font-size: clamp(52px, 4.8vw, 52px);
    line-height: .94;
    letter-spacing: -4px;
    margin: 0 0 30px;
}

.credibility-section p {
    max-width: 620px;
    color: #687385;
    font-size: 19px;
    line-height: 1.5;
}

.credibility-section .cred-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 20px;
}

.credibility-section .cred-list div {
    background: rgba(255, 255, 255, .84);
    border: 1px solid #cfe0f5;
    border-radius: 9px;
    padding: 30px 32px 28px;
    min-height: 138px;
    box-shadow: none;
}

.credibility-section .cred-list strong {
    display: block;
    color: #071936;
    font-size: 22px;
    line-height: 1.14;
    margin: 0 0 12px;
    letter-spacing: -0.5px;
}

.credibility-section .cred-list strong .blue-word {
    color: #008bff;
}

.credibility-section .cred-list span {
    
    color: #5a6f94;
    font-size: 18px;
    line-height: 1.35;
}

@media (max-width: 1180px) {
    .credibility-section .credibility-grid {
        grid-template-columns: .9fr 1.1fr;
        gap: 44px;
    }

    .credibility-section h2 {
        font-size: clamp(44px, 5vw, 58px);
        letter-spacing: -3px;
    }
}

@media (max-width: 960px) {
    .credibility-section {
        padding: 90px 0;
    }

    .credibility-section .credibility-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .credibility-section h2,
.credibility-section p {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .credibility-section {
        padding: 70px 0;
    }

    .credibility-section .cred-list {
        grid-template-columns: 1fr;
    }

    .credibility-section h2 {
        font-size: 38px;
        letter-spacing: -2px;
    }

    .credibility-section p,
.credibility-section .cred-list span {
        font-size: 16px;
    }
}

/* =====================================
   HOW WE PRINT - LIGHT IMAGE CARD REDESIGN
   Uses /images/how-we-print/ uploaded image assets.
===================================== */

.print-section.hwp-section {
    background: #ffffff;
    color: var(--navy);
    padding: 10px 0 40px;
}

.print-section.hwp-section .hwp-container {
    width: min(1350px, 94%);
    margin: 0 auto;
}

.hwp-heading {
    max-width: 860px;
    margin: 0 auto 44px;
}

.print-section.hwp-section .hwp-heading .eyebrow {
    display: block;
    margin: 0 0 14px;
    color: #008bff;
    font-size: 14px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.print-section.hwp-section .hwp-heading h2 {
    color: #071936;
    font-size: clamp(42px, 4.1vw, 58px);
    line-height: .95;
    letter-spacing: -3px;
    margin: 0 0 24px;
}

.print-section.hwp-section .hwp-heading p {
    max-width: 740px;
    margin: 0 auto;
    color: #687385;
    font-size: 19px;
    line-height: 1.45;
}

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

.hwp-method-card {
    display: grid;
    grid-template-rows: auto 1fr;
}

.hwp-method-image {
    display: block;
    width: 100%;
    height: 235px;
    object-fit: cover;
    border-radius: 8px;
    margin: 0 0 16px;
}

.hwp-method-copy {
    min-height: 140px;
    background: #f4f9ff;
    border: 1px solid #cfe0f5;
    border-radius: 8px;
    padding: 30px 24px;
}

.hwp-method-copy h3 {
    color: #071936;
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: -0.8px;
    margin: 0 0 14px;
}

.hwp-method-copy p {
    color: #557096;
    font-size: 18px;
    line-height: 1.42;
    margin: 0;
}

@media (max-width: 900px) {
    .print-section.hwp-section {
        padding: 72px 0;
    }

    .hwp-method-grid {
        grid-template-columns: 1fr;
    }

    .hwp-method-image {
        height: 260px;
    }
}

@media (max-width: 560px) {
    .print-section.hwp-section {
        padding: 60px 0;
    }

    .print-section.hwp-section .hwp-heading h2 {
        font-size: 38px;
        letter-spacing: -2px;
    }

    .print-section.hwp-section .hwp-heading p,
.hwp-method-copy p {
        font-size: 16px;
    }

    .hwp-method-image {
        height: 190px;
    }

    .hwp-method-copy {
        padding: 24px 22px;
    }
}


/* =====================================
   FOOTER QUOTE CTA - FLOATING BALL CARD
   Uses /images/footer-ball-group-1.png and /images/footer-ball-group-2.png.
===================================== */

.cta-section.footer-quote-section {
    background: #eef6ff;
    padding: 100px 0 100px;
}

.footer-quote-card {
    position: relative;
    min-height: 305px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #dbe9f8;
    border-radius: 3px;
    box-shadow: none;
    padding: 76px 260px;
    text-align: center;
}

.footer-quote-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
}

.footer-quote-card h2 {
    color: #071936;
    font-size: clamp(40px, 4vw, 52px);
    line-height: .96;
    letter-spacing: -3px;
    margin: 0 0 18px;
}

.footer-quote-card p {
    max-width: 680px;
    margin: 0 auto 30px;
    color: #001b49;
    font-size: 19px;
    line-height: 1.45;
}

.footer-quote-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 28px;
    border-radius: 999px;
    background: #0f9bf2;
    color: #ffffff;
    font-size: 18px;
    font-weight: 900;
    text-decoration: none;
    border: 0;
}

.footer-quote-button:hover {
    color: #ffffff;
    background: #087fd1;
}

.footer-quote-balls {
    position: absolute;
    z-index: 1;
    display: block;
    height: auto;
    pointer-events: none;
    user-select: none;
}

.footer-quote-balls-left {
    left: 0;
    top: 0;
    width: 270px;
}

.footer-quote-balls-right {
    right: 0;
    top: 0;
    width: 320px;
}

@media (max-width: 1100px) {
    .footer-quote-card {
        padding-left: 190px;
        padding-right: 210px;
    }

    .footer-quote-balls-left {
        width: 220px;
    }

    .footer-quote-balls-right {
        width: 260px;
    }
}

@media (max-width: 820px) {
    .cta-section.footer-quote-section {
        padding: 72px 0;
    }

    .footer-quote-card {
        min-height: 360px;
        padding: 86px 34px 74px;
    }

    .footer-quote-balls-left {
        width: 180px;
    }

    .footer-quote-balls-right {
        width: 210px;
    }

    .footer-quote-card h2 {
        font-size: 38px;
        letter-spacing: -2px;
    }

    .footer-quote-card p {
        font-size: 16px;
    }
}

@media (max-width: 560px) {
    .footer-quote-card {
        border-radius: 22px;
        padding: 120px 24px 58px;
    }

    .footer-quote-balls-left {
        width: 150px;
    }

    .footer-quote-balls-right {
        width: 170px;
    }
}
