:root {
    --orange: #f58216;
    --orange-dark: #d96600;
    --charcoal: #252525;
    --grey: #606163;
    --light-grey: #f6f3ef;
    --line: #e7ded4;
    --purple: #6d3b78;
    --white: #ffffff;
    --shadow: 0 18px 50px rgba(37, 37, 37, .11);
    --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--charcoal);
    background: #fffaf5;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 12px; padding: 10px 14px; background: var(--charcoal); color: white; z-index: 20; }
.skip-link:focus { left: 12px; }
.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(231, 222, 212, .8);
}
.header-inner { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: 170px; }
.main-nav { display: flex; gap: 34px; color: #393939; font-size: 15px; }
.main-nav a:hover { color: var(--orange); }
.header-cta, .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 13px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.header-cta, .btn-primary { background: var(--orange); color: white; box-shadow: 0 12px 26px rgba(245, 130, 22, .28); }
.btn-secondary { background: white; border: 1px solid var(--line); color: var(--charcoal); box-shadow: 0 10px 28px rgba(37, 37, 37, .06); }
.header-cta:hover, .btn:hover { transform: translateY(-2px); }
.section-soft {
    background:
        radial-gradient(circle at 82% 18%, rgba(245, 130, 22, .09), transparent 34%),
        linear-gradient(135deg, #fffdfb 0%, #f7f1ea 100%);
}
.hero { padding: 72px 0 62px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 56px; }
.eyebrow { margin: 0 0 14px; color: var(--orange); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: 13px; }
h1, h2, h3 { line-height: 1.08; margin: 0; }
h1 { font-family: 'Poppins', Arial, Helvetica, sans-serif; font-size: clamp(46px, 6vw, 82px); font-weight: 500; letter-spacing: -.04em; }
h2 { font-family: 'Poppins', Arial, Helvetica, sans-serif; font-size: clamp(34px, 4vw, 54px); font-weight: 500; letter-spacing: -.03em; }
h1 span, h2 span { color: var(--orange); }
.hero-lead { max-width: 520px; margin: 26px 0 30px; font-size: 19px; color: #444; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.ecosystem { position: relative; min-height: 595px; }
.orbit { position: absolute; inset: 60px; border: 1px solid rgba(96, 97, 99, .18); border-radius: 50%; }
.orbit-two { inset: 118px; border-color: rgba(245, 130, 22, .18); }
.centre-node {
    position: absolute;
    width: 220px;
    height: 220px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    background: white;
    border-radius: 50%;
    box-shadow: var(--shadow);
    z-index: 2;
    padding: 30px;
}
.business-node {
    position: absolute;
    width: 220px;
    min-height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .86);
    border: 4px solid var(--grey);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    transition: transform .22s ease, box-shadow .22s ease;
}
.business-node:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(37, 37, 37, .14); }
.business-node strong { font-size: 21px; line-height: 1.1; margin: 8px 0 7px; }
.business-node small { color: #555; font-size: 13px; line-height: 1.35; }
.node-icon { font-size: 28px; }
.node-1 { top: 0; left: 50%; transform: translateX(-50%); }
.node-1:hover { transform: translateX(-50%) translateY(-6px); }
.node-2 { left: 4%; bottom: 50px; border-color: var(--orange); }
.node-3 { right: 4%; bottom: 50px; border-color: var(--purple); }
.accent-orange { --card-accent: var(--orange); }
.accent-purple { --card-accent: var(--purple); }
.accent-dark { --card-accent: var(--grey); }
.values-strip { background: white; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.values-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.value-card { padding: 38px 24px; text-align: center; border-right: 1px solid var(--line); }
.value-card:last-child { border-right: 0; }
.value-card span { display: block; color: var(--orange); font-size: 30px; margin-bottom: 12px; }
.value-card h2 { font-family: 'Poppins', Arial, Helvetica, sans-serif; font-size: 17px; font-weight: 800; letter-spacing: 0; }
.value-card p { margin: 10px auto 0; max-width: 190px; color: #555; font-size: 14px; }
.business-section { padding: 72px 0; background: linear-gradient(180deg, #fffaf5, #fff); }
.business-layout { display: grid; grid-template-columns: 300px 1fr; gap: 44px; align-items: start; }
.section-intro { position: sticky; top: 128px; }
.section-intro p:not(.eyebrow) { color: #505050; margin: 18px 0 28px; }
.business-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.business-card { background: white; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.card-image { min-height: 172px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(245, 130, 22, .14), rgba(96, 97, 99, .09)); }
.business-card.accent-purple .card-image { background: linear-gradient(135deg, rgba(109, 59, 120, .15), rgba(245, 130, 22, .08)); }
.business-card.accent-dark .card-image { background: linear-gradient(135deg, rgba(96, 97, 99, .16), rgba(245, 130, 22, .08)); }
.card-image span { font-size: 54px; }
.card-body { padding: 28px; }
.card-body h3 { font-size: 26px; }
.card-label { color: var(--card-accent); font-weight: 800; margin: 8px 0 14px; }
.card-body p:not(.card-label) { color: #555; margin: 0 0 22px; }
.card-body a { color: var(--card-accent); font-weight: 800; }
.about-section { padding: 22px 0 70px; background: white; }
.about-card, .contact-card {
    border-radius: 32px;
    padding: 46px;
    background:
        linear-gradient(135deg, rgba(245, 130, 22, .1), rgba(255, 255, 255, .88)),
        #fffaf5;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.about-card { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; }
.about-card p:not(.eyebrow), .contact-card p:not(.eyebrow) { color: #505050; max-width: 780px; }
.contact-section { padding: 0 0 74px; background: white; }
.contact-card { text-align: center; }
.contact-card p { margin-left: auto; margin-right: auto; }
.contact-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.site-footer { background: #2b2b2b; color: white; padding: 34px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-inner img { width: 120px; filter: drop-shadow(0 8px 20px rgba(0,0,0,.24)); }
.footer-inner p { margin: 0; color: rgba(255,255,255,.78); }
@media (max-width: 1040px) {
    .hero-grid, .business-layout, .about-card { grid-template-columns: 1fr; }
    .section-intro { position: static; }
    .ecosystem { min-height: 560px; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .value-card { border-bottom: 1px solid var(--line); }
    .business-cards { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
    .container { width: min(100% - 28px, 1180px); }
    .header-inner { min-height: 78px; }
    .brand img { width: 132px; }
    .main-nav { display: none; }
    .header-cta { padding: 10px 14px; min-height: 42px; font-size: 13px; }
    .hero { padding: 46px 0 44px; }
    h1 { font-size: 44px; }
    .hero-lead { font-size: 17px; }
    .hero-actions, .contact-actions { flex-direction: column; }
    .btn { width: 100%; }
    .ecosystem { min-height: auto; display: grid; gap: 18px; padding-top: 18px; }
    .orbit, .centre-node { display: none; }
    .business-node, .node-1, .node-2, .node-3 {
        position: static;
        width: 100%;
        min-height: auto;
        border-radius: 22px;
        transform: none;
    }
    .node-1:hover { transform: translateY(-4px); }
    .values-grid { grid-template-columns: 1fr; }
    .value-card { border-right: 0; }
    .business-section { padding: 50px 0; }
    .about-card, .contact-card { padding: 30px 22px; border-radius: 24px; }
    .footer-inner { flex-direction: column; text-align: center; }
}

/* v1.0.1 refinements: use supplied business logos and remove lower duplicate sections */
.site-header { position: relative; }
.header-inner { min-height: 86px; }
.brand img { width: 150px; }
.node-icon { display: none; }
.node-logo {
    width: 138px;
    max-height: 74px;
    object-fit: contain;
    margin-bottom: 14px;
}
.node-2 .node-logo { width: 118px; max-height: 92px; }
.node-3 .node-logo { width: 150px; max-height: 78px; }
.card-image { min-height: 184px; padding: 26px; background: #fff; }
.card-image span { display: none; }
.card-logo { width: 100%; max-width: 250px; max-height: 110px; object-fit: contain; margin: 0 auto; }
.business-card.accent-orange .card-logo { max-width: 140px; max-height: 130px; }
.business-card.accent-purple .card-logo { max-width: 260px; }
.business-section { padding-bottom: 84px; }
.site-footer { padding: 24px 0; }
.footer-inner img { display: none; }
.footer-inner { justify-content: center; text-align: center; }
@media (max-width: 760px) {
    .brand img { width: 116px; }
    .main-nav { display: none; }
    .node-logo { width: 155px; max-height: 82px; }
    .node-2 .node-logo { width: 120px; }
    .node-3 .node-logo { width: 165px; }
}


/* v1.0.2 refinements: Poppins font, correct Always Here logo, smaller header branding */
.header-inner { min-height: 76px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 112px; height: auto; max-height: 66px; object-fit: contain; }
.site-header .container { overflow: visible; }
.node-3 .node-logo { width: 170px; max-height: 104px; }
.business-card.accent-purple .card-logo { max-width: 285px; max-height: 135px; }
h1, h2 { font-weight: 600; letter-spacing: -.045em; }
@media (max-width: 760px) {
    .header-inner { min-height: 68px; }
    .brand img { width: 92px; max-height: 56px; }
}


/* v1.0.3 refinements: correct Always Here logo and protect hero circle proportions */
.ecosystem {
    min-width: 0;
}
.business-node {
    width: 220px;
    height: 220px;
    min-height: 220px;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
}
.node-logo,
.card-logo {
    height: auto;
    object-fit: contain;
    object-position: center;
}
.node-3 .node-logo {
    width: 174px;
    max-width: 174px;
    max-height: 92px;
}
.business-card.accent-purple .card-logo {
    max-width: 310px;
    max-height: 150px;
}
@media (max-width: 760px) {
    .business-node, .node-1, .node-2, .node-3 {
        width: 100%;
        height: auto;
        min-height: 168px;
        aspect-ratio: auto;
        border-radius: 22px;
    }
    .node-3 .node-logo {
        width: 190px;
        max-width: 72%;
        max-height: 110px;
    }
}

.business-node small{font-size:15px;font-weight:600;line-height:1.4;margin-top:10px;color:#333}.business-node .node-logo{margin-bottom:10px;}

/* v1.0.6 refinements */
.hero h1{
    font-size:clamp(2.8rem,5vw,4.8rem)!important;
    line-height:1.1!important;
    font-weight:700!important;
    letter-spacing:-1px;
}

.values-section .icon,
.feature-icon,
.value-icon{
    width:72px!important;
    height:72px!important;
    border-radius:18px!important;
    background:#fff!important;
    box-shadow:0 10px 30px rgba(0,0,0,.08)!important;
    padding:16px!important;
}

.values-section svg,
.feature-icon svg,
.value-icon svg{
    stroke:#f28317!important;
    stroke-width:1.8!important;
}


/* v1.0.7 hero refinements */
.hero h1,
.hero-title{
    font-size:clamp(3rem,4vw,4.2rem)!important;
    line-height:1.05!important;
    max-width:560px!important;
    letter-spacing:-2px;
}

.hero h1 .accent,
.hero-title .accent{
    display:block;
    margin-top:8px;
}

.center-node,
.anders-node,
.hero-center-circle{
    background:#fff!important;
    border:10px solid #fff!important;
    border-radius:50%!important;
    box-shadow:
        0 25px 70px rgba(0,0,0,.12),
        0 0 0 2px rgba(242,131,23,.15)!important;
}

.center-node img,
.anders-node img,
.hero-center-circle img{
    width:75%!important;
    height:auto!important;
}

.values-section .icon,
.feature-icon,
.value-icon{
    width:84px!important;
    height:84px!important;
    border-radius:22px!important;
    background:#ffffff!important;
    box-shadow:0 15px 40px rgba(0,0,0,.10)!important;
    border:1px solid rgba(242,131,23,.12)!important;
}

.value-icon i,.icon i{
font-size:32px!important;
color:#f28317!important;
}


/* v1.0.11 fixed professional values icons */
.values-strip .value-card > span.value-icon{
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    width:58px!important;
    height:58px!important;
    margin:0 auto 18px!important;
    border-radius:18px!important;
    background:linear-gradient(145deg,#fff,#fff7ef)!important;
    border:1px solid rgba(242,131,23,.18)!important;
    box-shadow:0 12px 28px rgba(242,131,23,.12)!important;
    color:#f58216!important;
    font-size:0!important;
    line-height:0!important;
    overflow:hidden!important;
}
.values-strip .value-card > span.value-icon svg{
    display:block!important;
    width:30px!important;
    height:30px!important;
    fill:none!important;
    stroke:currentColor!important;
    stroke-width:1.9!important;
    stroke-linecap:round!important;
    stroke-linejoin:round!important;
}
.values-strip .value-card > span.value-icon svg *{
    vector-effect:non-scaling-stroke;
}

/* v1.0.12 SnapMyDay business addition */
:root {
    --teal: #0096a8;
    --navy: #062a55;
}
.main-nav { gap: 22px; font-size: 14px; }
.accent-teal { --card-accent: var(--teal); }
.business-node.accent-teal { border-color: var(--teal); }
.business-card.accent-teal .card-image { background: linear-gradient(135deg, rgba(0,150,168,.16), rgba(6,42,85,.08)); }
.business-card.accent-teal .card-logo { max-width: 300px; max-height: 92px; }
.business-card.accent-teal .card-label,
.business-card.accent-teal .card-body a { color: var(--teal); }

@media (min-width: 761px) {
    .ecosystem { min-height: 620px; }
    .node-1 { top: 22px; left: 5%; transform: none; }
    .node-1:hover { transform: translateY(-6px); }
    .node-2 { top: 22px; right: 5%; left: auto; bottom: auto; }
    .node-3 { left: 5%; right: auto; bottom: 24px; }
    .node-4 { right: 5%; bottom: 24px; }
    .node-4 .node-logo { width: 178px; max-width: 178px; max-height: 74px; }
    .business-cards { grid-template-columns: repeat(4, 1fr); gap: 22px; }
    .card-body { padding: 24px; }
    .card-body h3 { font-size: 23px; }
}

@media (max-width: 1180px) and (min-width: 761px) {
    .main-nav { gap: 14px; font-size: 13px; }
    .header-cta { padding-left: 16px; padding-right: 16px; }
    .business-cards { grid-template-columns: repeat(2, 1fr); }
}

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

@media (max-width: 760px) {
    .business-node, .node-1, .node-2, .node-3, .node-4 {
        position: static;
        width: 100%;
        min-height: 168px;
        border-radius: 22px;
        transform: none;
    }
    .node-4 .node-logo {
        width: 210px;
        max-width: 78%;
        max-height: 78px;
    }
    .business-cards { grid-template-columns: 1fr; }
    .business-card.accent-teal .card-logo { max-width: 280px; max-height: 88px; }
}
