@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* === 1. ROOT VARIABLES === */
:root {
    --bg-dark: #f4f7fb;
    --bg-surface: #edf1f7;
    --bg-card: #ffffff;
    --accent-color: #1b4276;
    --accent-light: #2563a8;
    --brand-orange: #F26522;
    --brand-orange-hover: #d44c10;
    --primary-color: #1b4276;
    --bg-light: #f4f7fb;
    --text-color: #374151;
    --text-primary: #0f1923;
    --text-secondary: #5b6d82;
    --border-subtle: rgba(0,0,0,0.08);
    --border-accent: rgba(242,101,34,0.3);
    --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.2s ease;
    --shadow-card: 0 2px 12px rgba(0,0,0,0.07);
    --shadow-hover: 0 12px 36px rgba(0,0,0,0.13);
}

/* === 2. BODY === */
body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    background-color: #ffffff;
    line-height: 1.6;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    scroll-behavior: smooth;
}

/* === 3. ANIMATIONS === */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInDown {
    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 scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-300px * 6)); }
}

body > section, body > header {
    animation: slideInUp 0.6s ease-out forwards;
    opacity: 0;
}
section:nth-of-type(1) { animation-delay: 0.1s; }
section:nth-of-type(2) { animation-delay: 0.2s; }
section:nth-of-type(3) { animation-delay: 0.3s; }
section:nth-of-type(4) { animation-delay: 0.4s; }
section:nth-of-type(5) { animation-delay: 0.5s; }
section:nth-of-type(6) { animation-delay: 0.6s; }

/* === 4. NAVIGATION === */
nav {
    background: #ffffff;
    border-bottom: 2px solid var(--brand-orange);
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    box-sizing: border-box;
    height: 80px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
}

.nav-hidden { transform: translateY(-100%); }

.logo-img {
    height: 76px !important;
    width: auto;
    display: block;
    transition: transform var(--transition-fast);
}

.logo-img:hover { transform: scale(1.04); }

nav ul { list-style: none; display: flex; margin: 0; padding: 0; align-items: center; }
nav ul li { margin-left: 30px; }
nav ul li a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    transition: color var(--transition-smooth);
    position: relative;
    display: inline-block;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-orange);
    border-radius: 2px;
    transition: width var(--transition-smooth);
}
nav ul li a:hover::after,
nav ul li a.active::after { width: 100%; }
nav ul li a:hover { color: var(--brand-orange); }
nav ul li a.active { color: var(--brand-orange); }

/* Contact as pill button */
nav ul li:last-child a {
    background: var(--brand-orange);
    color: #fff;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: all var(--transition-smooth);
}
nav ul li:last-child a::after { display: none; }
nav ul li:last-child a:hover {
    background: var(--brand-orange-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(242,101,34,0.35);
}

/* === 5. HAMBURGER === */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    z-index: 1001;
    gap: 5px;
}
.hamburger span {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all var(--transition-smooth);
    display: block;
    border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 7px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -7px); }

/* === 6. LOGO SLIDER === */
.logo-slider {
    width: 100%;
    overflow: hidden;
    background: var(--bg-surface);
    padding: 50px 0;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    animation: fadeIn 0.8s ease-out;
}

.logo-track {
    display: flex;
    width: calc(300px * 12);
    animation: scroll 40s linear infinite;
}

.logo-slider:hover .logo-track { animation-play-state: paused; }

.logo-track img {
    width: 220px;
    height: 100px;
    object-fit: contain;
    margin: 0 40px;
    opacity: 0.82;
    transition: transform var(--transition-smooth), opacity var(--transition-smooth);
}

.logo-track img:hover {
    transform: scale(1.08) translateY(-5px);
    opacity: 1;
}

/* === 7. SECTIONS === */
section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* === 8. PAGE HEADER === */
.page-header {
    background: linear-gradient(160deg, #060b16 0%, #0d1b30 60%, #0a1220 100%);
    border-bottom: 1px solid var(--border-subtle);
    padding: 32px 20px 28px;
    margin-top: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: slideInDown 0.6s ease-out forwards;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(27,66,118,0.25) 0%, transparent 65%);
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--brand-orange), transparent);
}

.page-header h1 {
    margin: 0;
    color: #ffffff;
    font-size: 2.2rem;
    letter-spacing: -1px;
    text-transform: uppercase;
    font-weight: 900;
    line-height: 1;
    position: relative;
    z-index: 1;
    animation: scaleIn 0.6s ease-out forwards;
}

.page-header .eyebrow {
    margin-bottom: 8px;
}

/* === 9. GRID LAYOUTS === */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.grid-2 > :nth-child(2) { animation-delay: 0.15s; }

/* === 10. CARDS === */
.card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    border-top: 3px solid var(--accent-color);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-smooth);
    animation: slideInUp 0.6s ease-out;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover), 0 0 0 1px var(--border-accent);
    border-top-color: var(--brand-orange);
    border-color: var(--border-accent);
}

.bg-gray { background-color: var(--bg-surface); }
.card.bg-gray { background: var(--bg-surface); }

/* === 11. VALUE GRID === */
.value-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-smooth);
    animation: slideInUp 0.6s ease-out;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--brand-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-smooth);
}
.value-card:hover::before { transform: scaleX(1); }

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover), 0 0 0 1px var(--border-accent);
    border-color: var(--border-accent);
}

.value-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--text-primary);
    transition: color var(--transition-smooth);
}
.value-card:hover h3 { color: var(--brand-orange); }
.value-card p { margin: 0; color: var(--text-secondary); line-height: 1.7; }

/* === 12. ACCENT LINES === */
.accent-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-orange), rgba(242,101,34,0.2));
    margin: 12px auto 30px;
    border-radius: 2px;
    animation: slideInUp 0.8s ease-out;
}

.section-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-orange), rgba(242,101,34,0.2));
    margin: 12px auto 25px;
    border-radius: 2px;
}

/* === 13. HEADINGS === */
h1 { color: var(--text-primary); }

h2 {
    color: var(--text-primary);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: slideInUp 0.6s ease-out;
}

h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
    transition: color var(--transition-smooth), transform var(--transition-smooth);
}

p { color: var(--text-color); }

/* === 14. BG SURFACE === */
.bg-gray-carousel {
    background: var(--bg-surface);
    padding: 60px 0;
    animation: fadeIn 0.8s ease-out;
}

/* === 15. FOOTER === */
footer {
    background: linear-gradient(180deg, #050a14 0%, #080e1a 100%);
    color: #ffffff;
    padding: 50px 20px 20px;
    margin-top: auto;
    border-top: 1px solid var(--border-subtle);
    animation: slideInUp 0.6s ease-out;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 50px;
    align-items: flex-start;
}

.footer-column { animation: fadeIn 0.8s ease-out; }
.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }

.footer-column:nth-child(2),
.footer-column:nth-child(3),
.footer-column:nth-child(4) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-badge {
    background: white;
    padding: 8px 14px;
    display: inline-block;
    border-radius: 6px;
    margin-bottom: 14px;
    transition: all var(--transition-smooth);
}
.footer-logo-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(242,101,34,0.3);
}

.footer-logo { height: 70px; width: auto; display: block; }

.footer-column h4 {
    color: var(--brand-orange);
    margin: 0 0 14px 0 !important;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 2px;
    font-weight: 700;
    animation: slideInUp 0.6s ease-out;
}

.footer-column p, .footer-column li {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0 0 6px 0 !important;
    transition: color var(--transition-fast);
}

.footer-tagline {
    max-width: 520px;
    white-space: normal;
    overflow-wrap: normal;
    word-break: keep-all;
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
}

.footer-column ul { list-style: none; padding: 0; margin: 0; }

.footer-column a {
    color: #c0d0e4;
    text-decoration: none;
    transition: all var(--transition-smooth);
    position: relative;
    display: inline-block;
    font-size: 0.85rem;
}

.footer-column a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--brand-orange);
    transition: width var(--transition-smooth);
}
.footer-column a:hover::after { width: 100%; }
.footer-column a:hover { color: var(--brand-orange); transform: translateX(3px); }

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--border-subtle);
    padding-top: 18px;
    margin-top: 40px;
    font-size: 0.78rem;
    color: #4a5a70;
    animation: fadeIn 1s ease-out;
    animation-delay: 0.5s;
}

/* === 16. BUTTONS === */
.btn {
    display: inline-block;
    background-color: var(--brand-orange);
    color: white !important;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    transition: all var(--transition-smooth);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.6s ease-out;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.15);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}
.btn:hover::before { width: 300px; height: 300px; }

.footer-column .btn {
    padding: 4px 18px;
    font-size: 0.8rem;
    margin-top: 8px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn:hover {
    background-color: var(--brand-orange-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(242, 101, 34, 0.45);
}
.btn:active { transform: translateY(-1px); }

.btn-blue {
    background-color: var(--accent-color);
}
.btn-blue:hover {
    background-color: var(--accent-light);
    box-shadow: 0 8px 25px rgba(27, 66, 118, 0.45);
}

/* === 17. CUSTOM LIST === */
.custom-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text-secondary);
    transition: all var(--transition-smooth);
    line-height: 1.6;
}

.custom-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-orange);
    font-weight: bold;
    font-size: 1rem;
    transition: all var(--transition-smooth);
}

.custom-list li:hover {
    transform: translateX(6px);
    color: var(--text-primary);
}

.custom-list li:hover::before { transform: scale(1.2); }

/* === 18. RESPONSIVE === */
@media (max-width: 850px) {
    body { padding-top: 70px; }
    nav { padding: 0 30px; height: 70px; }
    nav ul li { margin-left: 20px; }
    .logo-img { height: 68px !important; }
    nav ul li a { font-size: 0.83rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.3rem; }
    .value-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .value-card { padding: 25px; }
    .footer-container { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .footer-column:nth-child(1) { grid-column: 1 / -1; text-align: center; }
    .footer-column:nth-child(2),
    .footer-column:nth-child(3),
    .footer-column:nth-child(4) { align-items: flex-start; }
    .footer-logo-badge { margin: 0 auto 10px; }
    .grid-2 { grid-template-columns: 1fr; }
    .card { padding: 30px; }
    .page-header { padding: 14px 20px 12px; }

    body > section, body > header { animation-delay: 0.05s !important; }
    section:nth-of-type(1) { animation-delay: 0.05s !important; }
    section:nth-of-type(2) { animation-delay: 0.1s !important; }
    section:nth-of-type(3) { animation-delay: 0.15s !important; }
}

@media (max-width: 768px) {
    body { padding-top: 70px; }
    .card, .value-card, body > section, body > header, .page-header, .eyebrow, .accent-line { animation-duration: 0.4s !important; }

    nav {
        padding: 0 15px;
        height: 80px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo-img { height: 68px !important; }

    .hamburger { display: flex; }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: #ffffff;
        padding: 8px 0 16px;
        margin: 0;
        border-top: 1px solid rgba(0,0,0,0.06);
        border-bottom: 2px solid var(--brand-orange);
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }

    nav ul.active { display: flex; }

    nav ul li {
        margin: 0;
        padding: 13px 24px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        text-align: center;
    }
    nav ul li:last-child {
        border-bottom: none;
        padding: 16px 24px;
    }
    nav ul li:last-child a {
        display: inline-block;
    }
    nav ul li a { font-size: 0.95rem; transition: color 0.2s; }

    h2 { font-size: 1.5rem; margin-bottom: 15px; }
    h3 { font-size: 1.1rem; margin-bottom: 12px; }
    section { padding: 40px 15px; }

    .value-grid { grid-template-columns: 1fr; gap: 15px; margin-top: 20px; }
    .value-card { padding: 20px; border-radius: 10px; }
    .value-card:hover { transform: translateY(-5px); }
    .card { padding: 25px; border-radius: 10px; }
    .card:hover { transform: translateY(-5px); }

    .btn { padding: 12px 22px; font-size: 0.9rem; animation: scaleIn 0.3s ease-out forwards !important; }
    .btn:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(242, 101, 34, 0.35); }
    .accent-line { width: 45px; margin: 10px auto 20px; }
    .section-divider { width: 40px; margin: 10px auto 20px; }

    .footer-container { grid-template-columns: repeat(3, 1fr); gap: 18px; padding: 0; }
    .footer-column:nth-child(1) { grid-column: 1 / -1; text-align: center; }
    .footer-logo { height: 60px; }
    .footer-column h4 { font-size: 0.7rem; margin-bottom: 10px !important; }
    .footer-column p, .footer-column li { font-size: 0.82rem; }
    .footer-bottom { font-size: 0.72rem; }

    .logo-track img { width: 160px; height: 75px; margin: 0 25px; }

    @media (hover: none) {
        .card:hover, .value-card:hover, nav ul li a:hover, .btn:hover { transform: none; box-shadow: none; }
        .logo-track img:hover { transform: none; }
    }
}

@media (max-width: 480px) {
    body { padding-top: 65px; }
    nav { padding: 0 12px; height: 65px; display: flex; justify-content: space-between; align-items: center; }
    .logo-img { height: 62px !important; }
    .hamburger { display: flex; }
    .hamburger span { width: 22px; height: 2px; }
    nav ul { top: 65px; }
    nav ul li { padding: 12px 15px; }
    nav ul li a { font-size: 0.9rem; }
    h1 { font-size: 1.8rem !important; letter-spacing: 0.5px; }
    h2 { font-size: 1.3rem; }
    h3 { font-size: 1rem; }
    section { padding: 28px 12px; }
    p { font-size: 0.95rem !important; }
    .btn { padding: 10px 18px; font-size: 0.85rem; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
    .value-grid { gap: 12px; }
    .value-card { padding: 18px; }
    .accent-line { width: 35px; height: 2px; }
    .section-divider { width: 35px; height: 2px; }
    .logo-track img { width: 120px; height: 55px; margin: 0 15px; }
    .footer-tagline { max-width: 100%; }
}

/* ============================================================
   NEW LAYOUT COMPONENTS
   ============================================================ */

/* --- Ghost / outline button --- */
.btn-ghost {
    display: inline-block;
    color: rgba(255,255,255,0.8);
    padding: 12px 28px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: all var(--transition-smooth);
}
.btn-ghost:hover {
    border-color: var(--brand-orange);
    color: var(--brand-orange);
    background: rgba(242,101,34,0.08);
    transform: translateY(-2px);
}

/* --- Eyebrow label above section headings --- */
.eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--brand-orange);
    display: block;
    margin-bottom: 12px;
}

/* --- Centered section header block with eyebrow --- */
.section-label {
    text-align: center;
    margin-bottom: 50px;
}
.section-label h2 { margin-top: 0; margin-bottom: 0; }
.section-label .eyebrow { display: block; }

/* --- Hero actions row (two buttons side by side) --- */
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 35px;
    align-items: center;
}

/* --- Feature strip (3 columns, icon + text, left-aligned items) --- */
.feature-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-subtle);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    overflow: hidden;
}

.feature-strip-item {
    background: var(--bg-card);
    padding: 45px 35px;
    transition: background var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    animation: slideInUp 0.6s ease-out forwards;
    opacity: 0;
}
.feature-strip-item:nth-child(1) { animation-delay: 0.1s; }
.feature-strip-item:nth-child(2) { animation-delay: 0.2s; }
.feature-strip-item:nth-child(3) { animation-delay: 0.3s; }

.feature-strip-item:hover { background: rgba(27,66,118,0.12); }

.feature-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 24px;
    color: var(--brand-orange);
    flex-shrink: 0;
}
.feature-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.4; }

.feature-strip-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: color var(--transition-smooth);
}
.feature-strip-item:hover h3 { color: var(--brand-orange); }

.feature-strip-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.75;
    margin: 0 0 22px;
    flex: 1;
}

.feature-link {
    color: var(--brand-orange);
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all var(--transition-smooth);
    text-transform: uppercase;
}
.feature-link:hover { letter-spacing: 1px; opacity: 0.8; }

/* --- Icon card grid (4 columns with SVG icons) --- */
.icon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 10px;
}

.icon-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 35px 28px;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.6s ease-out forwards;
    opacity: 0;
}
.icon-card:nth-child(1) { animation-delay: 0.1s; }
.icon-card:nth-child(2) { animation-delay: 0.2s; }
.icon-card:nth-child(3) { animation-delay: 0.3s; }
.icon-card:nth-child(4) { animation-delay: 0.4s; }

.icon-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--brand-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-smooth);
}
.icon-card:hover::before { transform: scaleX(1); }

.icon-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover), 0 0 0 1px var(--border-accent);
    border-color: var(--border-accent);
}

.card-icon {
    width: 52px;
    height: 52px;
    background: rgba(27,66,118,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    margin-bottom: 22px;
    transition: all var(--transition-smooth);
}
.icon-card:hover .card-icon {
    background: rgba(242,101,34,0.12);
    color: var(--brand-orange);
    transform: scale(1.1);
}
.card-icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.6; }

.icon-card h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 10px;
    transition: color var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    line-height: 1.4;
}
.icon-card:hover h3 { color: var(--brand-orange); }
.icon-card p { color: var(--text-secondary); font-size: 0.87rem; margin: 0; line-height: 1.7; }

/* --- Responsive for new components --- */
@media (max-width: 1000px) {
    .icon-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 850px) {
    .feature-strip { grid-template-columns: 1fr; }
    .feature-strip-item { animation-delay: 0s !important; }
    .page-header { padding: 14px 20px 12px; }
}
@media (max-width: 768px) {
    .feature-strip-item { padding: 30px 24px; }
    .feature-icon { width: 44px; height: 44px; margin-bottom: 18px; }
    .icon-grid { gap: 14px; }
    .icon-card { padding: 28px 22px; animation-delay: 0s !important; }
    .card-icon { width: 46px; height: 46px; margin-bottom: 18px; }
    .section-label { margin-bottom: 35px; }
    .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
    .page-header { padding: 12px 20px 10px; }
}
@media (max-width: 480px) {
    .icon-grid { grid-template-columns: 1fr; gap: 12px; }
    .feature-strip-item { padding: 25px 18px; }
    .icon-card { padding: 24px 18px; }
    .card-icon { width: 42px; height: 42px; border-radius: 10px; }
    .card-icon svg { width: 22px; height: 22px; }
    .page-header { padding: 12px 20px 10px; }
}
