/* ============================================================
   SOFTONIX DESIGN SYSTEM
   Palette: #0069FF primary · #00D0FF (gradient only) · #111111 dark
            #F8FAFC section gray · #6B7280 body gray
   Type:    Inter only · headings 700–800, -1px tracking
   Radius:  cards 20 · buttons 14 · inputs 12 · badges 999
   ============================================================ */
:root {
    --blue: #0069FF;
    --blue-hover: #0057D8;
    --cyan: #00D0FF;
    --ink: #000000;
    --dark: #111111;
    --dark-2: #161616;
    --white: #FFFFFF;
    --gray: #6B7280;
    --gray-light: #F8FAFC;
    --line: rgba(0, 0, 0, .08);
    --line-dark: rgba(255, 255, 255, .10);
    --shadow: 0 8px 30px rgba(0, 0, 0, .08);
    --shadow-dark: 0 8px 30px rgba(0, 0, 0, .35);
    --grad: linear-gradient(135deg, #00D0FF 0%, #0069FF 100%);
    --r-card: 20px;
    --r-btn: 14px;
    --r-input: 12px;
    --r-badge: 999px;
    --s1: 4px;
    --s2: 8px;
    --s3: 12px;
    --s4: 16px;
    --s5: 24px;
    --s6: 32px;
    --s7: 48px;
    --s8: 64px;
    --s9: 96px;
    --s10: 128px;
    --max: 1280px;
    --content: 1180px;
    --font: 'Inter', 'SF Pro Display', 'Segoe UI', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

@media (prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important
    }
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    color: var(--gray);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4 {
    color: var(--ink);
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.15
}

h1 {
    font-weight: 800;
    font-size: clamp(40px, 6vw, 72px)
}

h2 {
    font-size: clamp(30px, 4vw, 46px)
}

h3 {
    font-size: 22px;
    letter-spacing: -.4px
}

h4 {
    font-size: 17px;
    letter-spacing: -.2px
}

a {
    color: var(--blue);
    text-decoration: none
}

a:hover {
    text-decoration: underline
}

img,
svg {
    display: block;
    max-width: 100%
}

ul {
    list-style: none
}

strong {
    color: #1F2937;
    font-weight: 600
}

::selection {
    background: var(--blue);
    color: #fff
}

:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 3px;
    border-radius: 4px
}

/* Layout */
.wrap {
    max-width: var(--content);
    margin: 0 auto;
    padding: 0 var(--s5)
}

section {
    padding: var(--s10) 0;
    position: relative
}

.section-gray {
    background: var(--gray-light)
}

.section-dark {
    background: var(--dark);
    color: #9CA3AF
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: #fff
}

.section-dark .lead {
    color: #D1D5DB
}

/* Eyebrow / annual-report index labels — the page's structural signature */
.eyebrow {
    display: flex;
    align-items: center;
    gap: var(--s3);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: var(--s5);
}

.eyebrow .idx {
    font-variant-numeric: tabular-nums;
    color: #9CA3AF;
    font-weight: 600;
    letter-spacing: .06em;
}

.eyebrow::after {
    content: "";
    height: 1px;
    width: 56px;
    background: var(--line)
}

.section-dark .eyebrow .idx {
    color: #6B7280
}

.section-dark .eyebrow::after {
    background: var(--line-dark)
}

.section-head {
    max-width: 760px;
    margin-bottom: var(--s8)
}

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

.section-head.center .eyebrow {
    justify-content: center
}

.section-head.center .eyebrow::after {
    display: none
}

.lead {
    font-size: 19px;
    line-height: 32px;
    margin-top: var(--s5);
    color: var(--gray)
}

.grad-text {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: var(--r-btn);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -.1px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background .2s ease-out, border-color .2s ease-out, color .2s ease-out, transform .2s ease-out
}

.btn:hover {
    text-decoration: none
}

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

.btn-primary:hover {
    background: var(--blue-hover)
}

.btn-secondary {
    background: #fff;
    color: var(--ink);
    border-color: var(--ink)
}

.btn-secondary:hover {
    background: var(--gray-light)
}

.btn-ghost-dark {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .28)
}

.btn-ghost-dark:hover {
    border-color: #fff
}

.btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

/* Cards */
.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-card);
    padding: var(--s6);
    transition: transform .25s ease-out, box-shadow .25s ease-out
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow)
}

.card h3,
.card h4 {
    margin-bottom: var(--s3)
}

.card-dark {
    background: var(--dark-2);
    border-color: var(--line-dark)
}

.card-dark:hover {
    box-shadow: var(--shadow-dark)
}

.icon-tile {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--s4)
}

.icon-tile svg {
    width: 22px;
    height: 22px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round
}

.icon-line {
    width: 24px;
    height: 24px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0
}

/* Grids */
.grid {
    display: grid;
    gap: var(--s5)
}

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

.grid-3 {
    grid-template-columns: repeat(3, 1fr)
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr)
}

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

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

@media(max-width:640px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr
    }
}

/* Badges & chips */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: var(--r-badge);
    font-size: 13px;
    font-weight: 500;
    border: 1px solid var(--line);
    color: #374151;
    background: #fff
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue)
}

.chip {
    display: inline-block;
    padding: 7px 14px;
    border-radius: var(--r-badge);
    border: 1px solid var(--line);
    background: #fff;
    font-size: 14px;
    font-weight: 500;
    color: #374151
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

/* Check list */
.checks {
    display: grid;
    gap: var(--s3)
}

.checks li {
    display: flex;
    gap: var(--s3);
    align-items: flex-start;
    color: #374151;
    font-size: 15px;
    line-height: 26px
}

.checks svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 3px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.section-dark .checks li {
    color: #D1D5DB
}

/* Split layout */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s9);
    align-items: center
}

@media(max-width:900px) {
    .split {
        grid-template-columns: 1fr;
        gap: var(--s7)
    }
}

/* Nav */
.progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: var(--grad);
    z-index: 120
}

header.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 110;
    background: rgba(17, 17, 17, .85);
    backdrop-filter: saturate(160%) blur(12px);
    border-bottom: 1px solid var(--line-dark);
    transition: background .25s ease-out
}

.nav-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--s5);
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s5)
}

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
    font-weight: 800;
    font-size: 19px;
    letter-spacing: -.5px;
    color: #fff
}

.logo:hover {
    text-decoration: none
}

.logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center
}

.logo-mark svg {
    width: 16px;
    height: 16px;
    stroke: #fff;
    stroke-width: 2.4;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--s6)
}

.nav-links a {
    color: #D1D5DB;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -.1px
}

.nav-links a:hover {
    color: #fff;
    text-decoration: none
}

.nav-cta {
    padding: 10px 20px;
    border-radius: var(--r-btn);
    background: var(--blue);
    color: #fff !important;
    font-weight: 600
}

.nav-cta:hover {
    background: var(--blue-hover)
}

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px
}

.nav-toggle svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round
}

@media(max-width:960px) {
    .nav-links {
        position: fixed;
        inset: 72px 0 auto 0;
        background: var(--dark);
        flex-direction: column;
        align-items: stretch;
        padding: var(--s5);
        gap: 0;
        border-bottom: 1px solid var(--line-dark);
        display: none
    }

    .nav-links.open {
        display: flex
    }

    .nav-links a {
        padding: 14px 8px;
        border-bottom: 1px solid var(--line-dark)
    }

    .nav-links a:last-child {
        border-bottom: 0;
        margin-top: var(--s3);
        text-align: center
    }

    .nav-toggle {
        display: block
    }
}

/* Hero */
.hero {
    background: var(--dark);
    color: #9CA3AF;
    padding: calc(72px + var(--s10)) 0 var(--s10);
    overflow: hidden;
    position: relative
}

.hero h1 {
    color: #fff;
    max-width: 900px;
    margin: var(--s5) 0
}

.hero .lead {
    max-width: 640px;
    color: #D1D5DB
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .5
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s4);
    margin-top: var(--s7)
}

.hero-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line-dark);
    border: 1px solid var(--line-dark);
    border-radius: var(--r-card);
    overflow: hidden;
    margin-top: var(--s9)
}

.hero-facts>div {
    background: var(--dark);
    padding: var(--s5) var(--s5)
}

.hero-facts .k {
    color: #fff;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -.5px
}

.hero-facts .v {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #6B7280;
    margin-top: 4px
}

@media(max-width:900px) {
    .hero-facts {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:480px) {
    .hero-facts {
        grid-template-columns: 1fr
    }
}

/* Quote blocks */
.bigquote {
    max-width: 900px;
    margin: 0 auto;
    text-align: center
}

.bigquote blockquote {
    font-size: clamp(24px, 3.4vw, 38px);
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: -.8px;
    color: var(--ink)
}

.section-dark .bigquote blockquote {
    color: #fff
}

.bigquote .mark {
    width: 40px;
    height: 40px;
    margin: 0 auto var(--s6);
    stroke: var(--blue);
    fill: none;
    stroke-width: 1.6
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    padding-left: var(--s7)
}

.timeline::before {
    content: "";
    position: absolute;
    left: 11px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: var(--line)
}

.t-item {
    position: relative;
    padding-bottom: var(--s8)
}

.t-item:last-child {
    padding-bottom: 0
}

.t-item::before {
    content: "";
    position: absolute;
    left: calc(-1 * var(--s7) + 4px);
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--blue)
}

.t-item.t-accent::before {
    background: var(--blue)
}

.t-year {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: var(--s2)
}

.t-item h3 {
    margin-bottom: var(--s2)
}

/* Numbered process rows */
.steps {
    display: grid;
    gap: var(--s4)
}

.step {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: var(--s5);
    padding: var(--s5) var(--s6);
    border: 1px solid var(--line);
    border-radius: var(--r-card);
    background: #fff;
    transition: transform .25s ease-out, box-shadow .25s ease-out
}

.step:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow)
}

.step-num {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -1px;
    font-variant-numeric: tabular-nums;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
    padding-top: 2px
}

.step h3 {
    margin-bottom: 6px
}

@media(max-width:560px) {
    .step {
        grid-template-columns: 1fr;
        gap: var(--s2)
    }
}

/* Engagement rail */
.rail {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: var(--s3)
}

.rail-item {
    border: 1px solid var(--line-dark);
    border-radius: 16px;
    background: var(--dark-2);
    padding: var(--s5) var(--s4);
    transition: transform .25s ease-out, border-color .25s ease-out
}

.rail-item:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 105, 255, .55)
}

.rail-item .n {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    color: #6B7280;
    font-variant-numeric: tabular-nums
}

.rail-item h4 {
    color: #fff;
    margin: 8px 0 6px
}

.rail-item p {
    font-size: 13.5px;
    line-height: 21px
}

@media(max-width:1100px) {
    .rail {
        grid-template-columns: repeat(4, 1fr)
    }
}

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

/* Tables / stack groups */
.stack-group {
    border: 1px solid var(--line);
    border-radius: var(--r-card);
    background: #fff;
    padding: var(--s5) var(--s6);
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: var(--s5);
    align-items: start
}

.stack-group+.stack-group {
    margin-top: var(--s4)
}

.stack-group h3 {
    font-size: 16px;
    letter-spacing: -.2px;
    padding-top: 6px
}

@media(max-width:700px) {
    .stack-group {
        grid-template-columns: 1fr;
        gap: var(--s3)
    }
}

/* CEO letter */
.letter {
    max-width: 860px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-card);
    padding: clamp(32px, 6vw, 72px)
}

.letter p {
    margin-bottom: var(--s5);
    color: #374151
}

.letter .sign {
    margin-top: var(--s7);
    padding-top: var(--s5);
    border-top: 1px solid var(--line)
}

.letter .sign .name {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -.4px;
    color: var(--ink)
}

.letter .sign .role {
    font-size: 14px;
    color: var(--gray);
    margin-top: 2px
}

/* Roadmap */
.roadmap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s5)
}

@media(max-width:900px) {
    .roadmap {
        grid-template-columns: 1fr
    }
}

.phase {
    border: 1px solid var(--line-dark);
    border-radius: var(--r-card);
    background: var(--dark-2);
    padding: var(--s6)
}

.phase .years {
    display: inline-block;
    padding: 5px 14px;
    border-radius: var(--r-badge);
    border: 1px solid rgba(0, 105, 255, .5);
    color: #7EB8FF;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .05em;
    margin-bottom: var(--s4)
}

.phase ul {
    display: grid;
    gap: var(--s3);
    margin-top: var(--s3)
}

.phase li {
    display: flex;
    gap: 10px;
    font-size: 14.5px;
    line-height: 23px;
    color: #D1D5DB
}

.phase li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
    flex-shrink: 0;
    margin-top: 9px
}

/* Vision numbers */
.targets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s5);
    margin-top: var(--s7)
}

@media(max-width:700px) {
    .targets {
        grid-template-columns: 1fr
    }
}

.target {
    border: 1px solid var(--line-dark);
    border-radius: var(--r-card);
    padding: var(--s6);
    background: var(--dark-2);
    text-align: center
}

.target .num {
    font-size: clamp(38px, 5vw, 54px);
    font-weight: 800;
    letter-spacing: -1.5px;
    color: #fff;
    font-variant-numeric: tabular-nums
}

.target .num .suffix {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.target .lbl {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #6B7280;
    margin-top: var(--s2)
}

/* CTA */
.cta-panel {
    background: var(--dark);
    border-radius: 24px;
    padding: clamp(40px, 7vw, 88px);
    text-align: center;
    position: relative;
    overflow: hidden
}

.cta-panel h2 {
    color: #fff;
    max-width: 720px;
    margin: 0 auto var(--s5)
}

.cta-panel p {
    max-width: 560px;
    margin: 0 auto var(--s7);
    color: #D1D5DB
}

/* Footer */
footer {
    background: var(--dark);
    color: #9CA3AF;
    padding: var(--s9) 0 var(--s6);
    border-top: 1px solid var(--line-dark)
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: var(--s7)
}

@media(max-width:900px) {
    .foot-grid {
        grid-template-columns: 1fr 1fr
    }
}

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

.foot-grid h4 {
    color: #fff;
    font-size: 14px;
    letter-spacing: .04em;
    margin-bottom: var(--s4)
}

.foot-grid ul {
    display: grid;
    gap: 10px
}

.foot-grid a {
    color: #9CA3AF;
    font-size: 14px
}

.foot-grid a:hover {
    color: #fff;
    text-decoration: none
}

.foot-bottom {
    margin-top: var(--s8);
    padding-top: var(--s5);
    border-top: 1px solid var(--line-dark);
    display: flex;
    justify-content: space-between;
    gap: var(--s4);
    flex-wrap: wrap;
    font-size: 13px
}

/* Back to top */
#toTop {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--blue);
    border: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease-out, background .2s ease-out;
    z-index: 100
}

#toTop:hover {
    background: var(--blue-hover)
}

#toTop.show {
    opacity: 1;
    pointer-events: auto
}

#toTop svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
    stroke-width: 2.2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round
}

/* Reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .55s ease-out, transform .55s ease-out
}

.reveal.in {
    opacity: 1;
    transform: none
}

@media (prefers-reduced-motion:reduce) {
    .reveal {
        opacity: 1;
        transform: none
    }
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--blue);
    color: #fff;
    padding: 12px 20px;
    border-radius: 0 0 12px 0;
    z-index: 200
}

.skip-link:focus {
    left: 0
}

/* Print / PDF */
@media print {
    @page {
        margin: 14mm
    }

    html {
        scroll-behavior: auto
    }

    body {
        color: #374151
    }

    header.nav,
    .progress,
    #toTop,
    .hero-actions,
    .nav-toggle,
    .cta-actions {
        display: none !important
    }

    section {
        padding: 26px 0;
        break-inside: avoid-page
    }

    .hero {
        padding-top: 26px
    }

    .section-dark,
    .hero,
    footer,
    .cta-panel {
        background: #fff !important;
        color: #374151 !important;
        -webkit-print-color-adjust: exact
    }

    .section-dark h2,
    .section-dark h3,
    .section-dark h4,
    .hero h1,
    .cta-panel h2,
    .rail-item h4,
    .target .num,
    .foot-grid h4 {
        color: #000 !important
    }

    .hero .lead,
    .section-dark .lead,
    .section-dark .checks li,
    .phase li,
    .cta-panel p {
        color: #374151 !important
    }

    .card,
    .step,
    .stack-group,
    .letter,
    .phase,
    .rail-item,
    .target,
    .hero-facts>div {
        border-color: #D1D5DB !important;
        background: #fff !important;
        box-shadow: none !important
    }

    .hero-facts {
        background: #D1D5DB;
        border-color: #D1D5DB
    }

    .hero-facts .k {
        color: #000
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important
    }

    a {
        color: #111
    }

    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr)
    }
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 42px;      /* Adjust as needed */
    width: auto;
    display: block;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 95px; /* Above Back-to-Top button */
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
    transition: all .3s ease;
    z-index: 999;
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 18px 36px rgba(37, 211, 102, 0.45);
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 54px;
        height: 54px;
        right: 18px;
        bottom: 85px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

.whatsapp-float.extended{
    width:auto;
    padding:0 18px;
    gap:10px;
    border-radius:999px;
    font-weight:600;
    text-decoration:none;
}