*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
}

/* ===== BRAND COLOR PALETTE =====
   Values realigned to match the reference template
   (sierratec-survey-site-complete-v3) exactly, while keeping our own
   variable names so no Blade file or component rule needs to change to
   pick up the new palette - this file is the single point of truth. New
   tokens the reference has that we didn't (--ink-2, --muted-2, --line,
   --line-strong, --surface-2, semantic status colors, --header-h) are
   added under the reference's own names since there's no existing
   equivalent to collide with. */
:root {
    --navy: #0e1726;
    --navy-mid: #243147;
    --navy-light: #243147;
    --teal: #4b8ede;
    --teal-light: #66aaf2;
    --teal-dark: #286fca;
    --teal-darker: #205ca8;
    --teal-pale: #eaf3ff;
    --teal-pale-2: #f5f9ff;
    --gold: #4b8ede;
    --gold-light: #66aaf2;
    --gold-pale: #eaf3ff;
    --slate: #243147;
    --slate-light: #4b8ede;
    --white: #FFFFFF;
    --off-white: #f6f9fd;
    --ink: #0e1726;
    --ink-2: #243147;
    --muted: #617087;
    --muted-2: #8290a4;
    --line: #dce4ef;
    --line-strong: #c7d2e2;
    --surface: #f6f9fd;
    --surface-2: #eef4fb;
    --gray-50: #f6f9fd;
    --gray-100: #eef4fb;
    --gray-200: #dce4ef;
    --gray-400: #8290a4;
    --gray-600: #617087;
    --gray-800: #243147;
    --text-primary: #0e1726;
    --text-secondary: #617087;
    --text-muted: #8290a4;
    --bg-primary: #FFFFFF;
    --bg-secondary: #f6f9fd;
    --bg-dark: #0e1726;
    --border: #dce4ef;
    --success: #0d9b6d;
    --success-pale: #e9fbf4;
    --warning: #e58a05;
    --warning-pale: #fff7e7;
    --danger: #d9485f;
    --danger-pale: #fff0f3;
    --violet: #7558e8;
    --violet-pale: #f2efff;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 4px 14px rgba(14, 23, 38, 0.06);
    --shadow-md: 0 18px 50px rgba(25, 57, 95, 0.12);
    --shadow-lg: 0 28px 80px rgba(25, 57, 95, 0.18);
    --transition: 0.18s ease;
    --container-width: 1180px;
    --header-h: 76px;
}

/* ===== UTILITY ===== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 96px 0;
}

.section-alt {
    background: var(--bg-secondary);
}

.section-dark {
    background: var(--navy);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 100px;
}

.badge-teal {
    background: var(--teal-pale);
    color: var(--teal);
}

.badge-gold {
    background: var(--gold-pale);
    color: #1f3b64;
}

.badge-navy {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
}

.section-label {
    margin-bottom: 16px;
}

.section-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--navy-mid);
    margin-bottom: 16px;
}

.section-heading.light {
    color: var(--white);
}

.section-subheading {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.7;
}

.section-subheading.light {
    color: rgba(255, 255, 255, 0.7);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 800;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    line-height: 1;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-lg {
    min-height: 52px;
    padding: 14px 26px;
    border-radius: var(--radius-md);
    font-size: 15px;
}

.btn-sm {
    min-height: 36px;
    padding: 8px 15px;
    font-size: 12px;
}

.btn-primary {
    background: var(--teal-dark);
    color: var(--white);
    box-shadow: 0 8px 22px rgba(40, 111, 202, 0.22);
}

.btn-primary:hover {
    background: var(--teal-darker);
    box-shadow: 0 12px 28px rgba(40, 111, 202, 0.28);
}

.btn-gold {
    background: var(--teal-dark);
    color: var(--white);
    box-shadow: 0 8px 22px rgba(40, 111, 202, 0.22);
}

.btn-gold:hover {
    background: var(--teal-darker);
    box-shadow: 0 12px 28px rgba(40, 111, 202, 0.28);
}

.btn-outline {
    background: var(--white);
    color: var(--navy);
    border-color: var(--line);
}

.btn-outline:hover {
    border-color: var(--teal);
    color: var(--teal-darker);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}
.featured .btn-outline{
    color: var(--gray-200);
}
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
}

.tag-teal {
    background: var(--teal-pale);
    color: var(--teal);
}

.tag-gold {
    background: var(--gold-pale);
    color: #1f3b64;
}

.tag-slate {
    background: #EEF2F8;
    color: var(--slate);
}

.tag-red {
    background: #FEF2F2;
    color: #DC2626;
}

/* ===== GENERIC CONTENT CARD (matches reference .card system) ===== */
.card {
    position: relative;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.card.hover {
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card.hover:hover {
    transform: translateY(-5px);
    border-color: #b9d5f5;
    box-shadow: var(--shadow-md);
}

.card-dark {
    color: var(--white);
    background: var(--navy);
    border-color: #2c3a50;
}

.card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--teal-dark);
    background: var(--teal-pale);
    border-radius: 13px;
}

.card-icon svg {
    width: 23px;
    height: 23px;
}

.card-icon.violet {
    color: var(--violet);
    background: var(--violet-pale);
}

.card-icon.success {
    color: var(--success);
    background: var(--success-pale);
}

.card-icon.warning {
    color: var(--warning);
    background: var(--warning-pale);
}

.card-icon.teal {
    color: var(--teal-dark);
    background: var(--teal-pale);
}

.card p {
    margin: 0;
    color: var(--text-muted);
}

.card-dark p {
    color: #cfdaea;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 20px;
    color: var(--teal-dark);
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
}

/* ===== PILLS (question-type chips etc.) ===== */
.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.pill {
    padding: 7px 11px;
    color: var(--navy-mid);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

/* ===== MINI SURVEY-QUESTION MOCKUP (illustrative, non-interactive) ===== */
.question-card {
    padding: 19px;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    background: var(--white);
}

.question-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.question-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
}

.answer-option {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding: 10px 12px;
    background: var(--surface);
    border-radius: 9px;
    color: var(--text-muted);
    font-size: 12px;
}

.answer-radio {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    border: 2px solid var(--line-strong);
    border-radius: 50%;
}

/* ===== TRUST STRIP ===== */
.trust-strip {
    padding: 28px 0;
    border-block: 1px solid var(--line);
    background: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: auto repeat(5, 1fr);
    align-items: center;
    gap: 25px;
}

.trust-label {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--navy-mid);
    font-size: 13px;
    font-weight: 800;
}

.trust-item svg {
    width: 19px;
    height: 19px;
    color: var(--teal-dark);
    flex-shrink: 0;
}

@media (max-width: 980px) {
    .trust-grid { grid-template-columns: repeat(3, 1fr); }
    .trust-label { grid-column: 1 / -1; text-align: center; }
}

@media (max-width: 700px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

/* ===== RESEARCH TOOL NAV CARDS ===== */
.tool-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.tool-card {
    display: block;
    padding: 22px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.tool-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: #b4d3f5;
}

.tool-card strong {
    display: block;
    margin-top: 4px;
    color: var(--navy);
    font-size: 15px;
    font-weight: 800;
}

.tool-card span {
    display: block;
    margin-top: 6px;
    color: var(--text-muted);
    font-size: 12.5px;
    line-height: 1.5;
}

@media (max-width: 980px) {
    .tool-nav { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
    .tool-nav { grid-template-columns: 1fr; }
}

/* ===== FAQ ACCORDION ===== */
.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--navy);
}

.faq-question svg {
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-item.open .faq-question svg {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
}

.faq-item.open .faq-answer {
    max-height: 260px;
}

.faq-answer-inner {
    padding: 0 22px 20px;
    color: var(--text-secondary);
    font-size: 13.5px;
    line-height: 1.7;
}

.faq-answer-inner p {
    margin: 0;
}

/* ===== SPLIT GRID (text column + illustrative visual column) ===== */
.split-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}

@media (max-width: 980px) {
    .split-grid { grid-template-columns: 1fr; gap: 32px; }
    .split-grid > .split-grid-visual { order: -1; }
}

/* Illustrative "product window" card - a labeled mockup, never claims to be
   a real screenshot, used wherever a page needs a visual but there is no
   actual product screenshot asset to show. */
.product-window {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.product-window-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 1px solid var(--line);
}

.product-window-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--navy);
}

.product-window-body {
    padding: 20px;
}

/* ===== ANNOUNCEMENT BAR ===== */
.ann-bar {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    text-align: center;
    padding: 9px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ann-bar a {
    color: var(--teal-light);
    text-decoration: none;
    font-weight: 600;
}

.ann-bar a:hover {
    text-decoration: underline;
}

/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 0 24px;
}

.navbar-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    height: var(--header-h);
    padding: 0 24px;
}

.nav-logo {
    flex-shrink: 0;
}

.nav-logo img {
    height: 55px;
    display: block;
}

.nav-logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    text-decoration: none;
    letter-spacing: -0.3px;
}

.nav-logo-text span {
    color: var(--teal);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    flex: 1;
}

.nav-links>li {
    position: relative;
}

.nav-links>li>a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-800);
    text-decoration: none;
    transition: all var(--transition);
    white-space: nowrap;
}

.nav-links>li>a:hover {
    background: var(--gray-50);
    color: var(--teal);
}

.nav-links>li>a.active {
    color: var(--teal);
}

.dropdown-icon {
    width: 14px;
    height: 14px;
    transition: transform var(--transition);
}

.nav-links>li:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 10px;
    min-width: 240px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition);
    z-index: 999;
}

.dropdown.dropdown-wide {
    width: 560px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px 10px;
}

.nav-links>li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: start;
    gap: 10px;
    padding: 9px 10px;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.dropdown a:hover {
    background: var(--teal-pale);
}

.dropdown a:hover .dropdown-title {
    color: var(--teal);
}

.dropdown-icon-sm {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: var(--teal-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    flex-shrink: 0;
}

.dropdown-icon-sm svg {
    width: 17px;
    height: 17px;
}

.dropdown-title {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-800);
    line-height: 1.35;
    transition: color var(--transition);
}

.dropdown-desc {
    display: block;
    margin-top: 2px;
    font-size: 11.5px;
    color: var(--text-muted);
    line-height: 1.4;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-left: auto;
}

.nav-cart-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-800);
    text-decoration: none;
    border: 1px solid var(--border);
    transition: all var(--transition);
    cursor: pointer;
    background: transparent;
}

.nav-cart-btn:hover {
    border-color: var(--teal);
    color: var(--teal);
}

.nav-login-btn {
    padding: 8px 18px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    transition: all var(--transition);
    border: 1.5px solid var(--gray-200);
}

.nav-login-btn:hover {
    border-color: var(--navy);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all var(--transition);
}

.mobile-menu {
    display: none;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 20px 24px;
    position: absolute;
    z-index: 11;
    width: 100%;
    left: 0;
}

.mobile-menu.open {
    display: block;
}

.mobile-nav-links {
    list-style: none;
}

.mobile-nav-links li {
    border-bottom: 1px solid var(--gray-50);
}

.mobile-nav-links a {
    display: block;
    padding: 13px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--navy);
    text-decoration: none;
}

.mobile-nav-links .mobile-nav-heading {
    padding: 16px 0 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--teal);
    border-bottom: none;
}

.mobile-menu-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.mobile-menu-actions .btn {
    flex: 1;
    justify-content: center;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(180deg, var(--teal-pale-2), #fff 74%);
    padding: 92px 0 82px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    inset-inline-end: -260px;
    top: -330px;
    background: radial-gradient(circle, rgba(75,142,222,.18), rgba(75,142,222,0) 68%);
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(75,142,222,.17), rgba(117,88,232,.10));
    filter: blur(1px);
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--teal-pale);
    border: none;
    color: var(--teal-darker);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero-eyebrow::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--teal-dark);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.7);
    }
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(40px, 5.5vw, 68px);
    font-weight: 800;
    line-height: 1.04;
    color: var(--navy);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-title .accent {
    color: var(--teal-dark);
    background: linear-gradient(90deg, var(--teal-darker), var(--teal-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title .gold {
    color: var(--teal-dark);
}

.hero-desc {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-note {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 22px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 650;
}

.hero-note span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-note svg {
    width: 15px;
    height: 15px;
    color: var(--success);
    flex-shrink: 0;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.hero-stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
}

.hero-stat-num span {
    color: var(--teal-dark);
}

.hero-stat-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 3px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 480px;
}

.hero-card-stack {
    position: relative;
    width: 100%;
    max-width: 420px;
}

.hero-main-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    padding: 32px;
    backdrop-filter: blur(12px);
}

.hero-card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--teal), #006B5E);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.hero-card-icon svg {
    width: 26px;
    height: 26px;
    color: white;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.hero-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.hero-card-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

.hero-card-progress {
    margin-top: 24px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--teal), var(--teal-light));
}

.hero-floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 14px 18px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-floating-card.fc-1 {
    bottom: -30px;
    left: -30px;
}

.hero-floating-card.fc-2 {
    top: -18px;
    right: -24px;
}

.fc-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.fc-icon.teal {
    background: var(--teal-pale);
}

.fc-icon.gold {
    background: var(--gold-pale);
}

.fc-text-main {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
}

.fc-text-sub {
    font-size: 11px;
    color: var(--text-muted);
}

/* ===== HERO DASHBOARD MOCKUP (CSS-built, illustrative - not a screenshot) ===== */
.dashboard-mock {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 470px;
    overflow: hidden;
    background: #f7f9fc;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}

.mock-browser {
    height: 34px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.mock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cfd8e5;
}

.mock-address {
    width: 55%;
    height: 13px;
    margin-inline: auto;
    background: var(--surface-2);
    border-radius: 7px;
}

.mock-app {
    display: grid;
    grid-template-columns: 62px 1fr;
    min-height: 380px;
}

.mock-sidebar {
    padding: 16px 10px;
    background: var(--navy);
}

.mock-logo {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    color: var(--white);
    background: var(--teal);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 900;
    font-family: 'Space Grotesk', sans-serif;
}

.mock-side-line {
    width: 100%;
    height: 6px;
    margin: 12px 0;
    background: #2e3b50;
    border-radius: 4px;
}

.mock-side-line.active {
    background: var(--teal);
}

.mock-content {
    padding: 18px;
}

.mock-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.mock-title {
    width: 35%;
    height: 12px;
    background: var(--navy);
    border-radius: 4px;
}

.mock-button {
    width: 78px;
    height: 24px;
    background: var(--teal);
    border-radius: 6px;
}

.mock-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.mock-metric {
    padding: 11px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
}

.mock-metric-label {
    width: 70%;
    height: 5px;
    background: #cdd7e4;
    border-radius: 3px;
}

.mock-metric-value {
    margin-top: 8px;
    color: var(--navy);
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    font-family: 'Space Grotesk', sans-serif;
}

.mock-metric-trend {
    margin-top: 6px;
    color: var(--success);
    font-size: 8px;
    font-weight: 800;
}

.mock-chart {
    position: relative;
    height: 150px;
    margin-top: 10px;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
}

.mock-chart-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.mock-line {
    width: 34%;
    height: 6px;
    background: #cdd7e4;
    border-radius: 3px;
}

.mock-chart svg {
    width: 100%;
    height: 92px;
    overflow: visible;
}

.mock-list {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 10px;
    margin-top: 10px;
}

.mock-panel {
    min-height: 66px;
    padding: 11px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
}

.mock-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 6px 0;
}

.mock-row-dot {
    width: 16px;
    height: 16px;
    background: var(--teal-pale);
    border-radius: 4px;
    flex-shrink: 0;
}

.mock-row-line {
    flex: 1;
    height: 5px;
    background: #d6deea;
    border-radius: 3px;
}

@media (max-width: 700px) {
    .dashboard-mock { transform: none; }
    .mock-app { grid-template-columns: 48px 1fr; min-height: 300px; }
    .mock-list { display: none; }
}

/* ===== WHY CHOOSE ===== */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-image-wrap {
    position: relative;
}

.why-image-wrap img {
    width: 100%;
    border-radius: var(--radius-xl);
    display: block;
}

.why-image-placeholder {
    width: 100%;
    aspect-ratio:4/3;
    background: linear-gradient(135deg, var(--navy) 0%, var(--slate) 50%, var(--teal) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: white;
}

.why-image-placeholder svg {
    width: 64px;
    height: 64px;
    opacity: 0.6;
}
.categories-scroll .category-chip{flex-direction: row;}
.why-stat-badge {
    position: absolute;
    bottom: -28px;
    right: -20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 16px 22px;
    box-shadow: var(--shadow-lg);
    text-align: center;
        display: flex;
    align-items: center;
    gap: 1rem;
}

.why-stat-badge .num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--navy-mid);
    line-height: 1;
    text-align: left;
}

.why-stat-badge .label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
}

.why-feature {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.why-feature:last-child {
    border-bottom: none;
}

.why-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--teal-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--teal);
    transition: all 0.3s ease-in-out 0s;
}

.why-feature-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.why-feature-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.why-feature-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== COURSE CARDS ===== */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.course-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.course-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal);
}

.course-card-thumb {
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--navy), var(--slate-light));
}

.course-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.course-card:hover .course-card-thumb img {
    transform: scale(1.04);
}

.course-card-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
}

.course-card-thumb-placeholder svg {
    width: 40px;
    height: 40px;
}

.course-card-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.course-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.course-card-body .margin-b{margin-bottom: 1.2rem; color: rgba(10, 47, 107, .6);}

.course-card-category {
    font-size: 11px;
    font-weight: 600;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}
.course-card-body .top{display: flex; gap: 1rem; justify-content: space-between; margin-bottom: 12px;}
.course-card-body .top .rating{
    color: var(--navy-mid); font-weight: 700; font-size: 1rem;
}
.course-card-body .course-card-meta{margin-top: 1rem;}
.course-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-mid);
    line-height: 1.35;
    margin-bottom: 12px;
    flex: 1;
}

.course-card-instructor {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
}

.instructor-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--slate));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    overflow: hidden;
}

.instructor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instructor-name {
    font-size: 12px;
    color: var(--text-secondary);
}

.course-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.course-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--text-muted);
}

.course-meta-item svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.course-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
}

.course-price .from {
    font-size: 11px;
    font-weight: 400;
    color: var(--text-muted);
}

/* ===== BOOTCAMP SECTION ===== */
.bootcamp-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    transition: all var(--transition);
    text-decoration: none;
    color: inherit;
}

.bootcamp-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.bootcamp-card-thumb {
    width: 200px;
    flex-shrink: 0;
    position: relative;
    background: linear-gradient(135deg, var(--navy), var(--slate-light));
    overflow: hidden;
}

.bootcamp-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bootcamp-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bootcamp-meta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.bootcamp-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 12px;
}

.bootcamp-info-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.bootcamp-info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-secondary);
}

.bootcamp-info-item svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}
/* .why-choose-sierratec{
    padding-top: 0;
} */
.why-choose-sierratec .services-grid{
    grid-template-columns: repeat(4, 1fr);
}
.why-choose-sierratec .services-grid .service-card{flex-direction: column; transition: all 0.3s ease-in-out 0s;}
.why-choose-sierratec .services-grid .service-card:hover{    transform: translateY(-4px); box-shadow: 0 10px 30px -10px color-mix(in oklab, var(--brand-blue) 30%, transparent);}
.why-choose-sierratec .services-grid .service-card:hover .why-feature-icon{background-color: var(--teal); color: #fff;}


.bootcamp-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--teal);
    margin-left: auto;
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--navy);
    padding: 48px 0;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-num span {
    color: var(--teal-light);
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== SUBSCRIBE/PRICING ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    align-items: stretch;
    gap: 16px;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
    min-width: 0;
    box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pricing-card.featured {
    border: 2px solid var(--teal);
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
}

.pricing-card.featured:hover {
    transform: translateY(-11px);
}

.pricing-badge {
    position: absolute;
    inset-inline: 14px;
    top: -15px;
    left: auto;
    transform: none;
    background: var(--teal-dark);
    color: var(--white);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 100px;
    text-align: center;
    white-space: nowrap;
}

.pricing-icon {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 16px;
}

.pricing-icon.bronze {
    background: var(--warning-pale);
}

.pricing-icon.gold {
    background: var(--teal-pale);
}

.pricing-icon.silver {
    background: var(--gray-50);
}

.pricing-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 19px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 6px;
}

.pricing-card.featured .pricing-name {
    color: var(--navy);
}

.pricing-tagline {
    min-height: 42px;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 18px;
}

.pricing-card.featured .pricing-tagline {
    color: var(--text-muted);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 18px;
}

.pricing-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--navy);
    line-height: 1;
}

.pricing-card.featured .pricing-amount {
    color: var(--navy);
}

.pricing-per {
    font-size: 12px;
    color: var(--text-muted);
}

.pricing-card.featured .pricing-per {
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 24px;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
    padding: 7px 0;
}

.check-icon {
    width: 18px;
    height: 18px;
    color: var(--teal);
    flex-shrink: 0;
    margin-top: 1px;
}

/* ===== INSTRUCTOR FINDER ===== */
.finder-section {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    padding: 88px 0;
}
.finder-section .section-heading.light{}

.finder-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(75, 142, 222, 0.2) 0%, transparent 70%);
    right: -100px;
    top: -100px;
    pointer-events: none;
}

.finder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.finder-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 32px;
    position: relative;
    backdrop-filter: blur(8px);
}

.finder-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.finder-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--slate));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    font-weight: 700;
}

.finder-instructor-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.finder-instructor-role {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.finder-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.finder-tag {
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 100px;
    background: rgba(75, 142, 222, 0.15);
    color: var(--teal-light);
    border: 1px solid rgba(75, 142, 222, 0.25);
}

.finder-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.stars {
    color: var(--gold-light);
    font-size: 14px;
}

.finder-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.testimonial-card::before {
    content: '"';
    font-family: 'Space Grotesk', sans-serif;
    font-size: 80px;
    font-weight: 800;
    color: var(--teal-pale);
    line-height: 1;
    position: absolute;
    top: 10px;
    right: 20px;
}

.testimonial-body {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--teal), var(--slate));
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.2;
}

.testimonial-role {
    font-size: 12px;
    color: var(--text-muted);
}

/* ===== INSTRUCTORS ===== */
.instructors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.instructor-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    text-align: center;
    transition: all var(--transition);
    text-decoration: none;
    color: inherit;
}

.instructor-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--teal);
}

.instructor-card-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 0 auto 14px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--teal), var(--slate));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: white;
}

.instructor-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instructor-card-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.instructor-card-role {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.instructor-card-btn {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--teal);
    border: 1.5px solid var(--teal);
    padding: 6px 14px;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition);
}

.instructor-card-btn:hover {
    background: var(--teal);
    color: var(--white);
}

/* ===== PRODUCTS ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.product-card-thumb {
    aspect-ratio: 3/2;
    background: linear-gradient(135deg, var(--navy), var(--slate-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
}

.product-card-thumb svg {
    width: 44px;
    height: 44px;
}

.product-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-category {
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.product-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.35;
    margin-bottom: 10px;
    flex: 1;
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.product-stars {
    display: flex;
    gap: 2px;
    color: var(--gold);
    font-size: 13px;
}

.product-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--teal);
}

/* ===== BECOME INSTRUCTOR ===== */
.become-section {
    background: linear-gradient(135deg, var(--teal-pale) 0%, var(--white) 60%, #e8f1fb00 100%);
    padding: 88px 0;
}

.become-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.become-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.become-card-main {
    background: var(--navy);
    border-radius: var(--radius-xl);
    padding: 36px;
    max-width: 320px;
    width: 100%;
}

.become-card-main .icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(75, 142, 222, 0.15);
    border: 1px solid rgba(75, 142, 222, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--teal-light);
}

.become-card-main .icon-wrap svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.become-mini-stat {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
}

.become-mini-stat.ms-1 {
    bottom: -10px;
    right: -10px;
}

.become-mini-stat.ms-2 {
    top: 10px;
    right: -30px;
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
    background: var(--navy);
    padding: 72px 0;
    text-align: center;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 32px auto 0;
}

.newsletter-input {
    flex: 1;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.07);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    outline: none;
    transition: border-color var(--transition);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.newsletter-input:focus {
    border-color: var(--teal);
}

/* ===== ORGANIZATIONS ===== */
.orgs-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.org-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    transition: all var(--transition);
}

.org-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--teal);
}

.org-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--navy));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.org-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
}

.org-count {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== CATEGORIES ===== */
.categories-scroll {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.category-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 12px;
    text-decoration: none;
    color: inherit;
    transition: all var(--transition);
    /* text-align: center; */
}

.category-chip:hover {
    border-color: var(--teal);
    background: var(--teal-pale);
    transform: translateY(-2px);
}

.category-chip:hover .cat-icon {
    background: var(--teal);
    color: white;
}

.cat-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all var(--transition);
    color: var(--teal);
}

.cat-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.cat-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy-mid);
    line-height: 1.8;
}

.cat-count {
    font-size: 12px;
    color: var(--text-muted);
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
    text-decoration: none;
    color: inherit;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.service-card:hover {
    border-color: var(--teal);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--teal-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--teal);
}

.service-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.service-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.service-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--teal);
    text-decoration: none;
}

.service-link svg {
    width: 14px;
    height: 14px;
    transition: transform var(--transition);
}

.service-card:hover .service-link svg {
    transform: translateX(4px);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy);
    padding: 72px 0 0;
    color: rgba(255, 255, 255, 0.65);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    display: block;
    text-decoration: none;
}

.footer-brand-name span {
    color: var(--teal-light);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all var(--transition);
    font-size: 14px;
}

.social-btn:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: white;
}

.social-btn svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.footer-col-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--teal);
    /* opacity: 0; */
    flex-shrink: 0;
    transition: opacity var(--transition);
}

.footer-links a:hover {
    color: var(--teal-light);
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--teal-light);
}

/* ===== SECTION HEADER ===== */
.section-header {
    margin-bottom: 48px;
}

.section-header.centered {
    text-align: center;
}

.section-header.centered .section-subheading {
    margin-left: auto;
    margin-right: auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {

 .nav-links {
        display: none;
    }
     .hamburger {
        display: flex;
    }


    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .instructors-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .categories-scroll {
        grid-template-columns: repeat(4, 1fr);
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(3) {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 768px) {
    .navbar-inner{
        padding: 0; justify-content: space-between;
    }
    .why-choose-sierratec .services-grid{
            grid-template-columns: repeat(2, 1fr);
    }
    
    .section {
        padding: 60px 0;
    }

    .hero {
        padding: 70px 0 60px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        display: none;
    }

    .hero-stats {
        gap: 24px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .why-image-wrap {
        order: -1;
    }

    .why-stat-badge {
        right: 0;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .bootcamp-card {
        flex-direction: column;
    }

    .bootcamp-card-thumb {
        width: 100%;
        height: 200px;
    }

    .finder-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .instructors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }

    .become-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .become-visual {
        order: -1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .categories-scroll {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

   

    .nav-actions .nav-login-btn,
    .nav-actions .btn {
        display: none;
    }

   

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-form {
        flex-direction: column;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {

     .why-choose-sierratec .services-grid{
            grid-template-columns: repeat(1, 1fr);
    }
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 32px;
    }

    .categories-scroll {
        grid-template-columns: repeat(1, 1fr);
    }

    .instructors-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-row {
        grid-template-columns: 1fr 1fr;
    }

    .orgs-row {
        flex-direction: column;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

.delay-1 {
    animation-delay: 0.1s;
    opacity: 0;
}

.delay-2 {
    animation-delay: 0.2s;
    opacity: 0;
}

.delay-3 {
    animation-delay: 0.3s;
    opacity: 0;
}

.delay-4 {
    animation-delay: 0.4s;
    opacity: 0;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}




/* ==========================
   Video Section
========================== */

.video-section {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.video-section-wrap {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(23, 26, 33, 0.88) 0%,
        rgba(31, 59, 100, 0.80) 100%
    );
    z-index: 1;
        opacity: 0.8;
}

.video-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 88px 24px;
}

.section-label.center {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.section-heading.light {
    max-width: 700px;
    margin: 0 auto 16px;
    color: #ffffff;
}

.video-description {
    max-width: 480px;
    margin: 0 auto 40px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
}

/* Play Button */

.video-play-btn {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    background: var(--teal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 12px rgba(75, 142, 222, 0.2);
}

.video-play-btn:hover {
    transform: scale(1.1);
}

.video-duration {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
}

/* Stats */

.video-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 52px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: "Space Grotesk", sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
}

.stat-number span {
    color: var(--teal-light);
}

.stat-label {
    margin-top: 4px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================
   Responsive
========================== */

@media (max-width: 768px) {

    .video-content {
        padding: 72px 20px;
    }

    .video-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 26px;
    }

    .video-play-btn {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {

    .video-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .video-section-wrap {
        min-height: auto;
    }

    .video-content {
        padding: 64px 20px;
    }
}




/* ==========================
   Video Modal
========================== */

.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;

    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.88);

    padding: 20px;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
}

.video-modal-close {
    position: absolute;
    top: -44px;
    right: 0;

    background: transparent;
    border: none;

    color: #fff;
    font-size: 28px;
    cursor: pointer;

    padding: 8px;
    transition: opacity 0.3s ease;
}

.video-modal-close:hover {
    opacity: 0.7;
}

.video-iframe-wrapper {
    position: relative;
    overflow: hidden;

    width: 100%;
    height: 0;

    padding-bottom: 56.25%; /* 16:9 */

    border-radius: var(--radius-lg);
}

.video-iframe {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    border: none;
}

.navbar select{border:1.5px solid var(--gray-200);background:transparent;padding:9.5px 10px;border-radius:var(--radius-md);font-family:'DM Sans',sans-serif;font-size:13px;font-weight:600;color:var(--navy);cursor:pointer;outline:none;}
.section.subscription{padding-top: 0;}
.subscriptions{display: grid;grid-template-columns: 1fr 690px;gap: 60px;align-items: center;}
.forms .pricing-features li{border-bottom: 0;}
.check-icon {width: 18px;height: 18px;color: #4b8ede;flex-shrink: 0;margin-top: 1px;}




/* ==========================
   Mobile
========================== */

@media (max-width: 768px) {
    .video-modal-content {
        width: 100%;
    }

    .video-modal-close {
        top: -38px;
        font-size: 24px;
    }
}

/* ============================================================
   SURVEY BUILDER (3-panel: question types / canvas / settings)
   Mirrors the same component in the panel stylesheet, duplicated
   here so it also works on the public builder-demo page.
   ============================================================ */
.builder-shell {
    display: grid;
    grid-template-columns: 210px 1fr 320px;
    gap: 20px;
    align-items: start;
}

.builder-panel {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 18px;
    box-shadow: var(--shadow-sm);
}

.builder-panel-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.question-tool-grid {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.question-tool {
    display: flex;
    align-items: center;
    width: 100%;
    text-align: left;
    padding: 9px 10px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    background: transparent;
    font-family: inherit;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--gray-800);
    cursor: pointer;
    transition: all var(--transition);
}

.question-tool:hover { background: var(--off-white); }

.question-tool.active {
    background: var(--teal-pale);
    border-color: var(--teal);
    color: var(--teal);
}

.builder-canvas-wrap { min-height: 360px; }

.builder-canvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    gap: 10px;
}

.builder-canvas-count {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}

.canvas-question {
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px 18px;
    margin-bottom: 12px;
    background: var(--off-white);
    cursor: pointer;
    outline: none;
    transition: all var(--transition);
}

.canvas-question:hover { border-color: var(--teal); background: var(--white); }
.canvas-question:focus-visible { border-color: var(--teal); }

.canvas-question.active {
    border-color: var(--teal);
    background: var(--white);
    box-shadow: 0 0 0 3px var(--teal-pale);
}

.canvas-question-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.canvas-question-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
}

.canvas-answer input,
.canvas-answer textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 9px 10px;
    font-size: 13px;
    font-family: inherit;
    background: var(--white);
    color: var(--text-muted);
}

.canvas-empty {
    border: 2px dashed var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 13.5px;
}

.builder-right-form .form-group,
.builder-right-form .property-group { margin-bottom: 14px; }

.property-group {
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.property-group h3 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--text-muted);
    margin: 0 0 10px;
}

.property-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--gray-800);
    padding: 6px 0;
}

.mini-toggle {
    position: relative;
    width: 36px;
    height: 20px;
    border-radius: 100px;
    background: var(--gray-200);
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    transition: background var(--transition);
}

.mini-toggle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition);
}

.mini-toggle.active { background: var(--teal); }
.mini-toggle.active::after { transform: translateX(16px); }

@media (max-width: 991px) {
    .builder-shell { grid-template-columns: 1fr; }
}