/* ============================================
   BABARTECH MDR WEBSITE - MODERN STYLES
   State-of-the-art design with animations
   ============================================ */

/* CSS Variables */
:root {
    /* Brand Colors */
    --primary: #0B2545;
    --primary-dark: #061829;
    --accent: #1C7ED6;
    --bg-light: #F7F9FB;
    --bg-white: #FFFFFF;
    --bg-dark: #1a1a1a;
    --text-primary: #222222;
    --text-secondary: #555555;
    --text-muted: #777777;

    /* Semantic Colors */
    --success: #10B981;
    --warning: #F59E0B;
    --critical: #EF4444;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Typography */
    --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(11, 37, 69, 0.05);
    --shadow-md: 0 4px 12px rgba(11, 37, 69, 0.08);
    --shadow-lg: 0 8px 24px rgba(11, 37, 69, 0.12);
    --shadow-xl: 0 16px 48px rgba(11, 37, 69, 0.16);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in-up.delay-1 {
    animation-delay: 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.fade-in-up.delay-2 {
    animation-delay: 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.fade-in-up.delay-3 {
    animation-delay: 0.6s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(11, 37, 69, 0.05);
    z-index: 1000;
    transition: all var(--transition-base);
}

.nav.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo img {
    height: 50px;
    width: auto;
    padding: 10px;
    background: linear-gradient(135deg, #0B2545 0%, #1C7ED6 100%);
    border-radius: 12px;
    transition: all var(--transition-base);
    box-shadow: 0 2px 8px rgba(11, 37, 69, 0.15);
}

.nav-logo a:hover img {
    transform: scale(1.05);
    background: linear-gradient(135deg, #1C7ED6 0%, #0B2545 100%);
    box-shadow: 0 4px 16px rgba(11, 37, 69, 0.25);
}

.nav-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    white-space: nowrap;
}

.nav-logo .logo-accent {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
    transition: color var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link-cta {
    background: var(--accent);
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: all var(--transition-base);
}

.nav-link-cta:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all var(--transition-base);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background: linear-gradient(135deg, rgba(11, 37, 69, 0.95) 0%, rgba(19, 64, 116, 0.95) 100%),
                url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?w=1920&q=80') center/cover;
    overflow: hidden;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(28, 126, 214, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(28, 126, 214, 0.15) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-icon {
    color: var(--accent);
}

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

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat {
    text-align: left;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--accent);
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.visual-container {
    position: relative;
    z-index: 2;
}

.threat-monitor {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.monitor-header {
    padding: 1rem 1.5rem;
    background: rgba(11, 37, 69, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: white;
    font-size: 0.875rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.monitor-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.threat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    color: white;
    font-size: 0.875rem;
    animation: fadeInUp 0.5s ease-out;
}

.threat-icon {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.threat-icon.critical {
    background: var(--critical);
    box-shadow: 0 0 10px var(--critical);
}

.threat-icon.warning {
    background: var(--warning);
    box-shadow: 0 0 10px var(--warning);
}

.threat-icon.success {
    background: var(--success);
    box-shadow: 0 0 10px var(--success);
}

.threat-text {
    flex: 1;
}

.threat-time {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-left: 2px solid rgba(255, 255, 255, 0.5);
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    transform: rotate(-45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(-45deg);
    }
    40% {
        transform: translateY(10px) rotate(-45deg);
    }
    60% {
        transform: translateY(5px) rotate(-45deg);
    }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-primary {
    background: var(--accent);
    color: white;
}

.btn-primary:hover {
    background: #1a71c2;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-icon {
    transition: transform var(--transition-base);
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

/* ============================================
   TRUST ROW
   ============================================ */

.trust-row {
    background: var(--bg-white);
    padding: 3rem 0;
    border-bottom: 1px solid #E5E7EB;
}

.trust-label {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    padding: 0.75rem 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    border: 1px solid #E5E7EB;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

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

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    box-shadow: 0 4px 12px rgba(28, 126, 214, 0.3);
    transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(28, 126, 214, 0.4);
}

.feature-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-metric {
    padding-top: 1.5rem;
    border-top: 2px solid var(--bg-light);
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    font-family: var(--font-heading);
}

.metric-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   MDR TEASER SECTION
   ============================================ */

.mdr-teaser {
    padding: var(--spacing-xl) 0;
    background: white;
}

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

.mdr-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.mdr-features-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.check-icon {
    color: var(--success);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Coverage Diagram */
.coverage-diagram {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.coverage-layer {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.layer-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}

.layer-bar {
    height: 8px;
    background: #E5E7EB;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.layer-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: var(--progress);
    background: linear-gradient(90deg, var(--accent), var(--primary));
    border-radius: 50px;
    animation: fillBar 1.5s ease-out;
}

@keyframes fillBar {
    from {
        width: 0;
    }
}

/* ============================================
   MSP CTA SECTION
   ============================================ */

.msp-cta {
    padding: var(--spacing-lg) 0;
    background: linear-gradient(135deg, var(--primary), #134074);
}

.msp-cta-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: space-between;
}

.msp-icon {
    color: var(--accent);
}

.msp-text {
    flex: 1;
    min-width: 300px;
}

.msp-text h3 {
    font-size: 1.75rem;
    color: white;
    margin-bottom: 0.5rem;
}

.msp-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
}

.msp-cta .btn-outline {
    border-color: white;
    color: white;
}

.msp-cta .btn-outline:hover {
    background: white;
    color: var(--primary);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--primary);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
    padding: 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    filter: brightness(1.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.footer-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    white-space: nowrap;
}

.footer-logo .logo-accent {
    color: var(--accent);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.footer-contact a {
    color: var(--accent);
    font-weight: 500;
}

.footer-contact a:hover {
    color: white;
}

.footer-heading {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-base);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

.footer-badges {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
    }

    .mdr-teaser-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-logo img {
        height: 40px;
    }

    .nav-logo .logo-text {
        font-size: 1.25rem;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transition: left var(--transition-base);
        box-shadow: var(--shadow-xl);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .msp-cta-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .trust-badges {
        flex-direction: column;
    }
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   PAGE HERO (for internal pages)
   ============================================ */

.page-hero {
    padding: 10rem 0 6rem;
    background: linear-gradient(135deg, rgba(11, 37, 69, 0.92) 0%, rgba(19, 64, 116, 0.92) 100%),
                url('https://images.unsplash.com/photo-1563986768609-322da13575f3?w=1920&q=80') center/cover;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(28, 126, 214, 0.2) 0%, transparent 60%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: white;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */

.content-section {
    padding: var(--spacing-xl) 0;
}

.content-section.bg-light {
    background: var(--bg-light);
}

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

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* ============================================
   SERVICE GRID
   ============================================ */

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

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

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(28, 126, 214, 0.3);
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(28, 126, 214, 0.4);
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   TIER COMPARISON
   ============================================ */

.tier-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tier-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.tier-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.tier-featured {
    border-color: var(--accent);
    position: relative;
}

.tier-featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tier-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    align-self: flex-start;
}

.tier-badge.popular {
    background: var(--accent);
    color: white;
}

.tier-price {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.price-currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.price-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
}

.price-period {
    font-size: 1rem;
    color: var(--text-muted);
}

.tier-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.tier-features {
    list-style: none;
    flex: 1;
    margin-bottom: 2rem;
}

.tier-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--bg-light);
    color: var(--text-secondary);
    line-height: 1.6;
}

.tier-features li:last-child {
    border-bottom: none;
}

.tier-card .btn {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

/* ============================================
   PROCESS STEPS
   ============================================ */

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 1rem;
    font-family: var(--font-heading);
}

.process-step h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.process-arrow {
    font-size: 2rem;
    color: var(--accent);
    font-weight: 300;
}

/* ============================================
   CALLOUT BOXES
   ============================================ */

.msp-callout {
    padding: var(--spacing-lg) 0;
    background: linear-gradient(135deg, rgba(11, 37, 69, 0.95), rgba(19, 64, 116, 0.95)),
                url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1920&q=80') center/cover;
    text-align: center;
    position: relative;
}

.msp-callout::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 37, 69, 0.3);
}

.msp-callout-content {
    position: relative;
    z-index: 1;
}

.msp-callout-content h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

.msp-callout-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary);
}

.cta-box {
    text-align: center;
    margin-top: 3rem;
}

.final-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* ============================================
   CONTACT FORM
   ============================================ */

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #E5E7EB;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-base);
    background: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(28, 126, 214, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.form-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.form-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.form-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.form-consent input {
    margin-top: 0.25rem;
}

.form-consent label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.form-submit {
    width: 100%;
}

/* ============================================
   PRICING PAGE
   ============================================ */

.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0 3rem;
}

.pricing-toggle-label {
    font-weight: 600;
    color: var(--text-secondary);
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #E5E7EB;
    border-radius: 50px;
    transition: var(--transition-base);
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background: white;
    border-radius: 50%;
    transition: var(--transition-base);
}

input:checked + .toggle-slider {
    background: var(--accent);
}

input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   ONBOARDING TIMELINE
   ============================================ */

.timeline {
    max-width: 800px;
    margin: 3rem auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 3rem;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

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

.team-member {
    text-align: center;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    margin: 0 auto 1rem;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: var(--shadow-lg);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-photo.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    font-weight: 700;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.team-role {
    color: var(--text-muted);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   RESOURCES PAGE
   ============================================ */

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.resource-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

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

.resource-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
    position: relative;
}

.resource-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.resource-card:hover .resource-image img {
    transform: scale(1.05);
}

.resource-content {
    padding: 1.5rem;
}

.resource-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* ============================================
   ARTICLE PAGES - ENHANCED FORMATTING
   ============================================ */

.article-meta {
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.article-reading-time {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Article Content Container */
article .content-max-width {
    max-width: 800px;
    margin: 0 auto;
}

/* Article Typography */
article h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin: 3rem 0 1.5rem 0;
    line-height: 1.3;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--bg-light);
}

article h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 2.5rem 0 1rem 0;
    line-height: 1.4;
}

article h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 2rem 0 0.75rem 0;
    line-height: 1.4;
}

article p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

article .lead-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-primary);
    font-weight: 400;
    margin: 2rem 0;
}

article ul, article ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

article li {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

article li strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Callout Boxes */
.callout-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-md);
    margin: 2.5rem 0;
    border-left: 4px solid var(--accent);
}

.callout-box h3 {
    margin-top: 0;
    color: var(--primary);
    font-size: 1.25rem;
}

.callout-box p {
    margin-bottom: 0;
}

.callout-box ul {
    margin-bottom: 0;
}

.callout-warning {
    background: #FFF3CD;
    border-left-color: #F59E0B;
}

.callout-success {
    background: #D1FAE5;
    border-left-color: #10B981;
}

.callout-info {
    background: #DBEAFE;
    border-left-color: var(--accent);
}

/* Comparison Tables */
article table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 2.5rem 0;
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius-md);
    overflow: hidden;
}

article thead {
    background: var(--primary);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

article thead th {
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-weight: 700;
    color: white !important;
    font-size: 1.0625rem;
    background: transparent;
}

article tbody tr {
    background: white;
    transition: background var(--transition-base);
}

article tbody tr:nth-child(even) {
    background: var(--bg-light);
}

article tbody tr:hover {
    background: #E0F2FE;
}

article tbody td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #E5E7EB;
    color: var(--text-secondary);
    line-height: 1.6;
}

article tbody td:first-child {
    font-weight: 600;
    color: var(--text-primary);
}

article tbody tr:last-child td {
    border-bottom: none;
}

/* Code Blocks */
article code {
    background: var(--bg-dark);
    color: #10B981;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 0.9em;
}

article pre {
    background: var(--bg-dark);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    overflow-x: auto;
    margin: 2rem 0;
    border-left: 4px solid var(--accent);
}

article pre code {
    background: none;
    padding: 0;
    color: #E5E7EB;
}

/* Stat Cards */
.stat-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    border-top: 4px solid var(--accent);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Timeline for Case Studies */
article .timeline {
    position: relative;
    padding: 2rem 0;
}

article .timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent), var(--primary));
}

article .timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 2.5rem;
}

article .timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
    border: 4px solid white;
}

article .timeline-item h3 {
    font-size: 1.25rem;
    margin-top: 0;
    margin-bottom: 0.75rem;
}

article .timeline-item p {
    margin-bottom: 0.5rem;
}

/* Related Articles */
.related-articles {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--bg-light);
}

.related-articles h3 {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.related-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border-left: 4px solid var(--accent);
}

.related-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.related-card-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.related-card h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin: 0 0 0.5rem 0;
}

.related-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.related-card a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}

.related-card a:hover {
    text-decoration: underline;
}

/* Article CTA */
.article-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 3rem;
    border-radius: var(--radius-lg);
    text-align: center;
    margin: 4rem 0;
    color: white;
}

.article-cta h3 {
    color: white;
    font-size: 1.75rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

.article-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Procedure Boxes */
.procedure-box {
    background: white;
    border: 2px solid var(--bg-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.procedure-box h4 {
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 1rem;
}

/* ============================================
   LEGAL PAGES STYLING
   ============================================ */

.legal-toc {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    margin: 2rem 0 3rem 0;
    border: 1px solid #E5E7EB;
    box-shadow: var(--shadow-sm);
}

.legal-toc h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 1.25rem;
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 0.75rem;
}

.legal-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
    column-count: 2;
    column-gap: 2rem;
}

.legal-toc li {
    margin: 0;
    break-inside: avoid;
    padding: 0.5rem 0;
}

.legal-toc a {
    color: var(--text-primary);
    text-decoration: none;
    transition: all var(--transition-base);
    display: inline-block;
    font-size: 0.95rem;
}

.legal-toc a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.legal-section {
    scroll-margin-top: 100px;
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.75rem;
    color: var(--primary);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--bg-light);
}

.legal-section h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.legal-section ul {
    margin: 1rem 0 1.5rem 1.5rem;
    line-height: 1.7;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .legal-toc ul {
        column-count: 1;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }
}

.legal-effective-date {
    background: var(--bg-light);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    margin: 2rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
}

.legal-contact-box {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    margin: 3rem 0;
    text-align: center;
}

.legal-contact-box h3 {
    color: white;
    margin-top: 0;
}

.legal-contact-box a {
    color: white;
    text-decoration: underline;
}

/* ============================================
   RESPONSIVE ARTICLE FORMATTING
   ============================================ */

@media (max-width: 768px) {
    article h2 {
        font-size: 1.75rem;
        margin: 2rem 0 1rem 0;
    }

    article h3 {
        font-size: 1.25rem;
        margin: 1.5rem 0 0.75rem 0;
    }

    article h4 {
        font-size: 1.1rem;
    }

    article p, article li {
        font-size: 1rem;
    }

    article .lead-text {
        font-size: 1.125rem;
    }

    .callout-box, .procedure-box {
        padding: 1.25rem;
        margin: 1.5rem 0;
    }

    article table {
        font-size: 0.9rem;
    }

    article thead th, article tbody td {
        padding: 0.75rem;
    }

    .stat-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    .article-cta {
        padding: 2rem 1.5rem;
    }

    .article-cta h3 {
        font-size: 1.5rem;
    }

    .related-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    article .timeline-item {
        padding-left: 60px;
    }

    article .timeline-marker {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    article .timeline::before {
        left: 25px;
    }
}

.resource-title {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.resource-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.resource-link {
    color: var(--accent);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-base);
}

.resource-link:hover {
    gap: 0.75rem;
}

/* ============================================
   RESPONSIVE ADDITIONS
   ============================================ */

@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
    }

    .tier-comparison {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-item {
        padding-left: 60px;
    }

    .timeline-marker {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}
