/*
 * PingMaster GPS — Main Stylesheet
 * ================================
 */

/* ---- Reset & Base ---- */
:root {
    --color-dark-blue: #0b3459;
    --color-navy: #1a365d;
    --color-orange: #ed8936;
    --color-orange-hover: #dd6b20;
    --color-white: #ffffff;
    --color-light-gray: #f7fafc;
    --color-gray: #718096;
    --color-text: #2d3748;
    --color-border: #e2e8f0;
    --header-height: 72px;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --max-width: 1280px;
    --section-padding: 80px 0;
    --color-green: #10b981;
    --color-blue: #3b82f6;
    --color-purple: #8b5cf6;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -2px rgba(0,0,0,.05);
    --shadow-lg: 0 10px 25px -3px rgba(0,0,0,.08), 0 4px 6px -4px rgba(0,0,0,.05);
    --shadow-xl: 0 20px 50px -12px rgba(0,0,0,.12);
    --shadow-glow-orange: 0 0 30px rgba(237,137,54,.3);
    --shadow-glow-blue: 0 0 30px rgba(59,130,246,.2);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-family);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-dark-blue); }

/* ---- Container ---- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
    color: var(--color-dark-blue);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }

/* ---- Buttons ---- */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 28px; border-radius: 8px; font-size: .9375rem;
    font-weight: 600; text-decoration: none; cursor: pointer;
    border: 2px solid transparent; transition: all .25s ease;
    font-family: var(--font-family); gap: 8px;
}

.btn-orange { background: var(--color-orange); color: #fff; border-color: var(--color-orange); }
.btn-orange:hover { background: var(--color-orange-hover); border-color: var(--color-orange-hover); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(237,137,54,.35); }

.btn-dark-blue { background: var(--color-dark-blue); color: #fff; border-color: var(--color-dark-blue); }
.btn-dark-blue:hover { background: var(--color-navy); border-color: var(--color-navy); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(11,52,89,.35); }

.btn-outline { background: transparent; color: var(--color-dark-blue); border-color: var(--color-border); }
.btn-outline:hover { border-color: var(--color-dark-blue); background: var(--color-light-gray); }

.btn-lg { padding: 16px 36px; font-size: 1.0625rem; border-radius: 10px; }

/* ---- Main Content ---- */
.main-content {
    min-height: calc(100vh - var(--header-height) - 300px);
}

/* ---- Section Styles ---- */
.section { padding: var(--section-padding); }
.section-light { background: var(--color-light-gray); }
.section-dark { background: var(--color-dark-blue); color: var(--color-white); }
.section-dark h2, .section-dark h3 { color: var(--color-white); }

.section-header {
    text-align: center; max-width: 680px; margin: 0 auto 48px;
}
.section-header p {
    color: var(--color-gray); font-size: 1.0625rem; margin-top: 12px;
}

/* ---- Grid ---- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* ---- Cards ---- */
.card {
    background: #fff; border-radius: 12px; padding: 32px;
    box-shadow: 0 1px 3px rgba(0,0,0,.06); border: 1px solid var(--color-border);
    transition: transform .25s, box-shadow .25s;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,.1);
}

/* ---- Hero ---- */
.hero {
    position: relative; padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--color-dark-blue) 0%, var(--color-navy) 60%, #0f4c75 100%);
    color: #fff; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: 0; right: 0; bottom: 0; left: 0;
    background: radial-gradient(circle at 80% 30%, rgba(237,137,54,.15), transparent 50%);
    pointer-events: none;
}
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero p { font-size: 1.125rem; color: rgba(255,255,255,.8); max-width: 560px; margin-bottom: 32px; }
.hero .btn { margin-right: 12px; margin-bottom: 12px; }

/* ---- Page Header Banner ---- */
.page-header {
    background: linear-gradient(135deg, var(--color-dark-blue), var(--color-navy));
    padding: 60px 0 50px; color: #fff; text-align: center;
}
.page-header h1 { color: #fff; margin-bottom: 8px; font-size: clamp(1.75rem, 4vw, 2.5rem); }
.page-header p { color: rgba(255,255,255,.7); font-size: 1.0625rem; }

/* ---- Form Styles ---- */
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; font-size: .8125rem; font-weight: 600;
    color: #4a5568; margin-bottom: 6px;
}
.form-control {
    width: 100%; padding: 12px 16px; border: 2px solid var(--color-border);
    border-radius: 8px; font-size: .9375rem; font-family: var(--font-family);
    transition: border-color .2s, box-shadow .2s; outline: none;
    background: var(--color-light-gray);
}
.form-control:focus {
    border-color: var(--color-orange);
    box-shadow: 0 0 0 3px rgba(237,137,54,.12);
    background: #fff;
}
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }

/* ---- Alerts ---- */
.alert {
    padding: 14px 20px; border-radius: 8px; font-size: .875rem;
    margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
}
.alert-success { background: #f0fff4; border: 1px solid #c6f6d5; color: #276749; }
.alert-error { background: #fff5f5; border: 1px solid #feb2b2; color: #c53030; }
.alert-info { background: #ebf8ff; border: 1px solid #bee3f8; color: #2b6cb0; }

/* ---- Footer ---- */
.site-footer { background: var(--color-navy); color: rgba(255,255,255,.75); }
.footer-main { padding: 64px 0 40px; }
.footer-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

.footer-main .footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-logo-text {
    font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 10px;
}
.footer-tagline { font-size: .875rem; color: rgba(255,255,255,.6); margin-bottom: 20px; }

.footer-social { display: flex; gap: 12px; }
.social-link {
    width: 36px; height: 36px; border-radius: 8px;
    background: rgba(255,255,255,.08); display: flex;
    align-items: center; justify-content: center;
    color: rgba(255,255,255,.6); transition: all .2s; text-decoration: none;
}
.social-link:hover { background: var(--color-orange); color: #fff; }

.footer-col h4 {
    font-size: .8125rem; text-transform: uppercase; letter-spacing: .06em;
    color: rgba(255,255,255,.4); font-weight: 600; margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
    color: rgba(255,255,255,.7); text-decoration: none; font-size: .875rem;
    transition: color .2s;
}
.footer-col ul a:hover { color: #fff; }

.footer-contact li {
    display: flex; align-items: center; gap: 10px;
}
.footer-contact svg { flex-shrink: 0; color: var(--color-orange); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0;
}
.footer-bottom .footer-inner {
    display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: .8125rem; color: rgba(255,255,255,.4); }
.footer-bottom a { color: rgba(255,255,255,.5); text-decoration: none; font-size: .8125rem; }
.footer-bottom a:hover { color: #fff; }

/* ---- 404 ---- */
.page-404 {
    text-align: center; padding: 120px 20px;
}
.page-404 h1 { font-size: 6rem; color: var(--color-orange); font-weight: 800; margin-bottom: 8px; }
.page-404 p { font-size: 1.125rem; color: var(--color-gray); margin-bottom: 32px; }

/* ---- Responsive ---- */
@media (max-width: 768px) {
    :root { --section-padding: 56px 0; }
    .hero { padding: 72px 0 56px; }
    .footer-main .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-bottom .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
    .footer-main .footer-inner { grid-template-columns: 1fr; }
}

/* =============================================
   SECTION TEMPLATES
   ============================================= */

/* ---- 1. Hero Section ---- */
.section-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-dark-blue) 0%, var(--color-navy) 60%, #0f4c75 100%);
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
    padding: 100px 0 80px;
}
.section-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11,52,89,.85) 0%, rgba(26,54,93,.7) 50%, rgba(15,76,117,.6) 100%);
    pointer-events: none;
}
.section-hero__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}
.section-hero__highlight {
    display: inline-block;
    background: rgba(237,137,54,.2);
    border: 1px solid rgba(237,137,54,.4);
    color: var(--color-orange);
    font-size: .8125rem;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
    letter-spacing: .03em;
    text-transform: uppercase;
}
.section-hero__heading {
    font-size: clamp(2.25rem, 6vw, 3.5rem);
    color: #fff;
    margin-bottom: 16px;
    font-weight: 800;
    line-height: 1.15;
}
.section-hero__tagline {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    color: rgba(255,255,255,.9);
    margin-bottom: 12px;
    font-weight: 500;
}
.section-hero__description {
    font-size: 1.0625rem;
    color: rgba(255,255,255,.75);
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.7;
}
.section-hero__subtext {
    font-size: .9375rem;
    color: rgba(255,255,255,.55);
    margin-bottom: 8px;
}
.section-hero__actions {
    margin-top: 32px;
}

@media (max-width: 768px) {
    .section-hero { min-height: 400px; padding: 72px 0 56px; }
}

/* ---- 2. Feature Cards ---- */
.section-feature-cards .feature-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.feature-card__image {
    margin: -32px -32px 8px;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}
.feature-card__image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.feature-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-dark-blue), var(--color-navy));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    margin-bottom: 4px;
}
.feature-card__badge {
    display: inline-block;
    background: var(--color-light-gray);
    color: var(--color-dark-blue);
    font-size: .75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.feature-card__title {
    font-size: 1.25rem;
    margin: 0;
}
.feature-card__name {
    color: var(--color-gray);
    font-size: .875rem;
    font-weight: 500;
    margin: -4px 0 0;
}
.feature-card__tagline {
    color: var(--color-orange);
    font-size: .9375rem;
    font-weight: 600;
}
.feature-card__desc {
    color: var(--color-gray);
    font-size: .9375rem;
    line-height: 1.65;
}
.feature-card__specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}
.feature-card__spec {
    background: var(--color-light-gray);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: .8125rem;
    color: var(--color-text);
}
.feature-card__spec--yes {
    background: #f0fff4;
    color: #276749;
}
.feature-card__checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}
.feature-card__checklist li {
    font-size: .875rem;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 8px;
}
.feature-card__checklist .checkmark {
    color: #38a169;
    font-weight: 700;
    font-size: 1rem;
}
.feature-card__cta {
    margin-top: auto;
    align-self: flex-start;
}

/* ---- 3. Comparison Table ---- */
.comparison-table__wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    font-size: .9375rem;
}
.comparison-table thead th {
    background: var(--color-dark-blue);
    color: #fff;
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    font-size: .8125rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    white-space: nowrap;
}
.comparison-table thead th:first-child {
    border-radius: 12px 0 0 0;
}
.comparison-table thead th:last-child {
    border-radius: 0 12px 0 0;
}
.comparison-table tbody td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--color-border);
}
.comparison-table tbody tr:nth-child(even) {
    background: var(--color-light-gray);
}
.comparison-table__highlight {
    background: rgba(237,137,54,.08) !important;
    font-weight: 600;
}
.comparison-table__highlight td {
    border-left: 3px solid var(--color-orange);
}
.comparison-table__highlight td:first-child {
    border-left: 3px solid var(--color-orange);
}
.comparison-table__provider {
    font-weight: 600;
    color: var(--color-dark-blue);
}

/* ---- 4. FAQ Accordion ---- */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}
.faq-accordion__item {
    border: 1px solid var(--color-border);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow .25s;
}
.faq-accordion__item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,.06);
}
.faq-accordion__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: #fff;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-family);
    transition: background .2s;
}
.faq-accordion__trigger:hover {
    background: var(--color-light-gray);
}
.faq-accordion__question {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark-blue);
    line-height: 1.4;
}
.faq-accordion__icon {
    flex-shrink: 0;
    color: var(--color-gray);
    transition: transform .3s;
}
.faq-accordion__trigger[aria-expanded="true"] .faq-accordion__icon {
    transform: rotate(45deg);
    color: var(--color-orange);
}
.faq-accordion__trigger[aria-expanded="true"] .faq-v {
    opacity: 0;
}
.faq-accordion__panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}
.faq-accordion__answer {
    padding: 0 24px 20px;
    color: var(--color-gray);
    font-size: .9375rem;
    line-height: 1.7;
}

/* ---- 5. Calculator ---- */
.calculator__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.calculator__slider-group {
    margin-bottom: 28px;
}
.calculator__slider-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}
.calculator__slider-header label {
    font-weight: 600;
    font-size: .9375rem;
    color: var(--color-dark-blue);
}
.calculator__slider-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-orange);
}
.calculator__range {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 4px;
    background: var(--color-border);
    outline: none;
    cursor: pointer;
}
.calculator__range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-orange);
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(237,137,54,.35);
    cursor: pointer;
}
.calculator__range::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-orange);
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(237,137,54,.35);
    cursor: pointer;
}
.calculator__slider-minmax {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    font-size: .75rem;
    color: var(--color-gray);
}
.calculator__results h3 {
    margin-bottom: 20px;
}
.calculator__summary-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}
.calculator__summary-card {
    background: var(--color-light-gray);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    border: 1px solid var(--color-border);
}
.calculator__summary-label {
    display: block;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--color-gray);
    margin-bottom: 8px;
}
.calculator__summary-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-dark-blue);
}
.calculator__chart {
    background: var(--color-light-gray);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    border: 1px solid var(--color-border);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.calculator__chart-placeholder {
    color: var(--color-gray);
    font-size: .875rem;
}

@media (max-width: 768px) {
    .calculator__grid { grid-template-columns: 1fr; }
    .calculator__summary-cards { grid-template-columns: 1fr; }
}

/* ---- 6. Video Gallery ---- */
.video-gallery__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 36px;
}
.video-gallery__filter {
    padding: 8px 20px;
    border-radius: 50px;
    border: 2px solid var(--color-border);
    background: #fff;
    font-size: .875rem;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    font-family: var(--font-family);
    transition: all .2s;
}
.video-gallery__filter:hover,
.video-gallery__filter.active {
    background: var(--color-dark-blue);
    color: #fff;
    border-color: var(--color-dark-blue);
}
.video-card {
    padding: 0;
    overflow: hidden;
}
.video-card__thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}
.video-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}
.video-card:hover .video-card__thumb img {
    transform: scale(1.05);
}
.video-card__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: opacity .2s;
    opacity: .85;
}
.video-card__play:hover {
    opacity: 1;
}
.video-card__body {
    padding: 20px 24px;
}
.video-card__category {
    display: inline-block;
    background: var(--color-light-gray);
    color: var(--color-dark-blue);
    font-size: .75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 8px;
}
.video-card__title {
    font-size: 1rem;
    margin: 0;
}

/* Video Modal */
.video-modal[hidden] { display: none !important; }
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.8);
}
.video-modal__content {
    position: relative;
    width: 90%;
    max-width: 900px;
}
.video-modal__close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}
.video-modal__player {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}
.video-modal__player iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* ---- 7. CTA Section ---- */
.section-cta {
    background: linear-gradient(135deg, var(--color-dark-blue) 0%, var(--color-navy) 60%, #0f4c75 100%);
    padding: var(--section-padding);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.section-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(237,137,54,.12), transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(237,137,54,.08), transparent 50%);
    pointer-events: none;
}
.section-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}
.section-cta__heading {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: #fff;
    margin-bottom: 16px;
}
.section-cta__desc {
    font-size: 1.0625rem;
    color: rgba(255,255,255,.75);
    margin-bottom: 28px;
    line-height: 1.7;
}
.section-cta__contact {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}
.section-cta__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.9);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color .2s;
}
.section-cta__link:hover {
    color: var(--color-orange);
}
.section-cta__link svg {
    flex-shrink: 0;
}

/* ---- 8. Awards & Badges ---- */
.awards__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.awards__item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s;
}
.awards__item:hover {
    transform: scale(1.05);
}
.awards__item img {
    max-height: 80px;
    width: auto;
    filter: grayscale(.2);
    transition: filter .25s;
}
.awards__item:hover img {
    filter: grayscale(0);
}
a.awards__item {
    text-decoration: none;
}

/* ---- 9. Content Cards ---- */
.content-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.content-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(11,52,89,.08), rgba(11,52,89,.04));
    border: 1px solid rgba(11,52,89,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 4px;
}
.content-card__title {
    font-size: 1.125rem;
    margin: 0;
}
.content-card__desc {
    color: var(--color-gray);
    font-size: .9375rem;
    line-height: 1.65;
}
.content-card__points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 4px;
    padding-left: 0;
}
.content-card__points li {
    font-size: .875rem;
    color: var(--color-text);
    padding-left: 18px;
    position: relative;
}
.content-card__points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-orange);
}

/* ---- 10. Contact Form ---- */
.contact__grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 48px;
    align-items: start;
}
.contact__form-wrap {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
    border: 1px solid var(--color-border);
}
.form-required {
    color: #e53e3e;
    margin-left: 2px;
}
.contact__submit {
    width: 100%;
    margin-top: 8px;
}
.contact__info-card {
    background: linear-gradient(135deg, var(--color-dark-blue), var(--color-navy));
    border-radius: 16px;
    padding: 40px;
    color: #fff;
    position: sticky;
    top: calc(var(--header-height) + 24px);
}
.contact__info-card h3 {
    color: #fff;
    margin-bottom: 12px;
    font-size: 1.25rem;
}
.contact__info-card > p {
    color: rgba(255,255,255,.65);
    font-size: .9375rem;
    margin-bottom: 32px;
    line-height: 1.6;
}
.contact__info-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact__info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: .9375rem;
    color: rgba(255,255,255,.85);
}
.contact__info-item svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .contact__grid { grid-template-columns: 1fr; }
    .contact__form-wrap { padding: 28px; }
    .contact__info-card { position: static; }
}

/* ---- 11. Stats Row ---- */
.section-stats {
    background: linear-gradient(135deg, var(--color-dark-blue), var(--color-navy));
    padding: 56px 0;
    color: #fff;
}
.stats__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 48px;
}
.stats__item {
    text-align: center;
    min-width: 140px;
}
.stats__number {
    display: block;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}
.stats__label {
    display: block;
    font-size: .875rem;
    font-weight: 600;
    color: var(--color-orange);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.stats__desc {
    display: block;
    font-size: .8125rem;
    color: rgba(255,255,255,.6);
    margin-top: 4px;
}
.stats__badge {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: .875rem;
    font-weight: 600;
    color: rgba(255,255,255,.9);
}

@media (max-width: 768px) {
    .stats__row { gap: 32px; }
    .stats__item { min-width: 100px; }
}

/* ---- 12. Image + Text Split ---- */
.split__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.section-split--img-right .split__image {
    order: 2;
}
.section-split--img-right .split__text {
    order: 1;
}
.split__image img {
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,.1);
}
.split__image-placeholder {
    aspect-ratio: 4/3;
    background: var(--color-light-gray);
    border-radius: 16px;
    border: 2px dashed var(--color-border);
}
.split__heading {
    margin-bottom: 16px;
}
.split__desc {
    color: var(--color-gray);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 16px;
}
.split__details {
    color: var(--color-text);
    font-size: .9375rem;
    line-height: 1.7;
    margin-bottom: 24px;
    padding-left: 16px;
    border-left: 3px solid var(--color-orange);
}
.split__text .btn {
    margin-top: 8px;
}

@media (max-width: 768px) {
    .split__grid { grid-template-columns: 1fr; gap: 32px; }
    .section-split--img-right .split__image { order: 0; }
    .section-split--img-right .split__text { order: 0; }
}

/* ---- 13. Step Process ---- */
.steps__track {
    display: flex;
    justify-content: center;
    gap: 0;
    position: relative;
}
.steps__item {
    flex: 1;
    text-align: center;
    max-width: 260px;
    position: relative;
    padding: 0 20px;
}
.steps__number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-dark-blue), var(--color-navy));
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(11,52,89,.2);
}
.steps__connector {
    position: absolute;
    top: 28px;
    left: calc(50% + 28px);
    right: calc(-50% + 28px);
    height: 3px;
    background: linear-gradient(90deg, var(--color-dark-blue), var(--color-border));
    z-index: 1;
}
.steps__title {
    font-size: 1.0625rem;
    margin-bottom: 8px;
}
.steps__desc {
    color: var(--color-gray);
    font-size: .875rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .steps__track {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding-left: 28px;
    }
    .steps__item {
        text-align: left;
        max-width: none;
        padding: 0 0 32px 44px;
        position: relative;
    }
    .steps__number {
        position: absolute;
        left: -28px;
        top: 0;
        margin: 0;
        width: 48px;
        height: 48px;
        font-size: 1.125rem;
    }
    .steps__connector {
        position: absolute;
        top: 48px;
        left: -4px;
        right: auto;
        width: 3px;
        height: calc(100% - 48px);
        background: linear-gradient(180deg, var(--color-dark-blue), var(--color-border));
    }
}

/* ---- 14. Testimonials ---- */
.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.testimonial-card__quote-mark {
    flex-shrink: 0;
}
.testimonial-card__quote {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    font-style: italic;
    flex-grow: 1;
}
.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}
.testimonial-card__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-dark-blue), var(--color-navy));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .875rem;
    flex-shrink: 0;
}
.testimonial-card__name {
    display: block;
    font-size: .9375rem;
    color: var(--color-dark-blue);
}
.testimonial-card__role {
    display: block;
    font-size: .8125rem;
    color: var(--color-gray);
}

/* ---- Video Modal ---- */
.video-modal {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    z-index: 10000; display: flex; align-items: center; justify-content: center;
    animation: fadeIn .2s ease;
}
.video-modal__backdrop {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,.85);
}
.video-modal__content {
    position: relative; z-index: 1; width: 90%; max-width: 900px;
}
.video-modal__close {
    position: absolute; top: -40px; right: 0; background: none; border: none;
    color: #fff; font-size: 2rem; cursor: pointer; padding: 4px 12px;
    transition: opacity .2s;
}
.video-modal__close:hover { opacity: .7; }
.video-modal__player {
    position: relative; padding-bottom: 56.25%; height: 0;
    border-radius: 12px; overflow: hidden; background: #000;
}
.video-modal__player iframe {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}

/* ---- Calculator Chart ---- */
.calc-chart { padding: 20px 0; }
.calc-chart__bars {
    display: flex; align-items: flex-end; gap: 12px;
    height: 200px; padding: 0 8px;
}
.calc-chart__bar-group {
    flex: 1; display: flex; flex-direction: column; align-items: center;
    height: 100%; justify-content: flex-end;
}
.calc-chart__bar {
    width: 100%; max-width: 60px; min-height: 4px;
    background: linear-gradient(180deg, var(--color-orange), var(--color-orange-hover));
    border-radius: 6px 6px 0 0; transition: height .4s ease;
}
.calc-chart__label {
    margin-top: 8px; font-size: .75rem; font-weight: 600;
    color: var(--color-gray);
}
.calc-chart__value {
    font-size: .7rem; color: var(--color-dark-blue); font-weight: 700;
    margin-top: 2px;
}

/* ---- Back to Top Button ---- */
.back-to-top {
    position: fixed; bottom: 32px; right: 32px; z-index: 999;
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--color-dark-blue); color: #fff;
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
    opacity: 0; transform: translateY(20px); pointer-events: none;
    transition: opacity .3s, transform .3s, background .2s;
}
.back-to-top.visible {
    opacity: 1; transform: translateY(0); pointer-events: auto;
}
.back-to-top:hover { background: var(--color-orange); }

/* ---- Form Validation States ---- */
.is-invalid {
    border-color: #e53e3e !important;
    box-shadow: 0 0 0 3px rgba(229,62,62,.15) !important;
}
.field-error {
    display: block; font-size: .8rem; color: #e53e3e; margin-top: 4px;
    min-height: 1.2em;
}

/* ---- Scrolled Header ---- */
.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
}

/* ---- Section Entrance Animation ---- */
.section {
    opacity: 0; transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}
.section.visible {
    opacity: 1; transform: translateY(0);
}

/* ---- Animations ---- */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---- Flash Messages ---- */
.alert {
    padding: 16px 20px; border-radius: 8px; margin-bottom: 24px;
    font-size: .9375rem; font-weight: 500;
}
.alert-success {
    background: #f0fff4; border: 1px solid #c6f6d5; color: #276749;
}
.alert-error {
    background: #fff5f5; border: 1px solid #fed7d7; color: #c53030;
}

/* ---- Additional Responsive ---- */
@media (max-width: 768px) {
    .calc-chart__bars { height: 150px; }
    .back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; }
    .video-modal__content { width: 95%; }
    .video-modal__close { top: -36px; }
}

/* =============================================
   MODERN REDESIGN — SaaS STYLES
   ============================================= */

/* ---- Animations / Keyframes ---- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .6; transform: scale(1.3); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes floatSlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(2deg); }
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes gridFade {
    0%, 100% { opacity: .03; }
    50% { opacity: .08; }
}
@keyframes orbPulse {
    0%, 100% { opacity: .15; transform: scale(1); }
    50% { opacity: .25; transform: scale(1.1); }
}
@keyframes dashboardSlideUp {
    from { opacity: 0; transform: translateY(40px) rotate(2deg); }
    to { opacity: 1; transform: translateY(0) rotate(2deg); }
}
@keyframes counterPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* ---- Utility Classes ---- */
.gradient-text {
    background: linear-gradient(135deg, #fff 0%, var(--color-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.glass-card {
    background: rgba(255,255,255,.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.3);
}
.glow-shadow {
    box-shadow: var(--shadow-glow-orange);
}

/* ---- Animate on scroll triggers ---- */
[data-animate] {
    opacity: 0;
    transition: opacity .7s ease, transform .7s ease;
}
[data-animate="fadeInUp"] {
    transform: translateY(30px);
}
[data-animate="slideInLeft"] {
    transform: translateX(-40px);
}
[data-animate="slideInRight"] {
    transform: translateX(40px);
}
[data-animate].animated {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* ---- Section Header Modern ---- */
.section-header--modern {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}
.section-header__badge {
    display: inline-block;
    background: rgba(59,130,246,.08);
    color: var(--color-blue);
    font-size: .75rem;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 16px;
    border: 1px solid rgba(59,130,246,.15);
}
.section-header--modern h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.15;
    margin-bottom: 12px;
}
.section-header--modern p {
    color: var(--color-gray);
    font-size: 1.0625rem;
    margin-top: 8px;
    line-height: 1.7;
}
.section-header__line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-orange), var(--color-blue));
    border-radius: 2px;
    margin: 20px auto 0;
}

/* ---- Alternating section backgrounds ---- */
.section-feature-cards--modern { background: #fff; }
.section-content-cards--modern { background: #f8fafc; }
.section-awards--modern { background: #fff; }

/* ---- Button Glow ---- */
.btn-glow {
    box-shadow: 0 4px 15px rgba(237,137,54,.35);
    transition: all .3s ease;
}
.btn-glow:hover {
    box-shadow: 0 6px 25px rgba(237,137,54,.5);
    transform: translateY(-2px);
}

/* ===========================================
   HERO SECTION — MODERN SPLIT LAYOUT
   =========================================== */
.section-hero--modern {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #060d1b 0%, var(--color-dark-blue) 40%, #0f4c75 80%, #0b3459 100%);
    color: #fff;
    overflow: hidden;
    padding: 80px 0 60px;
}
.section-hero--modern .section-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 20%, rgba(237,137,54,.12), transparent 55%),
        radial-gradient(ellipse at 20% 80%, rgba(59,130,246,.08), transparent 50%);
    pointer-events: none;
}

/* Background decorative elements */
.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridFade 8s ease-in-out infinite;
    pointer-events: none;
}
.hero-bg-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}
.hero-bg-orb--1 {
    width: 400px; height: 400px;
    background: rgba(237,137,54,.12);
    top: -100px; right: -50px;
    animation: orbPulse 6s ease-in-out infinite;
}
.hero-bg-orb--2 {
    width: 300px; height: 300px;
    background: rgba(59,130,246,.1);
    bottom: -80px; left: 10%;
    animation: orbPulse 8s ease-in-out infinite 2s;
}
.hero-bg-orb--3 {
    width: 200px; height: 200px;
    background: rgba(16,185,129,.08);
    top: 40%; left: 40%;
    animation: orbPulse 10s ease-in-out infinite 4s;
}

/* Split layout */
.section-hero__split {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}
.section-hero--modern .section-hero__text {
    text-align: left;
}
.section-hero--modern .section-hero__highlight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(237,137,54,.12);
    border: 1px solid rgba(237,137,54,.25);
    color: var(--color-orange);
    font-size: .8125rem;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
    letter-spacing: .03em;
    text-transform: uppercase;
}
.section-hero__highlight-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-green);
    animation: pulse 2s ease-in-out infinite;
}
.section-hero--modern .section-hero__heading {
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    color: #fff;
    margin-bottom: 16px;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.02em;
}
.section-hero--modern .section-hero__tagline {
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    color: rgba(255,255,255,.85);
    margin-bottom: 12px;
    font-weight: 500;
    line-height: 1.5;
}
.section-hero--modern .section-hero__description {
    font-size: 1rem;
    color: rgba(255,255,255,.65);
    max-width: 500px;
    margin: 0 0 12px 0;
    line-height: 1.7;
}
.section-hero--modern .section-hero__subtext {
    font-size: .9375rem;
    color: rgba(255,255,255,.45);
    margin-bottom: 8px;
}
.section-hero--modern .section-hero__actions {
    display: flex;
    gap: 14px;
    margin-top: 28px;
    flex-wrap: wrap;
}
.section-hero--modern .section-hero__actions .btn {
    gap: 8px;
}

/* Trusted by */
.section-hero__trusted {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.1);
}
.section-hero__trusted-label {
    display: block;
    font-size: .8125rem;
    color: rgba(255,255,255,.4);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 16px;
}
.section-hero__trusted-logos {
    display: flex;
    gap: 20px;
    align-items: center;
}
.section-hero__trusted-logo-placeholder {
    width: 80px;
    height: 28px;
    border-radius: 6px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.06);
}

/* Dashboard Mockup */
.section-hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-dashboard {
    width: 100%;
    max-width: 440px;
    background: rgba(15,25,50,.9);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.1);
    box-shadow:
        0 20px 60px rgba(0,0,0,.4),
        0 0 40px rgba(59,130,246,.05);
    overflow: hidden;
    transform: rotate(2deg);
    animation: dashboardSlideUp .8s ease-out .3s both;
}
.hero-dashboard__header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(255,255,255,.04);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.hero-dashboard__header-dots {
    display: flex;
    gap: 6px;
}
.hero-dashboard__header-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.hero-dashboard__header-dots span:nth-child(1) { background: #ef4444; }
.hero-dashboard__header-dots span:nth-child(2) { background: #eab308; }
.hero-dashboard__header-dots span:nth-child(3) { background: #22c55e; }
.hero-dashboard__header-title {
    font-size: .875rem;
    font-weight: 600;
    color: rgba(255,255,255,.9);
    flex: 1;
}
.hero-dashboard__header-badge {
    font-size: .6875rem;
    font-weight: 700;
    color: var(--color-green);
    background: rgba(16,185,129,.12);
    padding: 3px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: .04em;
    display: flex;
    align-items: center;
    gap: 5px;
}
.hero-dashboard__header-badge::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-green);
    animation: pulse 2s ease-in-out infinite;
}
.hero-dashboard__body {
    padding: 6px 0;
}
.hero-dashboard__row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    transition: background .2s;
    border-bottom: 1px solid rgba(255,255,255,.04);
}
.hero-dashboard__row:last-child {
    border-bottom: none;
}
.hero-dashboard__row:hover {
    background: rgba(255,255,255,.03);
}
.hero-dashboard__status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.hero-dashboard__status--online {
    background: var(--color-green);
    box-shadow: 0 0 6px rgba(16,185,129,.5);
    animation: pulse 2.5s ease-in-out infinite;
}
.hero-dashboard__status--moving {
    background: var(--color-orange);
    box-shadow: 0 0 6px rgba(237,137,54,.5);
    animation: pulse 2s ease-in-out infinite .5s;
}
.hero-dashboard__status--idle {
    background: #6b7280;
}
.hero-dashboard__device {
    font-size: .8125rem;
    font-weight: 600;
    color: rgba(255,255,255,.85);
    min-width: 90px;
}
.hero-dashboard__location {
    font-size: .75rem;
    color: rgba(255,255,255,.45);
    flex: 1;
}
.hero-dashboard__tag {
    font-size: .6875rem;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: .03em;
}
.hero-dashboard__tag--green {
    color: var(--color-green);
    background: rgba(16,185,129,.12);
}
.hero-dashboard__tag--orange {
    color: var(--color-orange);
    background: rgba(237,137,54,.12);
}
.hero-dashboard__tag--gray {
    color: #9ca3af;
    background: rgba(156,163,175,.12);
}

/* Dashboard stats */
.hero-dashboard__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255,255,255,.08);
}
.hero-dashboard__stat {
    text-align: center;
    padding: 14px 8px;
    border-right: 1px solid rgba(255,255,255,.06);
}
.hero-dashboard__stat:last-child {
    border-right: none;
}
.hero-dashboard__stat-value {
    display: block;
    font-size: 1.125rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}
.hero-dashboard__stat-label {
    display: block;
    font-size: .625rem;
    color: rgba(255,255,255,.45);
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-top: 2px;
}

/* Floating cards */
.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: .8125rem;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(0,0,0,.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 3;
}
.hero-float-card--alert {
    background: rgba(16,185,129,.15);
    border: 1px solid rgba(16,185,129,.2);
    color: var(--color-green);
    bottom: 25%;
    left: -20px;
    animation: float 4s ease-in-out infinite;
}
.hero-float-card--recovery {
    background: rgba(237,137,54,.15);
    border: 1px solid rgba(237,137,54,.2);
    color: var(--color-orange);
    top: 10%;
    right: -10px;
    animation: float 5s ease-in-out infinite 1s;
}

/* Hero mobile */
@media (max-width: 991px) {
    .section-hero__split {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .section-hero--modern .section-hero__text {
        text-align: center;
    }
    .section-hero--modern .section-hero__description {
        margin: 0 auto 12px;
    }
    .section-hero--modern .section-hero__actions {
        justify-content: center;
    }
    .section-hero__trusted {
        text-align: center;
    }
    .section-hero__trusted-logos {
        justify-content: center;
    }
    .hero-dashboard {
        transform: rotate(0deg);
        max-width: 380px;
        margin: 0 auto;
    }
    .hero-float-card--alert {
        left: 5%;
        bottom: 10%;
    }
    .hero-float-card--recovery {
        right: 5%;
        top: 5%;
    }
}
@media (max-width: 600px) {
    .section-hero--modern {
        padding: 56px 0 40px;
        min-height: auto;
    }
    .hero-float-card {
        display: none;
    }
    .hero-dashboard__location {
        display: none;
    }
}

/* ===========================================
   FEATURE CARDS — MODERN
   =========================================== */
.feature-card--modern {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: transform .3s ease, box-shadow .3s ease;
}
.feature-card--modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,.08), 0 0 0 1px var(--card-accent, var(--color-blue));
}
.feature-card__accent-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--card-accent, var(--color-blue));
    border-radius: 4px 0 0 4px;
    opacity: 0;
    transition: opacity .3s;
}
.feature-card--modern:hover .feature-card__accent-border {
    opacity: 1;
}
.feature-card__icon--gradient {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--card-accent, var(--color-blue)), var(--color-dark-blue));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
    transition: transform .3s;
}
.feature-card--modern:hover .feature-card__icon--gradient {
    transform: scale(1.08);
}
.feature-card--modern .feature-card__checklist .checkmark {
    color: var(--card-accent, var(--color-green));
    display: flex;
    align-items: center;
}
.feature-card__cta-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--card-accent, var(--color-blue));
    font-size: .875rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    padding-top: 8px;
    transition: gap .2s, color .2s;
}
.feature-card__cta-link:hover {
    gap: 10px;
    color: var(--color-dark-blue);
}

/* ===========================================
   AWARDS — MODERN
   =========================================== */
.awards__row--modern {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 20px 0;
}
.awards__item--modern {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    background: #fff;
    transition: all .3s ease;
}
.awards__item--modern:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.awards__item--modern img {
    max-height: 56px;
    width: auto;
    filter: grayscale(.6) opacity(.7);
    transition: filter .3s, opacity .3s;
}
.awards__item--modern:hover img {
    filter: grayscale(0) opacity(1);
}
a.awards__item--modern {
    text-decoration: none;
}

/* ===========================================
   CONTENT CARDS — GLASS EFFECT
   =========================================== */
.content-card--glass {
    background: rgba(255,255,255,.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.6);
    box-shadow: var(--shadow-md);
    transition: transform .3s ease, box-shadow .3s ease;
}
.section-content-cards--modern .content-card--glass {
    border: 1px solid rgba(0,0,0,.06);
}
.content-card--glass:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}
.content-card__icon--gradient {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--icon-from, var(--color-blue)), var(--icon-to, var(--color-dark-blue)));
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-size: 1.625rem;
    margin-bottom: 8px;
    color: #fff;
    box-shadow: 0 4px 14px rgba(0,0,0,.1);
    transition: transform .3s;
}
.content-card--glass:hover .content-card__icon--gradient {
    transform: scale(1.08) rotate(-3deg);
}
.content-card--glass .content-card__title {
    font-size: 1.1875rem;
    font-weight: 700;
    letter-spacing: -.01em;
}
.content-card__points--check {
    list-style: none;
    padding-left: 0;
}
.content-card__points--check li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .875rem;
    color: var(--color-text);
    padding-left: 0;
    position: relative;
}
.content-card__points--check li::before {
    display: none;
}
.content-card__points--check li svg {
    flex-shrink: 0;
}

/* ===========================================
   CTA SECTION — MODERN
   =========================================== */
.section-cta--modern {
    position: relative;
    background: linear-gradient(135deg, #060d1b 0%, var(--color-dark-blue) 50%, #0f4c75 100%);
    padding: 100px 0;
    overflow: hidden;
}
.section-cta--modern::before {
    display: none;
}
.cta-bg-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(237,137,54,.1), transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(59,130,246,.08), transparent 50%);
    pointer-events: none;
}
.cta-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}
.cta-bg-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}
.cta-bg-orb--1 {
    width: 300px; height: 300px;
    background: rgba(237,137,54,.12);
    top: -100px; left: 20%;
    animation: orbPulse 7s ease-in-out infinite;
}
.cta-bg-orb--2 {
    width: 250px; height: 250px;
    background: rgba(59,130,246,.1);
    bottom: -80px; right: 20%;
    animation: orbPulse 9s ease-in-out infinite 3s;
}
.section-cta--modern .section-cta__inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    text-align: center;
}
.section-cta__heading--gradient {
    font-size: clamp(2rem, 4.5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -.02em;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.15;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,.8) 50%, var(--color-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-cta--modern .section-cta__desc {
    font-size: 1.0625rem;
    color: rgba(255,255,255,.65);
    margin-bottom: 32px;
    line-height: 1.7;
}
.section-cta__contact--pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 36px;
}
.section-cta__pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.9);
    text-decoration: none;
    font-size: .9375rem;
    font-weight: 500;
    transition: all .25s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.section-cta__pill:hover {
    background: rgba(255,255,255,.15);
    border-color: rgba(255,255,255,.25);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.section-cta__pill svg {
    flex-shrink: 0;
    opacity: .7;
}

/* ===========================================
   FOOTER — MODERN
   =========================================== */
.site-footer--modern {
    background: linear-gradient(180deg, #0b1e36 0%, #060d1b 100%);
}
.site-footer--modern .footer-main {
    padding: 64px 0 40px;
}
.site-footer--modern .social-link {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,.06);
    transition: all .3s ease;
}
.site-footer--modern .social-link:hover {
    background: var(--color-orange);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(237,137,54,.3);
}
.footer-bottom--modern {
    border-top: none;
    position: relative;
    padding: 20px 0;
}
.footer-bottom--modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
}

/* Newsletter */
.footer-newsletter {
    background: linear-gradient(135deg, var(--color-dark-blue), #0b1e36);
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-newsletter__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 40px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.footer-newsletter__text h3 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.footer-newsletter__text p {
    color: rgba(255,255,255,.5);
    font-size: .9375rem;
}
.footer-newsletter__form {
    display: flex;
    gap: 10px;
    flex: 1;
    max-width: 420px;
}
.footer-newsletter__input {
    flex: 1;
    padding: 12px 18px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
    color: #fff;
    font-size: .9375rem;
    font-family: var(--font-family);
    outline: none;
    transition: border-color .2s, background .2s;
}
.footer-newsletter__input::placeholder {
    color: rgba(255,255,255,.4);
}
.footer-newsletter__input:focus {
    border-color: var(--color-orange);
    background: rgba(255,255,255,.1);
}
.footer-newsletter__btn {
    white-space: nowrap;
}
@media (max-width: 600px) {
    .footer-newsletter__inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-newsletter__form {
        width: 100%;
        max-width: none;
        flex-direction: column;
    }
}

/* ===========================================
   HERO V2 — ANIMATED GRADIENT + PARTICLES
   =========================================== */

/* --- New keyframes for v2 --- */
@keyframes floatParticle {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
    50% { transform: translateY(-20px) translateX(10px); opacity: 0.7; }
}
@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes shimmerBtn {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes livePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,.4); }
    50% { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}
@keyframes dashboardGlow {
    0%, 100% { opacity: .4; transform: scale(1); }
    50% { opacity: .7; transform: scale(1.05); }
}

/* Hero v2 base */
.section-hero--v2 {
    background: #050d1a;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(11,52,89,.6) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(15,76,117,.4) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(11,52,89,.3) 0%, transparent 60%);
}
.section-hero--v2 .section-hero__overlay {
    background:
        radial-gradient(ellipse at 70% 20%, rgba(237,137,54,.1), transparent 55%),
        radial-gradient(ellipse at 20% 80%, rgba(59,130,246,.07), transparent 50%);
}

/* Particles container */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}
.hero-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    animation: floatParticle 6s ease-in-out infinite;
}
/* Scatter 24 particles with varied positions and timings */
.hero-particle--1  { top: 8%;  left: 5%;  animation-duration: 5s; animation-delay: 0s; }
.hero-particle--2  { top: 15%; left: 15%; animation-duration: 7s; animation-delay: 0.5s; width: 2px; height: 2px; }
.hero-particle--3  { top: 25%; left: 25%; animation-duration: 6s; animation-delay: 1s; }
.hero-particle--4  { top: 10%; left: 40%; animation-duration: 8s; animation-delay: 0.3s; width: 2px; height: 2px; }
.hero-particle--5  { top: 35%; left: 10%; animation-duration: 5.5s; animation-delay: 2s; }
.hero-particle--6  { top: 50%; left: 20%; animation-duration: 7.5s; animation-delay: 1.5s; width: 4px; height: 4px; }
.hero-particle--7  { top: 60%; left: 8%;  animation-duration: 6.5s; animation-delay: 0.8s; }
.hero-particle--8  { top: 75%; left: 15%; animation-duration: 5s; animation-delay: 3s; width: 2px; height: 2px; }
.hero-particle--9  { top: 80%; left: 30%; animation-duration: 8s; animation-delay: 0.2s; }
.hero-particle--10 { top: 90%; left: 45%; animation-duration: 6s; animation-delay: 1.8s; }
.hero-particle--11 { top: 5%;  left: 55%; animation-duration: 7s; animation-delay: 2.5s; width: 4px; height: 4px; }
.hero-particle--12 { top: 20%; left: 65%; animation-duration: 5.5s; animation-delay: 0.7s; }
.hero-particle--13 { top: 40%; left: 50%; animation-duration: 6.5s; animation-delay: 3.5s; width: 2px; height: 2px; }
.hero-particle--14 { top: 55%; left: 60%; animation-duration: 8s; animation-delay: 1.2s; }
.hero-particle--15 { top: 70%; left: 55%; animation-duration: 5s; animation-delay: 2.8s; }
.hero-particle--16 { top: 85%; left: 65%; animation-duration: 7.5s; animation-delay: 0.4s; width: 4px; height: 4px; }
.hero-particle--17 { top: 12%; left: 75%; animation-duration: 6s; animation-delay: 1.6s; }
.hero-particle--18 { top: 30%; left: 85%; animation-duration: 5.5s; animation-delay: 3.2s; width: 2px; height: 2px; }
.hero-particle--19 { top: 45%; left: 78%; animation-duration: 7s; animation-delay: 0.9s; }
.hero-particle--20 { top: 65%; left: 82%; animation-duration: 8s; animation-delay: 2.2s; }
.hero-particle--21 { top: 78%; left: 90%; animation-duration: 6.5s; animation-delay: 1.4s; width: 4px; height: 4px; }
.hero-particle--22 { top: 92%; left: 80%; animation-duration: 5s; animation-delay: 3.8s; }
.hero-particle--23 { top: 18%; left: 92%; animation-duration: 7.5s; animation-delay: 0.6s; width: 2px; height: 2px; }
.hero-particle--24 { top: 52%; left: 95%; animation-duration: 6s; animation-delay: 2.7s; }

/* Glowing orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}
.hero-orb--orange {
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(237,137,54,.18) 0%, transparent 70%);
    top: -120px; right: -80px;
    filter: blur(60px);
    animation: glowPulse 6s ease-in-out infinite;
}
.hero-orb--blue {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(59,130,246,.15) 0%, transparent 70%);
    bottom: -100px; left: 5%;
    filter: blur(60px);
    animation: glowPulse 8s ease-in-out infinite 2s;
}
.hero-orb--blue-sm {
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(59,130,246,.1) 0%, transparent 70%);
    top: 35%; left: 45%;
    filter: blur(50px);
    animation: glowPulse 10s ease-in-out infinite 4s;
}

/* Heading gradient text */
.section-hero__heading--gradient {
    font-size: clamp(2.5rem, 6vw, 3.75rem) !important;
    background: linear-gradient(180deg, #ffffff 20%, #a8c8e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Bigger CTA button */
.btn-xl {
    padding: 18px 44px;
    font-size: 1.125rem;
    border-radius: 12px;
}
.btn-shimmer {
    position: relative;
    overflow: hidden;
}
.btn-shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        transparent 30%,
        rgba(255,255,255,.3) 50%,
        transparent 70%,
        transparent 100%
    );
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity .3s;
}
.btn-shimmer:hover::after {
    opacity: 1;
    animation: shimmerBtn 1.5s ease-in-out infinite;
}

/* Outline white button */
.btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.25);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.4);
    color: #fff;
}

/* Dashboard glassmorphism */
.hero-dashboard--glass {
    background: rgba(255,255,255,.05);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    box-shadow:
        0 20px 60px rgba(0,0,0,.4),
        0 0 0 1px rgba(255,255,255,.05);
    transform: rotate(2deg);
    animation: dashboardSlideUp .8s ease-out .3s both;
}
.hero-dashboard--glass .hero-dashboard__header {
    background: rgba(255,255,255,.03);
    border-bottom: 1px solid rgba(255,255,255,.08);
    border-radius: 20px 20px 0 0;
}
.hero-dashboard--glass .hero-dashboard__row {
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.hero-dashboard--glass .hero-dashboard__row:last-child {
    border-bottom: none;
}

/* Dashboard glow ring */
.hero-dashboard-glow {
    position: absolute;
    width: 480px;
    height: 480px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(237,137,54,.12) 0%, rgba(59,130,246,.08) 40%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    animation: dashboardGlow 6s ease-in-out infinite;
    z-index: 0;
}

/* Live badge pulse */
.hero-dashboard__header-badge--pulse {
    animation: livePulse 2s ease-in-out infinite;
}
.hero-dashboard__header-badge--pulse::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-green);
    animation: pulse 2s ease-in-out infinite;
}

/* Floating cards glassmorphism + float animation */
.hero-float-card--glass {
    background: rgba(255,255,255,.06);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
}
.hero-float-card--alert.hero-float-card--glass {
    background: rgba(16,185,129,.1);
    border-color: rgba(16,185,129,.15);
    animation: floatCard 4s ease-in-out infinite;
}
.hero-float-card--recovery.hero-float-card--glass {
    background: rgba(237,137,54,.1);
    border-color: rgba(237,137,54,.15);
    animation: floatCard 5s ease-in-out infinite 1s;
}

/* Hero v2 mobile overrides */
@media (max-width: 991px) {
    .section-hero--v2 .hero-dashboard--glass {
        transform: rotate(0deg);
    }
    .section-hero--v2 .hero-dashboard-glow {
        width: 350px;
        height: 350px;
    }
}
@media (max-width: 600px) {
    .section-hero--v2 .hero-orb {
        display: none;
    }
    .section-hero__heading--gradient {
        font-size: clamp(2rem, 8vw, 2.5rem) !important;
    }
}


/* ===========================================
   FEATURE CARDS V2 — FLEX CENTERED LAYOUT
   =========================================== */

/* Flex grid for centered cards */
.feature-cards-grid {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    gap: 24px;
}
.feature-cards-grid .feature-card {
    width: calc(33.333% - 24px);
    min-width: 0;
}

/* Card v2 design */
.feature-card--v2 {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    min-height: 420px;
    position: relative;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}
.feature-card--v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,.1), 0 0 0 1px var(--card-accent, var(--color-blue));
}
.feature-card--v2:hover .feature-card__accent-border {
    opacity: 1;
}

/* Image area v2 */
.feature-card__image--v2 {
    margin: -32px -32px 16px;
    padding: 24px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    min-height: 168px;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}
.feature-card__image--v2 img {
    width: auto;
    max-width: 100%;
    height: 120px;
    object-fit: contain;
}

/* Title v2 */
.feature-card__title--v2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark-blue);
}

/* Tagline v2 — 2 line ellipsis */
.feature-card__tagline--v2 {
    color: var(--color-gray);
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Checklist v2 — max 3 visible */
.feature-card__checklist--v2 .checkmark {
    color: var(--card-accent, var(--color-green));
}

/* CTA link v2 */
.feature-card__cta-link--v2 {
    margin-top: auto;
    padding-top: 12px;
}

/* Section header description */
.section-header__desc {
    color: var(--color-gray);
    font-size: .9375rem;
    margin-top: 4px;
    line-height: 1.6;
}

/* Feature cards responsive */
@media (max-width: 992px) {
    .feature-cards-grid .feature-card {
        width: calc(50% - 16px);
    }
}
@media (max-width: 600px) {
    .feature-cards-grid .feature-card {
        width: 100%;
    }
    .feature-card--v2 {
        min-height: auto;
    }
}
