/* ========================================
   CSS VARIABLES - SHEQhub Brand System
   ======================================== */
:root {
    --teal-darkest: #051E26;
    --teal-dark: #0A2E3A;
    --teal-mid: #0D3B47;
    --teal-base: #134E5E;
    --teal-light: #1A6B7A;
    --cyan-bright: #00D4FF;
    --cyan-glow: #00E5FF;
    --cyan-muted: #5EC4D4;
    --white: #FFFFFF;
    --off-white: #F4F7F8;
    --gray-light: #E8EDEF;
    --gray-mid: #94A3AB;
    --gray-dark: #4A5C64;
    --text-dark: #1A2A30;
    --text-body: #3A4E58;
    --accent-warning: #F5A623;
    --accent-success: #2ECC71;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--text-body);
    line-height: 1.7;
    font-size: 16px;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan-bright); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--cyan-glow); }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--text-dark); line-height: 1.3; }

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   LAYOUT UTILITIES
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.section-pad { padding: 80px 0; }
.text-center { text-align: center; }
.section-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--cyan-bright);
    margin-bottom: 12px;
    display: block;
}
.section-title {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 20px;
}
.section-subtitle {
    font-size: 18px;
    color: var(--gray-dark);
    max-width: 680px;
    margin: 0 auto 48px;
}

/* ========================================
   TOP BAR
   ======================================== */
.topbar {
    background: var(--teal-darkest);
    color: var(--gray-mid);
    font-size: 13px;
    padding: 8px 0;
}
.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.topbar a { color: var(--cyan-muted); }
.topbar a:hover { color: var(--cyan-bright); }
.topbar-contact { display: flex; gap: 20px; align-items: center; }
.topbar-contact a { display: inline-flex; align-items: center; gap: 6px; }
.topbar-icon { font-size: 22px; line-height: 1; }

/* ========================================
   HEADER / NAV
   ======================================== */
.header {
    background: var(--teal-dark);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0,212,255,0.1);
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-family: var(--font-body);
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}
.logo span { color: var(--white); }
.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
}
.nav-links a {
    color: var(--gray-light);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--cyan-bright); }
.nav-links .btn-nav {
    background: transparent;
    color: var(--cyan-bright);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid rgba(0,212,255,0.3);
    transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.nav-links .btn-nav:hover {
    border-color: var(--cyan-bright);
    color: var(--cyan-glow);
    transform: translateY(-1px);
}
.nav-links .btn-login {
    background: linear-gradient(135deg, var(--teal-light), #2a8a9a);
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    transition: background 0.2s, transform 0.15s;
}
.nav-links .btn-login:hover {
    background: linear-gradient(135deg, #2a8a9a, var(--teal-light));
    color: var(--white);
    transform: translateY(-1px);
}
/* Nav dropdown */
.nav-dropdown {
    position: relative;
}
.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-chevron {
    font-size: 10px;
    transition: transform 0.25s ease;
}
.nav-dropdown:hover .nav-chevron {
    transform: rotate(180deg);
}
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 12px;
    list-style: none;
    z-index: 110;
}
.nav-dropdown:hover .nav-dropdown-menu {
    display: block;
}
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-bottom-color: var(--teal-mid);
}
.nav-dropdown-menu li {
    background: var(--teal-mid);
    border-bottom: 1px solid rgba(0,212,255,0.08);
}
.nav-dropdown-menu li:first-child {
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.nav-dropdown-menu li:last-child {
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    border-bottom: none;
}
.nav-dropdown-menu a {
    display: block;
    padding: 12px 20px;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-light);
    transition: background 0.2s, color 0.2s;
}
.nav-dropdown-menu a:hover {
    background: rgba(0,212,255,0.1);
    color: var(--cyan-bright);
}

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: 0.3s; }

/* ========================================
   HERO
   ======================================== */
.hero {
    background: linear-gradient(135deg, var(--teal-darkest) 0%, var(--teal-mid) 50%, var(--teal-dark) 100%);
    color: var(--white);
    padding: 72px 0 60px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero h1 {
    font-size: clamp(30px, 4vw, 44px);
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.15;
}
.hero h1 .highlight {
    color: var(--cyan-bright);
}
.hero .hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(18px, 2.2vw, 24px);
    color: rgba(255,255,255,0.9);
    font-weight: 400;
    margin-bottom: 22px;
    line-height: 1.4;
    letter-spacing: 0.2px;
}
.hero-text {
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 30px;
    max-width: 500px;
    line-height: 1.65;
}
.hero-cta-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
    background: var(--cyan-bright);
    color: var(--teal-darkest);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    background: var(--cyan-glow);
    color: var(--teal-darkest);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,212,255,0.3);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid rgba(255,255,255,0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.2s, color 0.2s;
    cursor: pointer;
}
.btn-outline:hover {
    border-color: var(--cyan-bright);
    color: var(--cyan-bright);
}

/* Hero product cards */
.hero-stats-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-body);
    font-size: clamp(14px, 1.6vw, 18px);
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    margin-bottom: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
}
.hero-stats-heading::before,
.hero-stats-heading::after {
    content: '';
    flex: 1;
    height: 1px;
}
.hero-stats-heading::before {
    background: linear-gradient(to right, transparent, rgba(0,212,255,0.35));
}
.hero-stats-heading::after {
    background: linear-gradient(to left, transparent, rgba(0,212,255,0.35));
}
.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 14px;
}
.hero-stats > * {
    min-height: 200px;
}
a.stat-card {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}
.stat-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 20px 18px;
    backdrop-filter: blur(8px);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0,212,255,0.3);
    box-shadow: 0 8px 24px rgba(0,212,255,0.1);
}
.stat-card .stat-icon {
    width: 38px; height: 38px;
    background: rgba(0,212,255,0.12);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 10px;
    font-size: 18px;
}
.stat-card h3 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}
.stat-card p {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    line-height: 1.5;
    flex-grow: 1;
}
.stat-read-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--cyan-bright);
    opacity: 0.55;
    transition: opacity 0.25s ease;
}
.stat-card:hover .stat-read-more {
    opacity: 1;
}

/* Hero image in stats grid */
.hero-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.hero-image:hover {
    transform: translateY(-4px);
    border-color: rgba(0,212,255,0.3);
    box-shadow: 0 8px 24px rgba(0,212,255,0.1);
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ========================================
   QUOTE BANNER
   ======================================== */
.quote-banner {
    background: linear-gradient(90deg, var(--teal-base), var(--teal-light));
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}
.quote-banner blockquote {
    font-family: var(--font-display);
    font-size: clamp(20px, 3vw, 28px);
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 12px;
}
.quote-banner cite {
    font-family: var(--font-body);
    font-size: 14px;
    font-style: normal;
    color: rgba(255,255,255,0.65);
}

/* ========================================
   PRODUCT SECTIONS
   ======================================== */
.product-section { background: var(--white); }
.product-section.alt {
    background: linear-gradient(135deg, var(--teal-mid) 0%, var(--teal-light) 100%);
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}

/* Value proposition cards (Why H&S / Why QMS) */
.value-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.value-card {
    background: linear-gradient(135deg, var(--teal-darkest) 0%, var(--teal-mid) 100%);
    border: 1px solid rgba(0,212,255,0.15);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.product-section.alt .section-title { color: var(--white); }
.product-section.alt .section-subtitle { color: rgba(255,255,255,0.7); }
.product-section.alt .section-label { color: var(--cyan-glow); }
.product-section.alt .value-cards-heading { color: var(--white); }
.product-section.alt .value-card {
    background: linear-gradient(135deg, var(--teal-darkest) 0%, var(--teal-mid) 100%);
    border: 1px solid rgba(0,212,255,0.15);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.product-section.alt .product-detail {
    background: linear-gradient(135deg, var(--teal-darkest) 0%, var(--teal-mid) 100%);
    border: 1px solid rgba(0,212,255,0.15);
    order: -1;
}
.product-section.alt .product-features-title { color: var(--white); }
.value-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    transform: translateY(-2px);
}
.value-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
}
.value-card-icon {
    font-size: 24px;
    flex-shrink: 0;
    line-height: 1;
}
.value-card h4 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}
.value-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    line-height: 1.55;
    margin: 0;
}

/* Product description panel */
.product-detail {
    background: linear-gradient(135deg, var(--teal-darkest) 0%, var(--teal-mid) 100%);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    color: var(--white);
}
.product-detail h3 {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}
.product-detail p {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 20px;
}
.product-feature-list {
    list-style: none;
    padding: 0;
}
.product-feature-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
}
.product-feature-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--cyan-bright);
    font-weight: 700;
}
.product-cta {
    margin-top: 32px;
    text-align: center;
}

/* "Why" heading above value cards */
.value-cards-heading {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

/* Product features panel (below the product grid) */
.product-features-wrap {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
}
.product-features-title {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 20px;
}
.product-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.pf-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 22px 18px;
    border: 1px solid var(--gray-light);
    text-align: center;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.product-section.alt .pf-card {
    background: linear-gradient(135deg, var(--teal-darkest) 0%, var(--teal-mid) 100%);
    border: 1px solid rgba(0,212,255,0.15);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.product-section.alt .pf-card h4 {
    color: var(--white);
}
.product-section.alt .pf-card p {
    color: rgba(255,255,255,0.75);
}
.product-section.alt .pf-icon {
    background: rgba(0,212,255,0.15);
}
.pf-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.pf-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--teal-base), var(--teal-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 22px;
}
.pf-card h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.pf-card p {
    font-size: 13px;
    color: var(--gray-dark);
    line-height: 1.55;
}

/* Hidden extra features */
.product-features-extra {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}
.product-features-extra.expanded {
    max-height: 1000px;
}
.product-features-extra .product-features-grid {
    padding-top: 16px;
}

/* Fade overlay toggle for features */
.features-toggle-wrap {
    position: relative;
    margin-top: -40px;
    padding-top: 40px;
    background: linear-gradient(to bottom, transparent 0%, var(--white) 70%);
    text-align: center;
    z-index: 2;
    transition: margin-top 0.3s ease, padding-top 0.3s ease;
}
.product-section.alt .features-toggle-wrap {
    background: none;
}
.product-section.alt .features-toggle-btn {
    color: var(--cyan-bright);
    border-color: rgba(0,212,255,0.3);
}
.product-section.alt .features-toggle-btn:hover {
    border-color: var(--cyan-bright);
    background: rgba(0,212,255,0.08);
}
.features-toggle-wrap.expanded {
    margin-top: 0;
    padding-top: 16px;
    background: none;
}
.features-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 28px;
    background: none;
    border: 1px solid var(--gray-light);
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--teal-base);
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.features-toggle-btn:hover {
    color: var(--cyan-bright);
    border-color: var(--cyan-muted);
    background: rgba(0,212,255,0.04);
}
.toggle-arrow {
    font-size: 11px;
    transition: transform 0.3s ease;
    display: inline-block;
}
.features-toggle-btn.expanded .toggle-arrow {
    transform: rotate(180deg);
}

/* Product description text in modal */
.product-description {
    font-size: 13px;
    color: var(--gray-dark);
    margin-bottom: 20px;
    line-height: 1.5;
}

/* ========================================
   PLATFORM / HOW IT WORKS SECTION
   ======================================== */
.platform-section { background: var(--off-white); }

/* Module cards row */
.platform-modules {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background: var(--white);
    border: 2px solid var(--teal-mid);
    border-radius: var(--radius-lg);
    padding: 32px 40px;
    max-width: 720px;
    margin: 0 auto;
    position: relative;
}
.platform-modules-label {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 800;
    color: var(--teal-darkest);
    letter-spacing: -0.5px;
}
.platform-modules-label span {
    color: var(--cyan-bright);
}
.platform-modules-row {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 24px;
    width: 100%;
}
.platform-module {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--teal-darkest) 0%, var(--teal-mid) 100%);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    flex: 1 1 0;
    min-height: 140px;
    color: var(--white);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
a.platform-module {
    text-decoration: none;
    color: var(--white);
    cursor: pointer;
}
.platform-module:hover {
    transform: scale(1.06);
    box-shadow: 0 8px 28px rgba(0,0,0,0.18);
    z-index: 1;
}
.platform-module-icon {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
}
.platform-module-label {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
}
.platform-divider {
    font-family: var(--font-body);
    font-size: 28px;
    font-weight: 800;
    color: var(--cyan-bright);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.platform-badge {
    flex-basis: 100%;
    text-align: center;
    margin-top: 12px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--teal-darkest);
    background: rgba(0,212,255,0.15);
    border: 1px solid rgba(0,212,255,0.3);
    border-radius: 50px;
    padding: 10px 28px;
}

/* How It Works section */
.how-section { background: var(--white); }

/* How It Works steps */
.how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.how-step {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-md);
    padding: 28px 22px;
    text-align: center;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.how-step:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.how-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--teal-darkest) 0%, var(--teal-mid) 100%);
    border-radius: 50%;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 16px;
}
.how-step h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.how-step p {
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 1.6;
}

/* ========================================
   ISO 13485 CALLOUT
   ======================================== */
.iso-callout {
    background: var(--off-white);
    text-align: center;
}
.iso-callout h2 {
    color: var(--text-dark);
    margin-bottom: 16px;
}
.iso-callout p {
    font-size: 17px;
    color: var(--gray-dark);
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--teal-darkest) 0%, var(--teal-mid) 100%);
    color: var(--white);
    text-align: center;
}
.cta-section h2 {
    color: var(--white);
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 16px;
}
.cta-section p {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px;
}
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-contact {
    margin-top: 32px;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}
.cta-contact a { color: var(--cyan-bright); }

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--teal-darkest);
    color: var(--gray-mid);
    padding: 40px 0 24px;
    text-align: center;
    font-size: 14px;
}
.footer-brand {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 22px;
    color: var(--white);
    margin-bottom: 12px;
}
.footer-brand span { color: var(--cyan-bright); }
.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 16px 0;
}
.footer-links a {
    color: var(--gray-mid);
    font-size: 14px;
    display: flex; align-items: center; gap: 6px;
}
.footer-links a:hover { color: var(--cyan-bright); }
.footer-copy { margin-top: 20px; font-size: 13px; color: rgba(148,163,171,0.6); }

/* ========================================
   INFO SESSION NOTICE BAR
   ======================================== */
.info-session-bar {
    background: linear-gradient(90deg, var(--teal-base), var(--teal-light));
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
    text-align: center;
    position: relative;
    z-index: 50;
}
.info-session-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.info-session-bar span {
    color: rgba(255,255,255,0.85);
}
.info-session-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--cyan-bright);
    color: var(--teal-darkest);
    padding: 5px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    transition: background 0.2s, transform 0.15s;
}
.info-session-link:hover {
    background: var(--cyan-glow);
    color: var(--teal-darkest);
    transform: translateY(-1px);
}

/* ========================================
   GENERAL INFORMATION SESSIONS SECTION
   ======================================== */
.info-sessions-section {
    background: var(--off-white);
}
.info-sessions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.info-sessions-detail {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--gray-light);
}
.info-sessions-detail h3 {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}
.info-sessions-detail p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 16px;
}
.info-sessions-detail p:last-child {
    margin-bottom: 0;
}
.info-sessions-schedule {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--gray-light);
}
.info-sessions-schedule h3 {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}
.session-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.session-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: var(--off-white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-light);
    transition: border-color 0.2s;
}
.session-card:hover {
    border-color: var(--cyan-muted);
}
.session-card-info {
    flex: 1;
    min-width: 0;
}
.session-heading {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 2px;
}
.session-description {
    font-size: 12px;
    color: var(--gray-mid);
    margin-bottom: 6px;
    line-height: 1.4;
}
.session-date {
    font-weight: 600;
    font-size: 13px;
    color: var(--text-dark);
}
.session-time {
    font-size: 12px;
    color: var(--gray-dark);
    font-weight: 500;
    white-space: nowrap;
}

/* Session Join Button (used on each session card) */
.session-join-btn {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 50px;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}
.session-join-btn.active {
    background: var(--cyan-bright);
    color: var(--teal-darkest);
}
.session-join-btn.active:hover {
    background: var(--cyan-glow);
    color: var(--teal-darkest);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,212,255,0.25);
}
.session-join-btn.locked {
    background: var(--gray-light);
    color: var(--gray-mid);
    cursor: default;
}

.session-note {
    margin-top: 16px;
    font-size: 12px;
    color: var(--gray-mid);
    line-height: 1.5;
}

/* Next session - full width dark blue block */
.next-session-block {
    background: linear-gradient(135deg, var(--teal-darkest) 0%, var(--teal-mid) 100%);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.next-session-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cyan-bright);
    margin-bottom: 6px;
}
.next-session-heading {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}
.next-session-description {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 8px;
    line-height: 1.4;
}
.next-session-date {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}
.next-session-time {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
}
.next-session-action .session-join-btn {
    font-size: 14px;
    padding: 10px 24px;
}
.next-session-action .session-join-btn.active {
    box-shadow: 0 4px 16px rgba(0,212,255,0.3);
}
.next-session-action .session-join-btn.locked {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.4);
}

/* ========================================
   SESSION REGISTRATION MODAL
   ======================================== */
.session-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5, 30, 38, 0.7);
    backdrop-filter: blur(4px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.session-modal-overlay.open {
    display: flex;
}
.session-modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    max-width: 460px;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: sessionModalIn 0.25s ease;
}
@keyframes sessionModalIn {
    from { opacity: 0; transform: translateY(16px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.session-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--gray-mid);
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    transition: color 0.2s;
}
.session-modal-close:hover {
    color: var(--text-dark);
}
.session-modal-step h3 {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.session-modal-step > p {
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 20px;
}
.session-form-group {
    margin-bottom: 16px;
}
.session-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.session-form-group label .required {
    color: #e74c3c;
}
.session-form-group input {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.session-form-group input:focus {
    border-color: var(--cyan-bright);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.12);
}
.session-form-group input.readonly-field {
    background: var(--off-white);
    color: var(--gray-dark);
    cursor: default;
}
.session-form-group input.field-error {
    border-color: #e74c3c;
}
.session-field-error {
    font-size: 12px;
    color: #e74c3c;
    margin-top: 4px;
    min-height: 0;
}
.session-submit-btn {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
    position: relative;
}
.session-submit-btn .btn-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(5, 30, 38, 0.2);
    border-top-color: var(--teal-darkest);
    border-radius: 50%;
    animation: sessionSpin 0.6s linear infinite;
    display: inline-block;
}
@keyframes sessionSpin {
    to { transform: rotate(360deg); }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; gap: 36px; }
    .hero-content { text-align: center; }
    .hero-text { margin-left: auto; margin-right: auto; }
    .hero-cta-group { justify-content: center; }
    .hero-stats { max-width: 520px; margin: 0 auto; }
    .product-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }

    /* Header / Nav - collapse to hamburger */
    .header { padding: 12px 0; }
    .logo { font-size: 24px; }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--teal-dark);
        padding: 16px 24px;
        gap: 14px;
        border-bottom: 2px solid rgba(0,212,255,0.15);
    }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: 15px; padding: 4px 0; }
    /* Mobile dropdown: inline expand instead of absolute */
    .nav-dropdown { position: static; }
    .nav-dropdown:hover .nav-dropdown-menu { display: none; }
    .nav-dropdown-menu.open { display: block !important; }
    .nav-dropdown-menu {
        position: static;
        transform: none;
        padding-top: 0;
        padding-left: 16px;
        margin-top: 6px;
    }
    .nav-dropdown-menu::before { display: none; }
    .nav-dropdown-menu li {
        background: transparent;
        border-bottom: none;
        border-radius: 0;
    }
    .nav-dropdown-menu a {
        padding: 6px 0;
        font-size: 14px;
        color: rgba(255,255,255,0.6);
    }
    .nav-dropdown-menu a:hover {
        background: transparent;
        color: var(--cyan-bright);
    }
    .nav-chevron {
        transition: transform 0.25s ease;
    }
    .nav-dropdown.open .nav-chevron {
        transform: rotate(180deg);
    }
    .nav-links .btn-login {
        display: inline-block;
        text-align: center;
        padding: 10px 20px;
        border-radius: 50px;
        font-size: 14px;
        margin-top: 4px;
    }
    .nav-links .btn-nav {
        display: inline-block;
        text-align: center;
        padding: 10px 20px;
        font-size: 14px;
        margin-top: 2px;
    }
    .nav-toggle { display: block; }

    /* Info session bar */
    .info-session-bar { font-size: 13px; }

    /* Info sessions section */
    .info-sessions-grid { grid-template-columns: 1fr; gap: 24px; }
    .next-session-block { flex-direction: column; text-align: center; padding: 24px; }

    /* Session modal */
    .session-modal-overlay { padding: 20px; }
}

/* ---------- Tablet / Small desktop ---------- */
@media (max-width: 768px) {
    /* Global spacing */
    .container { padding: 0 20px; }
    .section-pad { padding: 48px 0; }
    .section-subtitle { font-size: 15px; margin-bottom: 28px; }
    .section-title { margin-bottom: 14px; }
    .section-label { font-size: 12px; letter-spacing: 2px; margin-bottom: 10px; }

    /* Topbar */
    .topbar { font-size: 12px; padding: 6px 0; }
    .topbar .container { justify-content: center; text-align: center; }
    .topbar-contact { gap: 16px; }
    .topbar-icon { font-size: 23px; }

    /* Buttons (global) */
    .btn-primary, .btn-outline { padding: 10px 22px; font-size: 14px; }

    /* Hero */
    .hero { padding: 36px 0 32px; }
    .hero-content { text-align: center; }
    .hero h1 { font-size: clamp(24px, 6vw, 32px); margin-bottom: 6px; }
    .hero .hero-subtitle { font-size: clamp(14px, 3vw, 17px); margin-bottom: 14px; }
    .hero-text { font-size: 14px; margin-left: auto; margin-right: auto; margin-bottom: 22px; line-height: 1.6; }
    .hero-cta-group { justify-content: center; gap: 10px; }
    .hero-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
    .hero-stats-heading { font-size: 12px; gap: 10px; letter-spacing: 1.2px; margin-bottom: 10px; }
    .hero-stats > * { min-height: 160px; }
    .stat-card { padding: 14px 12px; }
    .stat-card .stat-icon { width: 32px; height: 32px; font-size: 16px; margin-bottom: 8px; border-radius: 8px; }
    .stat-card h3 { font-size: 13px; margin-bottom: 4px; }
    .stat-card p { font-size: 12px; line-height: 1.4; }
    .stat-read-more { font-size: 11px; margin-top: 6px; }

    /* Quote banner */
    .quote-banner { padding: 28px 0; }
    .quote-banner blockquote { font-size: clamp(16px, 4vw, 22px); }
    .quote-banner cite { font-size: 12px; }

    /* Product sections */
    .product-grid { grid-template-columns: 1fr; gap: 28px; }
    .product-detail { padding: 28px 24px; }
    .product-detail h3 { font-size: 18px; }
    .product-detail p { font-size: 14px; }
    .product-feature-list li { font-size: 13px; }
    .product-cta { margin-top: 24px; }
    .value-card { padding: 14px 16px; }
    .value-card-icon { font-size: 22px; }
    .value-card h4 { font-size: 14px; }
    .value-card p { font-size: 12px; }

    /* Product features panel */
    .value-cards-heading { font-size: 18px; }
    .product-features-title { font-size: 18px; margin-bottom: 16px; }
    .product-features-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .pf-card { padding: 18px 14px; }
    .pf-icon { width: 38px; height: 38px; font-size: 18px; margin-bottom: 10px; }
    .pf-card h4 { font-size: 13px; }
    .pf-card p { font-size: 12px; }
    .features-toggle-btn { font-size: 13px; }

    /* Platform / How It Works */
    .platform-modules { padding: 24px 28px; gap: 14px; }
    .platform-modules-row { gap: 16px; }
    .platform-modules-label { font-size: 20px; }
    .platform-module { padding: 20px 16px; min-height: 100px; }
    .platform-module-icon { font-size: 28px; }
    .platform-module-label { font-size: 14px; }
    .platform-divider { font-size: 24px; }
    .platform-badge { font-size: 13px; padding: 8px 22px; }
    .how-steps { gap: 16px; }
    .how-step { padding: 22px 18px; }
    .how-step-number { width: 40px; height: 40px; font-size: 20px; }
    .how-step h4 { font-size: 15px; }
    .how-step p { font-size: 13px; }

    /* ISO callout */
    .iso-callout p { font-size: 15px; }

    /* CTA */
    .cta-section p { font-size: 15px; margin-bottom: 28px; }
    .cta-contact { font-size: 13px; margin-top: 24px; }

    /* Footer */
    .footer { padding: 32px 0 18px; }
    .footer-brand { font-size: 20px; margin-bottom: 8px; }
    .footer p { font-size: 13px; }
    .footer-links { gap: 16px; flex-wrap: wrap; }
    .footer-links a { font-size: 13px; }
    .footer-copy { font-size: 11px; margin-top: 14px; }

    /* Info session bar */
    .info-session-bar { font-size: 12px; padding: 8px 0; }
    .info-session-bar .container { gap: 8px; }
    .info-session-link { font-size: 11px; padding: 4px 12px; }

    /* Info sessions section */
    .info-sessions-grid { grid-template-columns: 1fr; gap: 20px; }
    .info-sessions-detail { padding: 24px 20px; }
    .info-sessions-detail h3 { font-size: 18px; }
    .info-sessions-detail p { font-size: 14px; }
    .info-sessions-schedule { padding: 24px 20px; }
    .info-sessions-schedule h3 { font-size: 18px; }
    .session-card { padding: 12px 14px; gap: 10px; flex-wrap: wrap; }
    .session-heading { font-size: 13px; }
    .session-description { font-size: 11px; }
    .session-date { font-size: 12px; }
    .session-time { font-size: 11px; }
    .session-join-btn { font-size: 11px; padding: 6px 12px; }
    .next-session-block { padding: 20px; margin-top: 20px; flex-direction: column; text-align: center; gap: 16px; }
    .next-session-heading { font-size: 16px; }
    .next-session-description { font-size: 12px; }
    .next-session-date { font-size: 14px; }
    .next-session-action .session-join-btn { font-size: 13px; padding: 9px 20px; }

    /* Session modal */
    .session-modal { padding: 28px 24px; }
    .session-modal-step h3 { font-size: 18px; }
    .session-modal-step > p { font-size: 13px; }
}

/* ---------- Small phones ---------- */
@media (max-width: 480px) {
    /* Global spacing */
    .container { padding: 0 16px; }
    .section-pad { padding: 36px 0; }
    .section-label { font-size: 11px; letter-spacing: 1.8px; margin-bottom: 8px; }
    .section-title { font-size: clamp(22px, 6vw, 28px); margin-bottom: 10px; }
    .section-subtitle { font-size: 13px; margin-bottom: 20px; }

    /* Topbar */
    .topbar { font-size: 11px; padding: 5px 0; }
    .topbar .container { flex-direction: column; gap: 4px; }
    .topbar-contact { gap: 12px; }

    /* Header */
    .header { padding: 10px 0; }
    .logo { font-size: 22px; }

    /* Buttons (global) */
    .btn-primary, .btn-outline { padding: 10px 20px; font-size: 13px; }

    /* Hero */
    .hero { padding: 28px 0 24px; }
    .hero h1 { font-size: clamp(21px, 6.5vw, 26px); line-height: 1.2; }
    .hero .hero-subtitle { font-size: 13px; margin-bottom: 12px; }
    .hero-text { font-size: 13px; margin-bottom: 18px; line-height: 1.55; }
    .hero-cta-group { flex-direction: column; align-items: center; gap: 8px; }
    .hero-cta-group .btn-primary,
    .hero-cta-group .btn-outline { width: auto; justify-content: center; }
    .hero-stats { grid-template-columns: 1fr 1fr; gap: 8px; }
    .hero-stats-heading { font-size: 10px; gap: 6px; letter-spacing: 1px; margin-bottom: 6px; }
    .hero-stats > * { min-height: 140px; }
    .stat-card { padding: 10px 10px; border-radius: var(--radius-sm); }
    .stat-card .stat-icon { width: 28px; height: 28px; font-size: 14px; margin-bottom: 6px; border-radius: 7px; }
    .stat-card h3 { font-size: 12px; }
    .stat-card p { font-size: 10px; line-height: 1.35; }
    .stat-read-more { font-size: 9px; margin-top: 4px; }

    /* Quote banner */
    .quote-banner { padding: 22px 0; }
    .quote-banner blockquote { font-size: clamp(15px, 4vw, 18px); }
    .quote-banner cite { font-size: 11px; }

    /* Product sections */
    .value-card { padding: 12px 14px; }
    .value-card-icon { font-size: 20px; }
    .value-card h4 { font-size: 13px; }
    .value-card p { font-size: 11px; }
    .product-detail { padding: 24px 20px; }
    .product-detail h3 { font-size: 16px; }
    .product-detail p { font-size: 13px; }
    .product-feature-list li { font-size: 12px; margin-bottom: 8px; }
    .product-cta { margin-top: 20px; }

    /* Product features panel */
    .value-cards-heading { font-size: 16px; }
    .product-features-title { font-size: 16px; margin-bottom: 14px; }
    .product-features-grid { grid-template-columns: 1fr; gap: 10px; }
    .pf-card { padding: 16px 14px; }
    .pf-icon { width: 34px; height: 34px; font-size: 16px; margin-bottom: 8px; }
    .pf-card h4 { font-size: 12px; }
    .pf-card p { font-size: 11px; }
    .features-toggle-btn { font-size: 12px; margin-top: 14px; }

    /* Platform / How It Works */
    .platform-modules { padding: 22px 18px; gap: 10px; }
    .platform-modules-row { flex-direction: column; align-items: center; gap: 12px; }
    .platform-modules-label { font-size: 18px; }
    .platform-module { padding: 18px 14px; width: 100%; min-height: 90px; }
    .platform-module-icon { font-size: 26px; margin-bottom: 8px; }
    .platform-module-label { font-size: 13px; }
    .platform-divider { font-size: 22px; align-self: center; }
    .platform-badge { font-size: 12px; padding: 8px 18px; }
    .how-steps { grid-template-columns: 1fr; gap: 12px; }
    .how-step { padding: 20px 16px; }
    .how-step-number { width: 36px; height: 36px; font-size: 18px; margin-bottom: 12px; }
    .how-step h4 { font-size: 14px; }
    .how-step p { font-size: 12px; }

    /* ISO callout */
    .iso-callout p { font-size: 13px; }

    /* CTA */
    .cta-section h2 { font-size: clamp(22px, 6vw, 28px); }
    .cta-section p { font-size: 13px; margin-bottom: 22px; }
    .cta-buttons { flex-direction: column; align-items: center; gap: 8px; }
    .cta-buttons .btn-primary,
    .cta-buttons .btn-outline { width: auto; justify-content: center; }
    .cta-contact { font-size: 11px; margin-top: 20px; }

    /* Footer */
    .footer { padding: 24px 0 14px; }
    .footer-brand { font-size: 18px; margin-bottom: 6px; }
    .footer p { font-size: 12px; }
    .footer-links { gap: 12px; }
    .footer-links a { font-size: 12px; }
    .footer-copy { font-size: 10px; margin-top: 12px; }

    /* Info session bar */
    .info-session-bar { font-size: 11px; padding: 7px 0; }
    .info-session-bar .container { flex-direction: column; gap: 6px; }
    .info-session-link { font-size: 10px; padding: 4px 10px; }

    /* Info sessions section */
    .info-sessions-detail { padding: 20px 16px; }
    .info-sessions-detail h3 { font-size: 16px; }
    .info-sessions-detail p { font-size: 13px; }
    .info-sessions-schedule { padding: 20px 16px; }
    .info-sessions-schedule h3 { font-size: 16px; }
    .session-card { padding: 10px 12px; gap: 8px; }
    .session-heading { font-size: 12px; }
    .session-description { font-size: 10px; }
    .session-date { font-size: 11px; }
    .session-time { font-size: 10px; }
    .session-join-btn { font-size: 10px; padding: 5px 10px; }
    .session-note { font-size: 11px; }
    .next-session-block { padding: 18px 16px; margin-top: 16px; gap: 12px; border-radius: var(--radius-md); }
    .next-session-label { font-size: 10px; letter-spacing: 1.5px; }
    .next-session-heading { font-size: 15px; }
    .next-session-description { font-size: 11px; }
    .next-session-date { font-size: 13px; }
    .next-session-time { font-size: 12px; }
    .next-session-action .session-join-btn { font-size: 12px; padding: 8px 18px; }

    /* Session modal */
    .session-modal-overlay { padding: 16px; }
    .session-modal { padding: 24px 20px; border-radius: var(--radius-md); }
    .session-modal-close { top: 10px; right: 12px; font-size: 24px; }
    .session-modal-step h3 { font-size: 16px; }
    .session-modal-step > p { font-size: 12px; margin-bottom: 16px; }
    .session-form-group input { padding: 10px 12px; font-size: 13px; }
    .session-form-group label { font-size: 12px; }
}
