/* CSS Variables & Design System */
:root {
    --bg-primary: #F8FAFC;
    --surface-paper: #FFFFFF;
    --surface-soft-blue: #E1F2FB;
    --text-ink: #0F172A;
    --brand-blue: #02254B;
    --accent-cyan: #06C6F5;
    --highlight-amber: #F59E0B;
    --text-slate: #64748B;
    --border-slate: rgba(100, 116, 139, 0.2);
    --shadow-sm: 0 2px 8px rgba(22, 36, 28, 0.04);
    --shadow-md: 0 8px 24px rgba(22, 36, 28, 0.06);
    --shadow-lg: 0 24px 48px rgba(22, 36, 28, 0.08);
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 999px;
    --transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Google Sans', sans-serif;
    font-weight: 800;
    line-height: 1.08;
    color: var(--text-ink);
    letter-spacing: -0.03em;
}

h1 { font-size: clamp(3rem, 5vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2.5rem, 4vw, 3.5rem); margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.5rem; font-weight: 700; }

p {
    color: var(--text-slate);
    font-size: 1.125rem;
}

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

ul { list-style: none; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center { text-align: center; }
.mt-4 { margin-top: 1.5rem; }
.full-width { width: 100%; text-align: center; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-blue) 0%, #006b9e 100%);
    color: var(--surface-paper);
    box-shadow: 0 4px 14px rgba(0, 141, 210, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--text-ink) 0%, #1e293b 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.25);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--border-slate);
    color: var(--text-ink);
}

.btn-secondary:hover {
    border-color: var(--text-ink);
    background-color: var(--surface-paper);
}

.btn-secondary.on-dark {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--surface-paper);
}
.btn-secondary.on-dark:hover {
    border-color: var(--surface-paper);
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-white {
    background-color: var(--surface-paper);
    color: var(--brand-blue);
}

.btn-white:hover {
    background-color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* 1. Navbar */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

#navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-slate);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Google Sans', sans-serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--text-ink);
    letter-spacing: -0.02em;
}

.nav-links {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--accent-cyan);
}

/* 2. Hero Section */
.hero {
    padding: 12rem 0 8rem;
    overflow: hidden;
    background: radial-gradient(circle at top right, rgba(0, 141, 210, 0.08) 0%, transparent 40%),
                radial-gradient(circle at bottom left, rgba(6, 198, 245, 0.05) 0%, transparent 40%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23008dd2' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: -1;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 1rem;
    background-color: var(--surface-soft-blue);
    color: var(--brand-blue);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 141, 210, 0.2);
    box-shadow: var(--shadow-sm);
}

.gradient-text {
    background: linear-gradient(135deg, var(--text-ink) 0%, var(--brand-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-height: 520px;
}

.hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.hero-headline {
    font-size: clamp(3.5rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--text-ink);
    margin-bottom: 1.5rem;
}

.hero-accent {
    background: linear-gradient(135deg, var(--accent-cyan), #0891b2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.15rem;
    margin: 0 0 2.5rem;
    max-width: 560px;
    text-align: center;
    color: var(--text-slate);
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}
.hero-ctas.justify-center {
    justify-content: center;
}

.btn-hero {
    background: var(--text-ink);
    color: white;
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.2);
    border: none;
}

.btn-hero:hover {
    background: var(--brand-blue);
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(2, 37, 75, 0.3);
}

/* Hero Floating Elements */
.hero-float {
    position: absolute;
    z-index: 2;
}

.hero-float-card {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.95);
    padding: 0.85rem 1.3rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hero-float-card i {
    width: 22px;
    height: 22px;
    color: var(--brand-blue);
    flex-shrink: 0;
}

.hero-float-card span {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-ink);
    white-space: nowrap;
}

.hero-float-icon-only {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.hero-float-icon-only i {
    width: 26px;
    height: 26px;
}

.hero-float-1 {
    top: 22%;
    left: 5%;
    transform: rotate(-8deg);
    animation: heroFloat1 6s ease-in-out infinite;
}

.hero-float-2 {
    top: 48%;
    left: 3%;
    transform: rotate(5deg);
    animation: heroFloat2 7s ease-in-out infinite;
}

.hero-float-3 {
    bottom: 12%;
    left: 8%;
    transform: rotate(-4deg);
    animation: heroFloat3 8s ease-in-out infinite;
}

.hero-float-4 {
    top: 18%;
    right: 6%;
    transform: rotate(7deg);
    animation: heroFloat4 6.5s ease-in-out infinite;
}

.hero-float-5 {
    top: 50%;
    right: 3%;
    transform: rotate(-5deg);
    animation: heroFloat5 7.5s ease-in-out infinite;
}

.hero-float-6 {
    bottom: 10%;
    right: 7%;
    transform: rotate(6deg);
    animation: heroFloat6 6s ease-in-out infinite 0.5s;
}

.hero-float-7 {
    top: 12%;
    right: 22%;
    background: linear-gradient(135deg, #e0f2fe, #bae6fd);
    transform: rotate(8deg);
    animation: heroFloat7 8s ease-in-out infinite;
}

.hero-float-7 i { color: #0284c7; }

.hero-float-8 {
    bottom: 20%;
    left: 20%;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    transform: rotate(-6deg);
    animation: heroFloat8 7s ease-in-out infinite;
}

.hero-float-8 i { color: #d97706; }

@keyframes heroFloat1 { 0%, 100% { transform: rotate(-8deg) translateY(0); } 50% { transform: rotate(-8deg) translateY(-14px); } }
@keyframes heroFloat2 { 0%, 100% { transform: rotate(5deg) translateY(0); } 50% { transform: rotate(5deg) translateY(-16px); } }
@keyframes heroFloat3 { 0%, 100% { transform: rotate(-4deg) translateY(0); } 50% { transform: rotate(-4deg) translateY(-10px); } }
@keyframes heroFloat4 { 0%, 100% { transform: rotate(7deg) translateY(0); } 50% { transform: rotate(7deg) translateY(-13px); } }
@keyframes heroFloat5 { 0%, 100% { transform: rotate(-5deg) translateY(0); } 50% { transform: rotate(-5deg) translateY(-12px); } }
@keyframes heroFloat6 { 0%, 100% { transform: rotate(6deg) translateY(0); } 50% { transform: rotate(6deg) translateY(-15px); } }
@keyframes heroFloat7 { 0%, 100% { transform: rotate(8deg) translateY(0); } 50% { transform: rotate(8deg) translateY(-18px); } }
@keyframes heroFloat8 { 0%, 100% { transform: rotate(-6deg) translateY(0); } 50% { transform: rotate(-6deg) translateY(-12px); } }

@media (max-width: 768px) {
    .hero-float { display: none; }
    .hero-headline { font-size: clamp(2.5rem, 10vw, 3.5rem); }
}

/* Hero Diagram (legacy) */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.hero-diagram {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 30px 60px rgba(22, 36, 28, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    position: relative;
    min-height: 580px;
    animation: float 6s ease-in-out infinite;
}

.diagram-inputs, .diagram-outputs {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    z-index: 2;
    width: 31%;
    gap: 0.5rem;
}

.diagram-node {
    background: var(--bg-primary);
    border: 1px solid var(--border-slate);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.diagram-node:hover {
    transform: translateY(-2px);
    border-color: var(--accent-cyan);
}

.diagram-node i {
    width: 22px;
    height: 22px;
    margin-bottom: 0.75rem;
    color: var(--brand-blue);
}

.diagram-node span {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-ink);
    margin-bottom: 0.25rem;
}

.diagram-node small {
    font-size: 0.8rem;
    color: var(--text-slate);
    line-height: 1.3;
}

.diagram-engine {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30%;
    z-index: 2;
}

.engine-core {
    background: var(--surface-soft-blue);
    border: 2px solid var(--brand-blue);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.engine-icon {
    width: 32px;
    height: 32px;
    color: var(--brand-blue);
    margin-bottom: 0.5rem;
}

.engine-core h3 {
    font-size: 1.1rem;
    color: var(--brand-blue);
    margin-bottom: 0.25rem;
}

.engine-core p {
    font-size: 0.75rem;
    color: var(--brand-blue);
}

.connection-lines {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    height: 100%;
    z-index: 1;
}

.connection-left {
    right: 100%;
}

.connection-right {
    left: 100%;
}

.connection-lines path {
    fill: none;
    stroke: var(--brand-blue);
    stroke-width: 2;
    stroke-dasharray: 4 4;
    opacity: 0.6;
    animation: dash 20s linear infinite;
    vector-effect: non-scaling-stroke;
}

@keyframes dash {
    to {
        stroke-dashoffset: -100;
    }
}

/* 3. Trust Strip */
.trust-strip {
    padding: 4rem 0;
    border-top: 1px solid var(--border-slate);
    border-bottom: 1px solid var(--border-slate);
    background-color: var(--surface-paper);
}

.trust-label {
    text-align: center;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 3rem;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .trust-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-value {
    font-family: 'Google Sans', sans-serif;
    font-size: 3rem;
    color: var(--brand-blue);
    line-height: 1;
}

.stat-label {
    font-weight: 500;
    color: var(--text-slate);
}

/* 4. Complete Health 360 */
.health-360-section {
    padding: 8rem 0;
    background-color: var(--surface-bg);
}

.health-360-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: flex-start;
    position: relative;
}

@media (min-width: 1024px) {
    .health-360-grid {
        grid-template-columns: 1fr 1.2fr;
    }
}

/* Health 360 Scroll Content */
.health-360-content {
    display: flex;
    flex-direction: column;
}

.scroll-step {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-right: 2rem;
    opacity: 0.15;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateY(20px);
}

.scroll-step.is-active {
    opacity: 1;
    transform: translateY(0);
}

.scroll-step h3 {
    font-weight: 700;
}

.h360-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--brand-blue);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1.75rem;
    padding: 0.25rem 0;
}

.health-360-content p {
    font-size: 1.1rem;
    color: var(--text-slate);
    margin-bottom: 2rem;
}

.h360-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.h360-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-ink);
}

.h360-benefits i {
    color: var(--text-slate);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.health-360-diagram {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: sticky;
    top: 20vh;
    height: 400px;
    transform: scale(0.85) translateX(-2rem);
    transform-origin: center;
}

/* Inputs List */
.diagram-list {
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    align-items: center;
    height: 100%;
    z-index: 2;
    width: 25%;
}

.d-input {
    background: transparent;
    border: 2px solid transparent;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.4rem 0.5rem;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    opacity: 0.5;
    transition: all 0.3s ease;
    justify-self: start;
}

.d-input:hover, .d-input.active {
    opacity: 1;
}

.d-input.active {
    background: white;
    border-color: #1e293b;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.d-tag {
    background: #1e293b;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.35rem 0.6rem;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}



.d-label {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-ink);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.d-input:not(.active) .d-label {
    color: #94a3b8;
}

/* SVG Lines */
.diagram-lines {
    position: absolute;
    left: 15%;
    width: 35%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.diagram-lines svg, .diagram-lines-out svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.d-line {
    fill: none;
    stroke: url(#lineGrad);
    stroke-width: 3;
    stroke-linecap: round;
    transition: all 0.5s ease;
}

.d-line.active {
    stroke: url(#activeGrad);
    stroke-width: 3;
    filter: url(#glow);
}

.d-line-dashed {
    fill: none;
    stroke: url(#outGrad);
    stroke-width: 3;
    stroke-linecap: round;
    filter: url(#glow);
}

/* Center Hub */
.diagram-center-wrapper {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.diagram-center {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 80px;
    height: 80px;
}

.hub-radiating-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(2, 37, 75, 0.3) 0%, transparent 65%);
    border: 2px solid rgba(2, 37, 75, 0.4);
    z-index: -1;
    border-radius: 50%;
    animation: radarPulse 3s cubic-bezier(0.1, 0.5, 0.5, 1) infinite;
}

@keyframes radarPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.6);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

.hub-title {
    position: absolute;
    bottom: calc(100% + 3rem);
    font-weight: 700;
    font-size: 1.1rem;
    color: #1e293b;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 0 0.5rem;
    border-radius: 4px;
    z-index: 3;
}

.hub-title::after {
    content: '';
    position: absolute;
    top: 100%;
    width: 2px;
    height: 2.5rem;
    background: #cbd5e1;
    margin-top: 0.25rem;
}

.hub-title::before {
    content: '';
    position: absolute;
    top: calc(100% + 2.5rem);
    width: 8px;
    height: 8px;
    background: #94a3b8;
    border-radius: 50%;
    z-index: 1;
}

.hub-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 1.25rem;
    background: white;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hub-data-tags {
    position: absolute;
    top: calc(100% + 1rem);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.hub-data-tags span {
    background: #1e293b;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    padding: 0.4rem 1.25rem;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

/* Output Line */
.diagram-lines-out {
    position: absolute;
    left: 50%;
    width: 25%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Output Display */
.diagram-output {
    position: absolute;
    right: -4rem;
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    height: 100%;
}

.mockup-img {
    width: 260px;
    height: auto;
    object-fit: cover;
    border-radius: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    display: block;
    transition: opacity 0.2s ease-in-out;
}

/* 5. Segments Section */
.segments-section {
    padding: 8rem 0;
    background-color: var(--surface-paper);
}

.section-header {
    max-width: 600px;
    margin: 0 auto 4rem;
}

.segments-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .segments-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
    
    .mt-offset {
        margin-top: 4rem;
    }
}

.segment-card {
    background: var(--surface-paper);
    border: 1px solid var(--border-slate);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 6px rgba(22, 36, 28, 0.02);
    position: relative;
    overflow: hidden;
}

.segment-card:hover {
    box-shadow: 0 20px 40px rgba(22, 36, 28, 0.08);
    transform: translateY(-8px);
    border-color: rgba(0, 141, 210, 0.2);
}



.card-icon-wrapper {
    width: 48px;
    height: 48px;
    background: var(--surface-soft-blue);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon-wrapper i {
    color: var(--brand-blue);
}
.card-icon-wrapper i.accent-icon {
    color: var(--accent-cyan);
}

.segment-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.segment-value {
    color: var(--brand-blue);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.segment-use-case {
    font-size: 1rem;
    line-height: 1.5;
}

/* 6. Dev Section */
.dev-section {
    padding: 8rem 0;
    background-color: var(--text-ink);
    color: var(--surface-paper);
}

.dev-section h2 {
    color: var(--surface-paper);
}

.dev-section p, .dev-features {
    color: rgba(255, 255, 255, 0.8);
}

.dev-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .dev-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.dev-features {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dev-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dev-features i {
    color: var(--surface-soft-blue);
}

.dev-code {
    background: #1E293B;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4), 0 0 60px rgba(6, 198, 245, 0.15);
    position: relative;
}

.code-header {
    background: rgba(255,255,255,0.05);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.dot.red { background: #FF5F56; }
.dot.yellow { background: #FFBD2E; }
.dot.green { background: #27C93F; }

.filename {
    margin-left: 1rem;
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--text-slate);
}

.dev-code pre {
    padding: 2rem;
    overflow-x: auto;
    font-family: 'Geist Mono', 'SF Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #A3B8AA;
}

/* 7. Security Wall */
.security-section {
    padding: 6rem 0;
}

.security-wall {
    background: var(--surface-soft-blue);
    border-radius: var(--radius-lg);
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .security-wall {
        grid-template-columns: 1fr 2fr;
    }
}

.security-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.badge {
    background: var(--surface-paper);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border: 1px solid rgba(0, 141, 210, 0.1);
}

.badge i {
    color: var(--brand-blue);
    margin-bottom: 0.5rem;
}

.badge span {
    font-weight: 600;
    color: var(--text-ink);
}

.badge small {
    color: var(--text-slate);
}

/* 8. Pricing */
.pricing-section {
    padding: 8rem 0;
    background-color: var(--surface-paper);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-slate);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

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

.pricing-card.popular {
    border-color: var(--accent-cyan);
    background: var(--surface-paper);
}

.badge-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-cyan);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-tier {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.pricing-card .price {
    font-family: 'Google Sans', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--text-ink);
    margin-bottom: 0.5rem;
    line-height: 1;
    letter-spacing: -0.03em;
}

.price-period {
    font-size: 1rem;
    color: var(--text-slate);
    font-weight: 500;
    letter-spacing: 0;
}

.price-pill {
    display: inline-block;
    background: var(--surface-soft-blue);
    color: var(--brand-blue);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.user-count {
    font-weight: 600;
    color: var(--text-ink);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.mt-pill {
    margin-top: 3.25rem;
}

.mt-auto {
    margin-top: auto;
}

.pricing-card ul {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-card li {
    font-size: 0.95rem;
    color: var(--text-slate);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.pricing-card li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--accent-cyan);
    border-radius: 50%;
    margin-top: 0.45rem;
    flex-shrink: 0;
}

.btn-black {
    background-color: var(--text-ink);
    color: var(--surface-paper);
    border: none;
}

.btn-black:hover {
    background-color: var(--brand-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Enterprise Wide Card */
.pricing-card.enterprise {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem;
}

@media (min-width: 1024px) {
    .pricing-card.enterprise {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.enterprise-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.enterprise-desc {
    font-size: 1.05rem;
    color: var(--text-slate);
}

.enterprise-right .price {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.enterprise-list {
    margin-bottom: 0;
}

/* 9. Testimonials */
.testimonial-section {
    padding: 6rem 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.testimonial-card {
    background: var(--surface-paper);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-slate);
}

.quote-icon {
    font-family: 'Google Sans', sans-serif;
    font-size: 4rem;
    line-height: 1;
    color: var(--highlight-amber);
    margin-bottom: 1rem;
}

.quote {
    font-size: 1.25rem;
    color: var(--text-ink);
    margin-bottom: 2rem;
    font-style: italic;
}

.author-name {
    font-weight: 600;
    color: var(--brand-blue);
    margin-bottom: 0.25rem;
}

.author-title {
    font-size: 0.9rem;
}

/* 10. CTA Band */
.cta-band {
    background-color: var(--brand-blue);
    color: var(--surface-paper);
    padding: 6rem 0;
    text-align: center;
}

.cta-band h2 {
    color: var(--surface-paper);
    margin-bottom: 1rem;
}

.cta-band p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

/* 11. Footer */
footer {
    background-color: var(--text-ink);
    color: var(--surface-paper);
    padding: 6rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.footer-brand .logo {
    color: var(--surface-paper);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    max-width: 250px;
    margin-bottom: 1rem;
}

.hq {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.hq::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--highlight-amber);
    border-radius: 50%;
}

.footer-links h4 {
    color: var(--surface-paper);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    display: block;
    color: rgba(252, 250, 246, 0.6);
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--surface-paper);
}

.footer-bottom {
    border-top: 1px solid rgba(252, 250, 246, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(252, 250, 246, 0.4);
    font-size: 0.85rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 8rem 0 4rem;
    }
    .hero-diagram {
        flex-direction: column;
        height: auto;
        gap: 2rem;
    }
    .diagram-inputs, .diagram-outputs {
        width: 100%;
    }
    .diagram-engine {
        width: 100%;
        padding: 2rem 0;
    }
    .connection-lines {
        display: none; /* Simplify on mobile */
    }
}

/* ==========================================================================
   Modal & Form Styles
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(22, 36, 28, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--surface-paper);
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-slate);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background-color: var(--surface-mint);
    color: var(--text-ink);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--brand-blue);
}

.modal-header p {
    color: var(--text-slate);
    font-size: 0.95rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text-ink);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-slate);
    border-radius: var(--radius-md);
    background-color: var(--bg-primary);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-ink);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(10, 54, 157, 0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23475569%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%226%209%2012%2015%2018%209%22%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

body.modal-open {
    overflow: hidden;
}

.btn-step {
    display: inline-block;
    background-color: #0f172a;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    margin-top: 1rem;
}

.btn-step:hover {
    background-color: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    color: #ffffff;
}

/* ==========================================================================
   Wearables API Page Styles
   ========================================================================== */

.wearables-hero {
    padding: 6rem 0 3rem 0;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 700;
}

.wearables-hero .hero-subtitle {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-slate);
}

.compliance-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    opacity: 0.6;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-ink);
}

.wearables-diagram-sec {
    padding: 2rem 0;
}

.wearables-hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
}

.wearables-features {
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(2, 37, 75, 0.08);
    border-color: rgba(2, 37, 75, 0.15);
}

.feature-card .icon-box {
    width: 48px;
    height: 48px;
    background: var(--surface-soft-blue);
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.5;
}

.wearables-faq {
    padding: 5rem 0;
    background: #ffffff;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem 0;
    background: none;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-ink);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    color: var(--brand-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-slate);
}

/* ==========================================================================
   Custom Animated Diagram (Wearables Flow)
   ========================================================================== */
.custom-diagram-wrapper {
    padding: 6rem 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.custom-diagram-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    height: 600px; 
}

.cd-svg-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cd-bg-path {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
}

.cd-fg-path {
    fill: none;
    stroke: var(--brand-blue);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 10 150;
    animation: cd-flow 2s linear infinite;
    opacity: 0.8;
}

@keyframes cd-flow {
    0% { stroke-dashoffset: 160; }
    100% { stroke-dashoffset: 0; }
}

.cd-content-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 300px 1fr 400px;
    z-index: 2;
    pointer-events: none;
}

.cd-left-col, .cd-center-col, .cd-right-col {
    pointer-events: auto;
}

/* Left Col Items */
.cd-left-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-right: 20px;
}

.cd-source-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
}

.cd-source-title {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--brand-blue);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.cd-pill {
    background: #ffffff;
    border-radius: 2rem;
    padding: 0.5rem;
    display: flex;
    gap: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
}

.cd-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-ink);
}

/* Center Col */
.cd-center-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cd-hub-node {
    background: #ffffff;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #e2e8f0;
}

.cd-hub-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--brand-blue);
    margin-bottom: 1rem;
}

.cd-hub-subtitle {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--brand-blue);
    margin-top: 1rem;
}

/* Right Col */
.cd-right-col {
    position: relative;
}

.cd-dest-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
}

.cd-dest-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-ink);
    margin-bottom: 1rem;
}

.cd-dest-mobile {
    top: 100px;
    left: 20px;
    z-index: 3;
}

.cd-dest-desktop {
    top: 180px;
    left: 100px;
    z-index: 2;
}

.cd-mobile {
    width: 140px;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    border: 4px solid #fff;
}

.cd-desktop {
    width: 320px;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    border: 4px solid #fff;
}

/* Responsive */
@media (max-width: 1024px) {
    .custom-diagram-wrapper { 
        display: none; /* In a real app, we'd collapse this to a vertical stack or scale it down */
    } 
}
/* --- Mobile Responsiveness Enhancements --- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--brand-blue);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-actions { display: none; }
    
    .nav-links {
        display: flex !important;
        position: fixed;
        top: 0; left: 0; right: 0; height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        font-size: 1.5rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 1000;
        backdrop-filter: blur(10px);
    }

    .nav-links.mobile-active {
        opacity: 1;
        pointer-events: all;
    }
}







.mobile-only-btn { display: none !important; }
@media(max-width: 768px) { .mobile-only-btn { display: inline-flex !important; margin-top: 1rem; } }



@media (max-width: 1024px) {
    /* Hide complex desktop diagrams on mobile */
    .hero-diagram, .hero-diagram-col {
        display: none !important;
    }
    
    
    
    
    
    
    /* Better global padding for mobile */
    .container {
        padding: 0 1.5rem;
    }
}

/* --- Ultra-Minimal Mobile Tweaks --- */
@media (max-width: 768px) {
    .hero {
        padding: 7rem 0 3rem !important;
        text-align: left; /* Keep it native and readable */
    }
    
    .hero-content {
        margin-bottom: 0 !important;
    }
    
    .section {
        padding: 4rem 0 !important;
    }

    /* Tighten grids */
    .segments-grid, .pricing-grid, .testimonial-grid {
        gap: 1.5rem !important;
    }

    /* Keep container padding healthy but not too wide */
    .container {
        padding: 0 1.5rem !important;
    }
}

@media (max-width: 1024px) { .custom-diagram-wrapper { display: none !important; } }

@media (max-width: 1024px) { .health-360-diagram { display: none !important; } }

@media (max-width: 768px) { .security-badges { grid-template-columns: 1fr !important; } .security-wall { padding: 2rem !important; } }


