:root {
    --gs-primary: #1F6F9E;
    --gs-primary-dark: #186390;
    --gs-primary-light: #4a9ec4;
    --gs-accent: #2FAF9B;
    --gs-accent-dark: #27998a;
    --gs-gold: #f59e0b;
    --gs-dark: #141d22;
    --gs-dark-2: #192530;
    --gs-dark-3: #2F3E46;
    --gs-dark-card: #1e2d36;
    --gs-text: #d4eaf2;
    --gs-muted: #8faab5;
    --gs-border: rgba(31,111,158,0.22);
    --gs-gradient: linear-gradient(135deg, var(--gs-primary) 0%, var(--gs-accent) 100%);
    --gs-gradient-soft: linear-gradient(135deg, rgba(31,111,158,0.12) 0%, rgba(47,175,155,0.08) 100%);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--gs-dark);
    color: var(--gs-text);
    overflow-x: hidden;
}

/* ── NAVBAR ── */
.gs-navbar {
    background: #3ec4b0;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding: 0.9rem 0;
    transition: background 0.3s;
}
.gs-brand {
    font-weight: 800;
    font-size: 1.3rem;
    color: #fff !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    letter-spacing: -0.02em;
}
.gs-logo-img {
    height: 56px;
    width: auto;
    flex-shrink: 0;
    background: rgba(255,255,255,0.92);
    border-radius: 10px;
    padding: 5px 10px;
    filter: none;
}
.nav-link {
    color: rgba(212,234,242,0.8) !important;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.nav-link:hover { color: #fff !important; }

.gs-btn-outline-sm {
    border: 1.5px solid var(--gs-primary);
    color: var(--gs-primary-light);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.4rem 1.1rem;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}
.gs-btn-outline-sm:hover {
    background: var(--gs-primary);
    color: #fff;
}

/* ── BUTTONS ── */
.gs-btn-primary {
    background: var(--gs-gradient);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.75rem 1.8rem;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 24px rgba(31,111,158,0.35);
}
.gs-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(31,111,158,0.5);
    color: #fff;
}
.gs-btn-ghost {
    background: transparent;
    color: var(--gs-text);
    border: 1.5px solid var(--gs-border);
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.8rem;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-block;
}
.gs-btn-ghost:hover {
    border-color: var(--gs-primary);
    color: var(--gs-primary-light);
    background: rgba(31,111,158,0.08);
}

/* ── HERO ── */
.gs-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}
.gs-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 40%, rgba(31,111,158,0.2) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 70%, rgba(47,175,155,0.14) 0%, transparent 55%),
        var(--gs-dark);
}
.gs-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(31,111,158,0.15);
    border: 1px solid rgba(31,111,158,0.35);
    border-radius: 99px;
    padding: 0.35rem 1rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gs-primary-light);
    margin-bottom: 1.5rem;
}
.gs-hero-badge .dot {
    width: 7px; height: 7px;
    background: var(--gs-accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}
.gs-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: #fff;
    margin-bottom: 1.4rem;
}
.gs-gradient-text {
    background: var(--gs-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gs-hero-sub {
    font-size: 1.15rem;
    color: var(--gs-muted);
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 2.2rem;
}
.gs-hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}
.gs-hero-stat { text-align: center; }
.gs-hero-stat .val {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.gs-hero-stat .lbl {
    font-size: 0.78rem;
    color: var(--gs-muted);
    margin-top: 0.2rem;
}

/* ── DEMO CARD (hero right) ── */
.gs-demo-card {
    background: var(--gs-dark-card);
    border: 1px solid var(--gs-border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 24px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(31,111,158,0.1);
    position: relative;
}
.gs-demo-card::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px; bottom: -1px;
    border-radius: 20px;
    background: var(--gs-gradient);
    z-index: -1;
    opacity: 0.5;
}
.gs-demo-card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.gs-dot { width: 12px; height: 12px; border-radius: 50%; }

/* ── SECTIONS ── */
.gs-section { padding: 100px 0; }
.gs-section-sm { padding: 70px 0; }

.gs-section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gs-accent);
    margin-bottom: 0.8rem;
}
.gs-section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
    line-height: 1.15;
}
.gs-section-sub {
    color: var(--gs-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 560px;
}

/* ── FEATURE CARDS ── */
.gs-feat-card {
    background: var(--gs-dark-card);
    border: 1px solid var(--gs-border);
    border-radius: 16px;
    padding: 1.8rem;
    height: 100%;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.gs-feat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(31,111,158,0.5);
    box-shadow: 0 12px 40px rgba(31,111,158,0.15);
}
.gs-feat-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    flex-shrink: 0;
}
.gs-feat-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}
.gs-feat-card p {
    font-size: 0.87rem;
    color: var(--gs-muted);
    line-height: 1.6;
    margin: 0;
}

/* icon colors */
.ic-primary { background: rgba(31,111,158,0.18);  color: var(--gs-primary-light); }
.ic-accent  { background: rgba(47,175,155,0.18);  color: #3ecfba; }
.ic-blue    { background: rgba(59,130,246,0.18);  color: #60a5fa; }
.ic-green   { background: rgba(34,197,94,0.18);   color: #4ade80; }
.ic-orange  { background: rgba(249,115,22,0.18);  color: #fb923c; }
.ic-teal    { background: rgba(20,184,166,0.18);  color: #2dd4bf; }
.ic-yellow  { background: rgba(234,179,8,0.18);   color: #facc15; }
.ic-red     { background: rgba(239,68,68,0.18);   color: #f87171; }
.ic-indigo  { background: rgba(99,102,241,0.18);  color: #a5b4fc; }
.ic-rose    { background: rgba(244,63,94,0.18);   color: #fb7185; }
.ic-cyan    { background: rgba(6,182,212,0.18);   color: #22d3ee; }
.ic-lime    { background: rgba(132,204,22,0.18);  color: #a3e635; }
/* legacy aliases */
.ic-purple { background: rgba(31,111,158,0.18);   color: var(--gs-primary-light); }
.ic-pink   { background: rgba(47,175,155,0.18);   color: #3ecfba; }

/* ── COMPARISON TABLE ── */
.gs-compare-table {
    background: var(--gs-dark-card);
    border: 1px solid var(--gs-border);
    border-radius: 20px;
    overflow: hidden;
}
.gs-compare-table .table {
    --bs-table-color: var(--gs-text);
    --bs-table-bg: transparent;
    --bs-table-border-color: var(--gs-border);
    --bs-table-hover-bg: rgba(31,111,158,0.05);
    --bs-table-hover-color: var(--gs-text);
    color: var(--gs-text);
}
.gs-compare-table th {
    background: rgba(31,111,158,0.12);
    color: var(--gs-text);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 1rem 1.2rem;
    border-bottom: 1px solid var(--gs-border);
    border-top: none;
}
.gs-compare-table th.gs-our {
    background: rgba(31,111,158,0.25);
    color: var(--gs-primary-light);
}
.gs-compare-table td {
    padding: 0.85rem 1.2rem;
    border-color: var(--gs-border);
    color: var(--gs-muted);
    font-size: 0.88rem;
    vertical-align: middle;
}
.gs-compare-table td:first-child { color: var(--gs-text); font-weight: 500; }
.gs-compare-table tbody tr:hover { background: rgba(31,111,158,0.05); }
.gs-check { color: #4ade80; font-size: 1.1rem; }
.gs-cross  { color: #f87171; font-size: 1.1rem; }
.gs-partial { color: #facc15; font-size: 0.85rem; }

/* ── BIG FEATURE ROW ── */
.gs-big-feature {
    background: var(--gs-dark-card);
    border: 1px solid var(--gs-border);
    border-radius: 24px;
    padding: 3rem;
}
.gs-big-feature .tag {
    display: inline-block;
    background: rgba(47,175,155,0.15);
    border: 1px solid rgba(47,175,155,0.3);
    color: var(--gs-accent);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    margin-bottom: 1rem;
}
.gs-big-feature h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}
.gs-big-feature p { color: var(--gs-muted); line-height: 1.7; }
.gs-check-list { list-style: none; padding: 0; margin: 1.2rem 0 0; }
.gs-check-list li {
    display: flex; align-items: flex-start; gap: 0.6rem;
    color: var(--gs-text); font-size: 0.92rem;
    padding: 0.3rem 0;
}
.gs-check-list li i { color: var(--gs-accent); margin-top: 0.2rem; flex-shrink: 0; }

/* ── MOCKUP CARD ── */
.gs-mockup {
    background: var(--gs-dark-3);
    border: 1px solid var(--gs-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 60px rgba(0,0,0,0.4);
}
.gs-mockup-bar {
    background: rgba(31,111,158,0.14);
    border-bottom: 1px solid var(--gs-border);
    padding: 0.6rem 1rem;
    display: flex; align-items: center; gap: 0.4rem;
}
.gs-mockup-body { padding: 1.2rem; }
.gs-stat-pill {
    background: rgba(31,111,158,0.12);
    border: 1px solid var(--gs-border);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    text-align: center;
    margin-bottom: 0.7rem;
}
.gs-stat-pill .num { font-size: 1.4rem; font-weight: 800; color: #fff; }
.gs-stat-pill .label { font-size: 0.72rem; color: var(--gs-muted); }
.gs-bar-row { margin-bottom: 0.5rem; }
.gs-bar-label { font-size: 0.72rem; color: var(--gs-muted); margin-bottom: 0.2rem; }
.gs-bar-track { height: 6px; background: rgba(255,255,255,0.06); border-radius: 99px; }
.gs-bar-fill { height: 6px; border-radius: 99px; background: var(--gs-gradient); }

/* ── DEMO/CTA ── */
.gs-cta-section {
    background: var(--gs-gradient-soft);
    border: 1px solid var(--gs-border);
    border-radius: 28px;
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.gs-cta-section::before {
    content: '';
    position: absolute;
    top: -50%; left: 50%; transform: translateX(-50%);
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(31,111,158,0.15), transparent 70%);
    pointer-events: none;
}
.gs-demo-form {
    background: var(--gs-dark-card);
    border: 1px solid var(--gs-border);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 480px;
    margin: 2.5rem auto 0;
}
.gs-form-control {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--gs-border);
    color: var(--gs-text);
    border-radius: 8px;
    padding: 0.7rem 1rem;
    width: 100%;
    font-size: 0.9rem;
    transition: border-color 0.2s;
}
.gs-form-control:focus {
    outline: none;
    border-color: var(--gs-primary);
    background: rgba(31,111,158,0.08);
    color: var(--gs-text);
}
.gs-form-control::placeholder { color: var(--gs-muted); }
.gs-form-control option { background: var(--gs-dark-2); color: var(--gs-text); }

/* ── PAIN POINTS ── */
.gs-pain-card {
    background: linear-gradient(135deg, rgba(239,68,68,0.08), rgba(239,68,68,0.04));
    border: 1px solid rgba(239,68,68,0.2);
    border-radius: 14px;
    padding: 1.5rem;
    height: 100%;
}
.gs-pain-card i { color: #f87171; font-size: 1.5rem; margin-bottom: 0.8rem; }
.gs-pain-card h6 { color: #fff; font-weight: 700; margin-bottom: 0.4rem; }
.gs-pain-card p { color: var(--gs-muted); font-size: 0.85rem; margin: 0; line-height: 1.5; }

/* ── PANEL CARDS ── */
.gs-panel-card {
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
}
.gs-panel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.gs-panel-card.admin-card {
    background: linear-gradient(135deg, rgba(31,111,158,0.2), rgba(31,111,158,0.08));
    border: 1px solid rgba(31,111,158,0.4);
}
.gs-panel-card.employee-card {
    background: linear-gradient(135deg, rgba(47,175,155,0.2), rgba(47,175,155,0.08));
    border: 1px solid rgba(47,175,155,0.4);
}
.gs-panel-card.client-card {
    background: linear-gradient(135deg, rgba(249,115,22,0.2), rgba(249,115,22,0.08));
    border: 1px solid rgba(249,115,22,0.4);
}
.gs-panel-card .panel-icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}
.admin-card    .panel-icon { background: rgba(31,111,158,0.25);  color: var(--gs-primary-light); }
.employee-card .panel-icon { background: rgba(47,175,155,0.25);  color: var(--gs-accent); }
.client-card   .panel-icon { background: rgba(249,115,22,0.25);  color: #fb923c; }
.gs-panel-card h4 { font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 0.5rem; }
.gs-panel-card .subtitle { font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 1rem; }
.admin-card    .subtitle { color: var(--gs-primary-light); }
.employee-card .subtitle { color: var(--gs-accent); }
.client-card   .subtitle { color: #fb923c; }
.gs-panel-card p { color: var(--gs-muted); font-size: 0.88rem; line-height: 1.6; margin-bottom: 1rem; }
.gs-panel-feature {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.83rem; color: var(--gs-text); padding: 0.2rem 0;
}
.gs-panel-feature i { font-size: 0.75rem; flex-shrink: 0; }
.admin-card    .gs-panel-feature i { color: var(--gs-primary-light); }
.employee-card .gs-panel-feature i { color: var(--gs-accent); }
.client-card   .gs-panel-feature i { color: #fb923c; }

/* ── STEPS ── */
.gs-step { display: flex; gap: 1.2rem; align-items: flex-start; }
.gs-step-num {
    width: 44px; height: 44px; flex-shrink: 0;
    background: var(--gs-gradient);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; font-weight: 800; color: #fff;
}
.gs-step-content h6 { color: #fff; font-weight: 700; margin-bottom: 0.2rem; }
.gs-step-content p { color: var(--gs-muted); font-size: 0.87rem; margin: 0; }

/* ── DARK SECTIONS ── */
.gs-dark-section { background: var(--gs-dark-2); }
.gs-darker-section { background: var(--gs-dark-3); }

/* ── FOOTER ── */
.gs-footer {
    background: var(--gs-dark-3);
    border-top: 1px solid var(--gs-border);
    padding: 60px 0 0;
}
.gs-footer-link {
    color: var(--gs-muted);
    text-decoration: none;
    font-size: 0.87rem;
    display: block;
    padding: 0.2rem 0;
    transition: color 0.2s;
}
.gs-footer-link:hover { color: var(--gs-accent); }
.gs-footer-hr { border-color: var(--gs-border); }
.gs-social {
    color: var(--gs-muted);
    font-size: 1.1rem;
    transition: color 0.2s;
    text-decoration: none;
}
.gs-social:hover { color: var(--gs-accent); }
.fw-600 { font-weight: 600; }

/* ── TESTIMONIALS ── */
.gs-testi-card {
    background: var(--gs-dark-card);
    border: 1px solid var(--gs-border);
    border-radius: 16px;
    padding: 1.8rem;
    height: 100%;
}
.gs-testi-card .stars { color: var(--gs-gold); font-size: 0.85rem; margin-bottom: 0.8rem; }
.gs-testi-card .quote { color: var(--gs-text); font-size: 0.92rem; line-height: 1.65; margin-bottom: 1.2rem; }
.gs-testi-card .avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--gs-gradient);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; color: #fff; font-size: 0.9rem;
    flex-shrink: 0;
}
.gs-testi-card .name { font-weight: 700; color: #fff; font-size: 0.9rem; }
.gs-testi-card .role { font-size: 0.78rem; color: var(--gs-muted); }

/* ── RIBBON ── */
.gs-ribbon {
    background: var(--gs-gradient);
    border-radius: 99px;
    padding: 0.25rem 0.8rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: inline-block;
}

/* ── SECTOR CARDS ── */
.gs-sector-card {
    background: var(--gs-dark-card);
    border: 1px solid var(--gs-border);
    border-radius: 14px;
    padding: 1.5rem 1.2rem;
    text-align: center;
    height: 100%;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
    cursor: default;
}
.gs-sector-card:hover {
    transform: translateY(-4px);
    border-color: rgba(47,175,155,0.45);
    box-shadow: 0 10px 32px rgba(47,175,155,0.12);
}
.gs-sector-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 1rem;
    background: var(--gs-gradient);
}
.gs-sector-card h6 {
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: .35rem;
}
.gs-sector-card p {
    color: var(--gs-muted);
    font-size: .8rem;
    margin: 0;
    line-height: 1.5;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
    .gs-section { padding: 60px 0; }
    .gs-big-feature { padding: 1.8rem; }
    .gs-cta-section { padding: 3rem 1.5rem; }
    .gs-hero-stats { gap: 1.2rem; }
}
