/* =========================================================
   Sellglo — landing page styles
   Tokens
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --sg-ink: #171a3b;
    --sg-blue: #18193e;
    --sg-blue-deep: #14163a;
    --sg-gold: #e5ac0e;
    --sg-green: #17a673;
    --sg-red: #e9503f;
    --sg-cream: #f6f5f0;
    --sg-paper: #ffffff;
    --sg-line: #e4e2d8;
    --sg-muted: #525575;

    --sg-font-head: "Sora", sans-serif;
    --sg-font-body: "Inter", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--sg-ink);
    background: var(--sg-cream);
    line-height: 1.6;
}

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

h1,
h2,
h3,
h4 {
    font-family: "Poppins", sans-serif;
    color: var(--sg-ink);
    margin: 0;
}

a {
    text-decoration: none;
}

:focus-visible {
    outline: 3px solid var(--sg-blue);
    outline-offset: 3px;
}

.sg-kicker {
    font-family: var(--sg-font-head);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--sg-blue);
    margin-bottom: 0.75rem;
}

/* =========================================================
   Buttons
   ========================================================= */
.sg-btn-primary {
    background: var(--sg-blue);
    color: #fff;
    border: 2px solid var(--sg-blue);
    border-radius: 999px;
    padding: 0.65rem 1.5rem;
    font-weight: 600;
    font-family: var(--sg-font-head);
    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.15s ease;
}
.sg-btn-primary:hover {
    background: var(--sg-ink);
    border-color: var(--sg-ink);
    color: #fff;
    transform: translateY(-1px);
}
.sg-btn-outline {
    background: transparent;
    color: var(--sg-ink);
    border: 2px solid var(--sg-ink);
    border-radius: 999px;
    padding: 0.65rem 1.5rem;
    font-weight: 600;
    font-family: var(--sg-font-head);
    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.15s ease;
}
.sg-btn-outline:hover {
    background: var(--sg-ink);
    color: #fff;
    transform: translateY(-1px);
}
.sg-btn-lg {
    padding: 0.85rem 2rem;
    font-size: 1.02rem;
}

/* =========================================================
   Navbar
   ========================================================= */
.sg-navbar {
    background: rgba(246, 245, 240, 0.92);
    backdrop-filter: blur(8px);
    padding: 0.9rem 0;
    border-bottom: 1px solid transparent;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        padding 0.25s ease;
}
.sg-navbar.is-scrolled {
    border-bottom-color: var(--sg-line);
    box-shadow: 0 6px 24px rgba(23, 26, 59, 0.06);
    padding: 0.55rem 0;
}
.sg-logo-img {
    height: 75px;
    width: auto;
    display: block;
}

.sg-nav-link {
    font-family: var(--sg-font-head);
    font-weight: 600;
    color: var(--sg-ink) !important;
    padding: 0.5rem 0.85rem !important;
    position: relative;
}
.sg-nav-link.active {
    color: var(--sg-blue) !important;
}
.sg-nav-link::after {
    content: "";
    position: absolute;
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.15rem;
    height: 2px;
    background: var(--sg-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}
.sg-nav-link:hover::after,
.sg-nav-link.active::after {
    transform: scaleX(1);
}

.sg-burger {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    width: 22px;
}
.sg-burger span {
    height: 2px;
    width: 100%;
    background: var(--sg-ink);
    display: block;
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
    padding-bottom: 1rem;
    padding-top: 1rem;
}
/* =========================================================
   Hero
   ========================================================= */
.sg-hero {
    position: relative;
    padding: 8.5rem 0 4rem;
    overflow: hidden;
    background: var(--sg-cream);
}
.sg-hero-map {
    position: absolute;
    inset: -10% -10% auto -10%;
    height: 120%;
    background-image: radial-gradient(circle, var(--sg-line) 1.5px, transparent 1.5px);
    background-size: 26px 26px;
    opacity: 0.55;
    mask-image: radial-gradient(ellipse at 70% 30%, black 0%, transparent 65%);
    pointer-events: none;
}

.sg-h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.01em;

}
.sg-h1-accent {
    color: var(--sg-gold);
}

.sg-caret {
    display: inline-block;
    width: 3px;
    height: 0.85em;
    margin-left: 4px;
    background: var(--sg-blue);
    vertical-align: -0.1em;
    animation: sg-blink 0.9s steps(1) infinite;
}
@media (prefers-reduced-motion: reduce) {
    .sg-caret {
        animation: none;
        opacity: 1;
    }
}
@keyframes sg-blink {
    0%,
    49% {
        opacity: 1;
    }
    50%,
    100% {
        opacity: 0;
    }
}

.sg-lead {
    max-width: 35rem;
    font-size: 14px;
    color: var(--sg-muted);
    margin-top: 1.4rem;
}

.sg-inline-facts {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.6rem;
    padding: 0;
    margin: 2rem 0 0;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--sg-ink);
}
.sg-inline-facts li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.sg-inline-facts li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--sg-green);
    display: inline-block;
}

/* Hero visual — photo + floating capability cards */
.sg-hero-visual {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}
.sg-hero-visual::before {
    content: "";
    display: block;
    padding-top: 100%;
}

.sg-hero-circle {
    position: absolute;
    top: 56%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68%;
    height: 68%;
    border-radius: 50%;
    /* background: var(--sg-gold); */
    z-index: 1;
}

.sg-hero-photo {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 122%;
    width: auto;
    max-width: none;
    display: block;
    z-index: 2;
    filter: drop-shadow(0 18px 26px rgba(23, 26, 59, 0.22));
}

.sg-hero-orbit {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.orbit-path {
    fill: none;
    stroke: var(--sg-ink);
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-dasharray: 5 8;
    opacity: 0.32;
    animation: sg-orbit-flow 2.2s linear infinite;
}
@keyframes sg-orbit-flow {
    to {
        stroke-dashoffset: -26;
    }
}

.sg-float-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: var(--sg-paper);
    border: 1px solid var(--sg-line);
    border-radius: 16px;
    padding: 0.65rem 0.9rem;
    box-shadow: 0 14px 30px -14px rgba(23, 26, 59, 0.28);
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--sg-ink);
    white-space: nowrap;
}
.fc-icon {
    flex: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fc-icon svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.fc-blue {
    background: rgba(43, 47, 228, 0.12);
}
.fc-blue svg {
    stroke: var(--sg-blue);
}
.fc-indigo {
    background: rgba(23, 26, 59, 0.1);
}
.fc-indigo svg {
    stroke: var(--sg-ink);
}
.fc-gold {
    background: rgba(255, 201, 51, 0.25);
}
.fc-gold svg {
    stroke: #a9740a;
}
.fc-green {
    background: rgba(23, 166, 115, 0.14);
}
.fc-green svg {
    stroke: var(--sg-green);
}

.card-tl {
    top: 4%;
    left: -6%;
}
.card-tr {
    top: 0%;
    right: -8%;
}
.card-bl {
    bottom: 16%;
    left: -10%;
}
.card-br {
    bottom: 12%;
    right: -10%;
}

@media (max-width: 991px) {
    .sg-hero-visual {
        max-width: 420px;
        margin-top: 2rem;
    }
    .sg-float-card {
        font-size: 0.72rem;
        padding: 0.5rem 0.7rem;
        gap: 0.5rem;
    }
    .fc-icon {
        width: 28px;
        height: 28px;
    }
    .fc-icon svg {
        width: 14px;
        height: 14px;
    }
    .card-tl {
        left: -2%;
    }
    .card-tr {
        right: -2%;
    }
    .card-bl {
        left: -4%;
    }
    .card-br {
        right: -4%;
    }
}
@media (max-width: 575px) {
    .sg-float-card {
        white-space: normal;
        max-width: 118px;
    }
}

/* Trust strip — dark pill */
.sg-trust-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 0;
    background: var(--sg-navy, #0E1A4A);
    border-radius: 999px;
    padding: 1.1rem 2.2rem;
    box-shadow: 0 20px 40px -18px rgba(14, 26, 74, 0.55);
    opacity: 0;
    transform: translateY(14px) scale(0.98);
}

.sg-in-view.sg-trust-strip {
    animation: sgStripIn 0.6s cubic-bezier(.2,.7,.3,1) forwards;
}

@keyframes sgStripIn {
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.sg-trust-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0 1.6rem;
    opacity: 0;
    transform: translateY(8px);
}

.sg-in-view .sg-trust-item {
    animation: sgItemIn 0.5s ease forwards;
    animation-delay: calc(var(--sg-i) * 0.12s + 0.1s);
}

@keyframes sgItemIn {
    to { opacity: 1; transform: translateY(0); }
}

.sg-trust-icon {
    position: relative;
    flex: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(232, 161, 37, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease, transform 0.3s cubic-bezier(.2,.7,.3,1);
}

.sg-trust-icon svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: var(--sg-orange, #E8A125);
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* one-time ripple as each icon lands */
.sg-trust-icon::after {
    content: '';
    position: absolute;
    inset: -1.5px;
    border-radius: 50%;
    border: 1.5px solid var(--sg-orange, #E8A125);
    opacity: 0;
}

.sg-in-view .sg-trust-icon::after {
    animation: sgRipple 0.9s ease-out forwards;
    animation-delay: calc(var(--sg-i) * 0.12s + 0.32s);
}

@keyframes sgRipple {
    0%   { opacity: 0.6; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.7); }
}

.sg-trust-item:hover .sg-trust-icon {
    border-color: var(--sg-orange, #E8A125);
    transform: scale(1.08) rotate(-6deg);
}

.sg-trust-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    white-space: nowrap;
}

.sg-trust-text strong {
    color: #fff;
    font-size: 0.94rem;
    font-weight: 650;
}

.sg-trust-text span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.82rem;
}

.sg-trust-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.14);
    flex: none;
}

/* Reduced motion */
.sg-no-motion.sg-trust-strip,
.sg-no-motion .sg-trust-item {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}
.sg-no-motion .sg-trust-icon::after {
    display: none;
}

/* Responsive */
@media (max-width: 860px) {
    .sg-trust-strip {
        border-radius: 28px;
        padding: 1.6rem;
        justify-content: flex-start;
    }
    .sg-trust-item {
        width: 50%;
        padding: 0.6rem 0.8rem;
    }
    .sg-trust-divider {
        display: none;
    }
    .sg-trust-text {
        white-space: normal;
    }
}

@media (max-width: 520px) {
    .sg-trust-item {
        width: 100%;
    }
}
/* =========================================================
   Sections (generic)
   ========================================================= */
.sg-section {
    padding: 6rem 0;
}
.sg-section-alt {
    background: var(--sg-paper);
}
.sg-section-head {
    max-width: 40rem;
    margin-bottom: 3.2rem;
}
.sg-h2 {
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    font-weight: 700;
    letter-spacing: -0.01em;
}
.sg-section-sub {
    color: var(--sg-muted);
    margin-top: 0.9rem;
    font-size: 1.05rem;
}
.sg-body-text {
    color: var(--sg-muted);
    font-size: 1.03rem;
    margin-bottom: 1.1rem;
}

/* Steps */
.sg-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}
.sg-step {
    padding: 0 1.6rem 0 0;
    border-left: 1px solid var(--sg-line);
    padding-left: 1.6rem;
}
.sg-step:first-child {
    border-left: none;
    padding-left: 0;
}
.sg-step-num {
    font-family: var(--sg-font-head);
    font-weight: 700;
    font-size: 1.9rem;
    color: var(--sg-blue);
    margin-bottom: 0.8rem;
}
.sg-step h3 {
    font-size: 1.12rem;
    margin-bottom: 0.5rem;
}
.sg-step p {
    color: var(--sg-muted);
    font-size: 0.96rem;
}

.sg-section-light{
  background-color: #ffffff;
}

@media (max-width: 991px) {
    .sg-steps {
        grid-template-columns: 1fr 1fr;
        row-gap: 2.4rem;
    }
    .sg-step:nth-child(3) {
        border-left: none;
        padding-left: 0;
    }
}
@media (max-width: 575px) {
    .sg-steps {
        grid-template-columns: 1fr;
        row-gap: 2.2rem;
    }
    .sg-step {
        border-left: none;
        padding-left: 0;
    }
}

/* How it works — 4 step process */




.sg-steps-head {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 3.5rem;
}
.sg-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--sg-orange, #E8A125);
    margin-bottom: 0.6rem;
}
.sg-steps-head .sg-h2 {
    margin: 0;
}

.sg-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: start;
    gap: 0 0.5rem;
}

.sg-step {
    text-align: left;
    padding: 0 0.75rem;
    opacity: 0;
    transform: translateY(18px);
}

.sg-in-view .sg-step {
    animation: sgStepIn 0.6s cubic-bezier(.2,.7,.3,1) forwards;
    animation-delay: calc(var(--sg-i) * 0.18s);
}

@keyframes sgStepIn {
    to { opacity: 1; transform: translateY(0); }
}

/* Numeral + icon composition — the numeral does the talking */
.sg-step-figure {
    position: relative;
    height: 108px;
    margin-bottom: 1.1rem;
}

.sg-step-num {
    position: absolute;
    left: -0.1em;
    top: -0.3rem;
    font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
    font-size: 5.5rem;
    font-weight: 340;
    line-height: 1;
    letter-spacing: -0.02em;
    color: transparent;
    -webkit-text-stroke: 1.3px var(--sg-blue);
    opacity: 0;
    transform: scale(1.15);
    transform-origin: left top;
}

.sg-in-view .sg-step-num {
    animation: sgNumIn 0.7s cubic-bezier(.22,.9,.3,1) forwards;
    animation-delay: calc(var(--sg-i) * 0.18s);
}

@keyframes sgNumIn {
    to { opacity: 0.16; transform: scale(1); }
}

.sg-step-icon {
    position: absolute;
    left: 0.2rem;
    top: 2.4rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid var(--sg-line);
    background: var(--sg-cream, #F6F3EC);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s cubic-bezier(.2,.7,.3,1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.sg-step-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: var(--sg-blue);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sg-step-icon-solid {
    background: var(--sg-blue);
    border-color: var(--sg-blue);
}
.sg-step-icon-solid svg {
    stroke: #fff;
}

.sg-step:hover .sg-step-icon {
    transform: translateY(-4px) rotate(-4deg);
    border-color: var(--sg-blue);
    box-shadow: 0 10px 24px rgba(19, 26, 64, 0.12);
}

.sg-step h3 {
    font-size: 1.12rem;
    font-weight: 650;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.sg-step h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background: var(--sg-orange, #E8A125);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(.2,.7,.3,1);
}

.sg-step:hover h3::after {
    transform: scaleX(1);
}

.sg-step p {
    color: var(--sg-muted);
    font-size: 0.94rem;
    margin: 0;
    line-height: 1.5;
}

.sg-connector {
    width: 48px;
    height: 2px;
    margin-top: 54px;
    overflow: visible;
}

.sg-connector line {
    stroke: var(--sg-line);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dashoffset: 100;
}

.sg-in-view .sg-connector line {
    animation: sgDraw 0.7s ease forwards;
}

.sg-steps[data-sg-steps] .sg-connector:nth-of-type(2) line { animation-delay: 0.28s; }
.sg-steps[data-sg-steps] .sg-connector:nth-of-type(4) line { animation-delay: 0.46s; }
.sg-steps[data-sg-steps] .sg-connector:nth-of-type(6) line { animation-delay: 0.64s; }

@keyframes sgDraw {
    to { stroke-dashoffset: 0; }
}

/* Reduced motion */
.sg-no-motion .sg-step,
.sg-no-motion .sg-step-num,
.sg-no-motion .sg-connector line {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    stroke-dashoffset: 0 !important;
}
.sg-no-motion .sg-step-num {
    opacity: 0.16 !important;
}

/* Responsive */
@media (max-width: 900px) {
    .sg-steps {
        grid-template-columns: 1fr;
        gap: 2rem 0;
        justify-items: start;
    }
    .sg-connector {
        display: none;
    }
    .sg-step {
        max-width: 360px;
        padding: 0;
    }
}

/* ----------------- */
/* About */
.sg-who-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.6rem;
}
.sg-who-chips span {
    border: 1px solid var(--sg-line);
    border-radius: 999px;
    padding: 0.4rem 1rem;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--sg-ink);
    background: var(--sg-paper);
}
.sg-about-panel {
    background: var(--sg-cream);
    border: 1px solid var(--sg-line);
    border-radius: 20px;
    padding: 2rem;
}
.sg-about-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid var(--sg-line);
}
.sg-about-row:last-child {
    border-bottom: none;
    padding-bottom: 0.2rem;
}
.sg-about-dot {
    flex: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-top: 0.5rem;
}
.sg-about-row p {
    margin: 0;
    color: var(--sg-muted);
    font-size: 0.97rem;
}

/* Pricing / dark section */
.sg-section-dark {
    background: var(--sg-blue-deep);
    color: #fff;
}
.sg-h2-light {
    color: #fff;
}
.sg-section-sub-light {
    color: #b7b9da;
}

.sg-price-grid {
    margin-top: 1rem;
}
.sg-price-card {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    padding: 2rem 1.6rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.sg-price-card-highlight {
    background: var(--sg-blue);
    border-color: var(--sg-blue);
}
.sg-price-value {
    font-family: var(--sg-font-head);
    font-weight: 700;
    font-size: 2.2rem;
}
.sg-price-label {
    color: #c7c9e8;
    font-size: 0.94rem;
}
.sg-price-card-highlight .sg-price-label {
    color: #e4e4fb;
}

.sg-shipping-note {
    margin-top: 2.4rem;
    padding-top: 1.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    max-width: 46rem;
}
.sg-shipping-note p {
    color: #b7b9da;
    font-size: 0.92rem;
    margin: 0;
}

/* CTA banner */
.sg-cta {
    padding: 4rem 0;
}
.sg-cta-inner {
    background: var(--sg-gold);
    border-radius: 26px;
    padding: 3rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.sg-cta-inner h2 {
    font-size: 1.7rem;
    margin-bottom: 0.4rem;
}
.sg-cta-inner p {
    color: var(--sg-ink);
    opacity: 0.75;
    margin: 0;
    max-width: 30rem;
}
.sg-cta-inner .sg-btn-primary {
    background: var(--sg-ink);
    border-color: var(--sg-ink);
}
.sg-cta-inner .sg-btn-primary:hover {
    background: var(--sg-blue);
    border-color: var(--sg-blue);
}


/* Footer */
.sg-footer{
  background: var(--sg-ink);
  color: #C7C9E8;
  padding: 3.5rem 0 0;
}
 
/* Footer top CTA banner */
.sg-footer-cta{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 3rem;
}
.sg-footer-cta h2{
  color: #fff;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}
.sg-footer-cta-accent{ color: var(--sg-gold); }
.sg-btn-outline-light{
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff;
  border-radius: 999px;
  padding: 0.75rem 1.8rem;
  font-family: var(--sg-font-head);
  font-weight: 600;
  background: transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.sg-btn-outline-light:hover{
  background: #fff;
  color: var(--sg-ink);
  border-color: #fff;
}
 
.sg-footer-main{
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.14);
}
 
/* .sg-logo-badge{
  background: #fff;
  display: inline-block;
  padding: 0.6rem 1rem;
  border-radius: 12px;
  margin-bottom: 1.2rem;
} */
.sg-footer-logo{ height: 90px; width: auto; display: block; }
.sg-footer-text{ font-size: 0.94rem; line-height: 1.7; max-width: 24rem; }
.sg-footer-contact a{ color: #C7C9E8; }
.sg-footer-contact a:hover{ color: #fff; }
 
.sg-social{ display: flex; gap: 0.6rem; }
.sg-social-link{
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, border-color .2s ease;
}
.sg-social-link svg{ width: 16px; height: 16px; fill: #C7C9E8; }
.sg-social-link:hover{ background: var(--sg-blue); border-color: var(--sg-blue); }
.sg-social-link:hover svg{ fill: #fff; }
 
.sg-footer-heading{
  font-family: var(--sg-font-head);
  font-size: 0.95rem;
  color: #9799C4;
  margin-bottom: 1.2rem;
}
.sg-footer-links{ list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.7rem; }
.sg-footer-links a{ color: #E7E8F5; font-size: 0.94rem; font-weight: 500; }
.sg-footer-links a:hover{ color: #fff; }
 
/* Legal / registered-company contact block */
.sg-footer-contact-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.sg-footer-heading-accent{
  color: #9799C4;
  /* font-family: Georgia, 'Times New Roman', serif; */
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0;
}
.sg-legal-text{
  /* font-family: Georgia, 'Times New Roman', serif; */
  color: #e7e8e9;
  /* font-weight: 700; */
  font-size: 0.92rem;
  line-height: 1.9;
  margin: 0;
}
 
.sg-footer-bottom{
  margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: #8F92BE;
}
 
/* Reveal-on-load (single orchestrated entrance, not per-card) */
.sg-reveal{ opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
.sg-reveal.is-visible{ opacity: 1; transform: translateY(0); }
 
.sg-social-link i{
  color: #fff;
  font-size: 21px;
}

.copy-right-text a{
  color: #ffffffd3;
  text-decoration: none;
}

/* ------------------- */
/* Reduced motion */
.sg-no-motion .sg-footer-hero,
.sg-no-motion .sg-footer-rule,
.sg-no-motion .sg-footer-row {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}

/* Responsive */
@media (max-width: 760px) {
    .sg-footer-hero {
        flex-direction: column;
        align-items: flex-start;
    }
    .sg-footer-nav {
        gap: 2rem;
    }
    .sg-footer-bottom {
        flex-direction: column;
        gap: 0.4rem;
    }
}

/* Reveal-on-load (single orchestrated entrance, not per-card) */
.sg-reveal {
    opacity: 0;
    transform: translateY(14px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}
.sg-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}



/* Why Sellers Love Sellglo */
.sg-why-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3rem;
    align-items: center;
}

.sg-why-heading {
    font-size: 2.3rem;
    line-height: 1.15;
    margin: 0.7rem 0 1rem;
    color: var(--sg-ink, #101636);
    font-weight: 700;
}

.sg-accent {
    color: var(--sg-orange, #E8A125);
}

.sg-why-copy {
    color: var(--sg-muted);
    font-size: 1.02rem;
    max-width: 34ch;
    margin-bottom: 2.4rem;
}

/* ---------- Illustration ---------- */
.sg-why-illustration {
    position: relative;
    width: 100%;
    max-width: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sg-illo-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    display: block;
    opacity: 0;
    transform: translateY(24px) scale(0.96);
}

.sg-in-view .sg-illo-img {
    animation: sgImgIn 0.8s cubic-bezier(.2,.7,.3,1) forwards,
               sgImgFloat 5s ease-in-out 0.9s infinite;
}

@keyframes sgImgIn {
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes sgImgFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50%      { transform: translateY(-8px) scale(1); }
}

/* soft drifting color blobs behind the image for depth + motion */
.sg-illo-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(38px);
    opacity: 0;
    z-index: 0;
}

.sg-illo-blob-a {
    width: 200px;
    height: 200px;
    left: -10%;
    top: 10%;
    background: radial-gradient(circle, rgba(232, 161, 37, 0.35), transparent 70%);
}

.sg-illo-blob-b {
    width: 240px;
    height: 240px;
    right: -8%;
    bottom: 4%;
    background: radial-gradient(circle, rgba(59, 125, 216, 0.3), transparent 70%);
}

.sg-in-view .sg-illo-blob-a {
    animation: sgBlobIn 1s ease forwards 0.1s,
               sgBlobDriftA 8s ease-in-out 1.1s infinite;
}
.sg-in-view .sg-illo-blob-b {
    animation: sgBlobIn 1s ease forwards 0.25s,
               sgBlobDriftB 9s ease-in-out 1.1s infinite;
}

@keyframes sgBlobIn {
    to { opacity: 1; }
}
@keyframes sgBlobDriftA {
    0%, 100% { transform: translate(0, 0); }
    50%      { transform: translate(10px, -14px); }
}
@keyframes sgBlobDriftB {
    0%, 100% { transform: translate(0, 0); }
    50%      { transform: translate(-14px, 10px); }
}

/* ---------- Feature grid ---------- */
.sg-why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--sg-line);
}

.sg-why-item {
    display: flex;
    gap: 1rem;
    padding: 1.6rem 1.4rem;
    border-bottom: 1px solid var(--sg-line);
    opacity: 0;
    transform: translateY(14px);
}

.sg-why-item:nth-child(odd) {
    border-right: 1px solid var(--sg-line);
}

.sg-in-view .sg-why-item {
    animation: sgFeatureIn 0.55s cubic-bezier(.2,.7,.3,1) forwards;
    animation-delay: calc(var(--sg-i) * 0.09s);
}

@keyframes sgFeatureIn {
    to { opacity: 1; transform: translateY(0); }
}

.sg-why-icon {
    flex: none;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--sg-line);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s cubic-bezier(.34,1.4,.4,1), box-shadow 0.35s ease;
}

.sg-why-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: var(--sg-orange, #E8A125);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sg-why-icon-solid {
    background: var(--sg-orange, #E8A125);
    border-color: var(--sg-orange, #E8A125);
}
.sg-why-icon-solid svg {
    stroke: #fff;
}

.sg-why-item:hover .sg-why-icon {
    transform: translateY(-3px) rotate(6deg);
    box-shadow: 0 10px 18px -8px rgba(19, 26, 64, 0.25);
}

.sg-why-item h3 {
    font-size: 1rem;
    color: var(--sg-ink, #101636);
    margin: 0 0 0.35rem;
    font-weight: 600;

}

.sg-why-item p {
    font-size: 0.9rem;
    color: var(--sg-muted);
    margin: 0;
    line-height: 1.5;
}

/* Reduced motion */
.sg-no-motion .sg-illo-img,
.sg-no-motion .sg-illo-blob,
.sg-no-motion .sg-why-item {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}

/* Responsive */
@media (max-width: 900px) {
    .sg-why-grid {
        grid-template-columns: 1fr;
    }
    .sg-why-illustration {
        margin: 0 auto;
    }
}

@media (max-width: 560px) {
    .sg-why-features {
        grid-template-columns: 1fr;
    }
    .sg-why-item:nth-child(odd) {
        border-right: none;
    }
    .sg-why-heading {
        font-size: 1.9rem;
    }
}



/* Enquiry modal */
.sg-modal .modal-content{
  border-radius: 22px;
  border: none;
  padding: 0.4rem;
}
.sg-modal .modal-header{
  border-bottom: none;
  padding: 1.6rem 1.6rem 0;
}
.sg-modal .modal-title{
  font-family: var(--sg-font-head);
  font-weight: 700;
  color: var(--sg-ink);
  font-size: 1.3rem;
}
.sg-modal .modal-body{ padding: 0.8rem 1.6rem 1.6rem; }
.sg-modal-sub{ color: var(--sg-muted); font-size: 0.92rem; margin-bottom: 1.4rem; }

.sg-form-row{ margin-bottom: 1rem; }
.sg-form-label{
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--sg-ink);
  margin-bottom: 0.35rem;
  display: inline-block;
}
.sg-form-control{
  border-radius: 12px;
  border: 1px solid var(--sg-line);
  padding: 0.65rem 0.9rem;
  font-size: 0.95rem;
  width: 100%;
}
.sg-form-control:focus{
  border-color: var(--sg-blue);
  box-shadow: 0 0 0 3px rgba(43,47,228,0.12);
  outline: none;
}
.sg-form-success{
  display: none;
  background: rgba(23,166,115,0.1);
  color: var(--sg-green);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 1rem;
  text-align: center;
}
.sg-form-success.is-visible{ display: block; }