/* ===================================
   Global Styles
   =================================== */

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

:root {
    --color-primary: #3b82f6;
    --color-primary-dark: #1d4ed8;
    --color-secondary: #60a5fa;
    --color-bg-dark: #0f172a;
    --color-bg-darker: #0f172a;
    --color-bg-light: #1e293b;
    --color-text: #e2e8f0;
    --color-text-muted: #94a3b8;
    --color-border: #334155;
    --transition-speed: 0.3s;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #0f172a !important;
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

main {
    background: linear-gradient(to bottom, #0f172a, #1e293b, #0f172a) !important;
}

/* ===================================
   Typography
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #fff;
}

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

p {
    margin-bottom: 1rem;
    color: var(--color-text-muted);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--color-secondary);
}

/* ===================================
   Utility Classes
   =================================== */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

/* ===================================
   Animations
   =================================== */

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

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

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

.animate-fade-in-down {
    animation: fadeInDown 0.6s ease-out;
}

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

/* ===================================
   WordPress Core Styles
   =================================== */

.alignleft {
    float: left;
    margin-right: 1.5rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    text-align: center;
    padding: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.sticky {
    /* Sticky post styles */
}

.bypostauthor {
    /* Post author styles */
}

/* ===================================
   Gutenberg Block Support - FIXED
   =================================== */

.wp-block-image {
    margin-bottom: 1.5rem;
}

/* FIXED: Only apply to content images, NOT header/footer logos */
.wp-block-image img,
main img:not(.logo-icon img):not(footer img) {
    max-width: 100%;
    height: auto;
}

.wp-block-quote {
    border-left: 4px solid var(--color-primary);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
}

/* ===================================
   CRITICAL: Logo SVG Protection
   =================================== */

/* Prevent global styles from affecting header/footer logos */
header .logo-icon svg,
footer svg {
    max-width: none !important;
    height: auto !important;
}

/* Ensure logo containers don't collapse */
header .logo-icon,
footer .logo-icon,
header div.logo-icon,
footer div > div > div > div:first-child {
    min-width: fit-content !important;
}

/* ===================================
   Accessibility
   =================================== */

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 1024px) {
    body {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    
    .container {
        padding: 0 0.75rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
}

/* ===================================
   Print Styles
   =================================== */

@media print {
    header, footer, .no-print {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    a {
        text-decoration: underline;
    }
}

/* ===================================
   END Global Styles
   =================================== */


/* ===================================
   Companies Page Styles - NEON BLUE THEME
   (Appended to main style.css)
   Unique naming, scoped under .companies-main
   =================================== */

/* Scope the entire companies styles under .companies-main to avoid global collision */
.companies-main {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1425 100%);
    min-height: 100vh;
}

/* ===================================
   Banner Primary (Hero)
   =================================== */

.banner-primary {
    padding: 6rem 1rem;
    position: relative;
    overflow: hidden;
}

.banner-primary::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 9999px;
    filter: blur(3rem);
    margin-right: -12rem;
    margin-top: -12rem;
    z-index: 0;
}

.banner-primary::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(34, 211, 238, 0.1);
    border-radius: 9999px;
    filter: blur(3rem);
    margin-left: -12rem;
    margin-bottom: -12rem;
    z-index: 0;
}

.banner-primary__container {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.banner-primary__content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner-primary__title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: slideDownFade 0.8s ease-out;
    text-shadow: 0 0 30px rgba(34, 211, 238, 0.3);
}

.banner-primary__subtitle {
    font-size: 1.125rem;
    color: #cffafe;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    line-height: 1.6;
    max-width: 48rem;
}

/* Metrics Block */
.metrics-block {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(1rem);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 1.5rem;
    width: 100%;
}

.metrics-block__item {
    text-align: center;
}

.metrics-block__number {
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(to right, #22d3ee, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.metrics-block__text {
    color: #cffafe;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Button Groups */
.button-group-primary {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

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

.btn svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: currentColor;
}

.btn--gradient {
    background: linear-gradient(to right, #06b6d4, #3b82f6);
    color: white;
}

.btn--gradient:hover {
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.5);
    transform: translateY(-2px);
}

.btn--outline {
    background: rgba(30, 41, 59, 0.5);
    border: 2px solid rgba(34, 211, 238, 0.5);
    color: #22d3ee;
}

.btn--outline:hover {
    background: rgba(30, 41, 59, 0.8);
    border-color: #06b6d4;
    color: #06b6d4;
}

/* ===================================
   Challenges Section
   =================================== */

.section-challenges {
    padding: 6rem 1rem;
    border-top: 1px solid rgba(34, 211, 238, 0.2);
    background: linear-gradient(to bottom, transparent, rgba(10, 14, 39, 0.3));
}

.section-challenges__wrapper {
    max-width: 1280px;
    margin: 0 auto;
}

.section-challenges__heading {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 900;
    text-align: center;
    color: #ffffff;
    margin-bottom: 4rem;
    letter-spacing: -0.01em;
}

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

.challenge-box {
    background: linear-gradient(135deg, rgba(51, 65, 85, 0.6) 0%, rgba(30, 41, 59, 0.4) 100%);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    animation: riseUp 0.8s ease-out;
}

.challenge-box:nth-child(1) {
    animation-delay: 0s;
}

.challenge-box:nth-child(2) {
    animation-delay: 0.1s;
}

.challenge-box:nth-child(3) {
    animation-delay: 0.2s;
}

.challenge-box:hover {
    border-color: rgba(34, 211, 238, 0.5);
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.2);
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(51, 65, 85, 0.8) 0%, rgba(30, 41, 59, 0.6) 100%);
}

.challenge-box__icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 211, 238, 0.1);
    border-radius: 1rem;
}

.challenge-box__icon svg {
    width: 2rem;
    height: 2rem;
    color: #22d3ee;
    stroke: #22d3ee;
}

.challenge-box__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 1rem 0;
}

.challenge-box__desc {
    color: #cffafe;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   Advantages Section
   =================================== */

.section-advantages {
    padding: 6rem 1rem;
    border-top: 1px solid rgba(34, 211, 238, 0.2);
}

.section-advantages__wrapper {
    max-width: 1280px;
    margin: 0 auto;
}

.section-advantages__title {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 900;
    text-align: center;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.section-advantages__intro {
    text-align: center;
    color: #cffafe;
    font-size: 1.125rem;
    margin-bottom: 4rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

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

.advantage-card {
    text-align: center;
    animation: riseUp 0.8s ease-out;
    position: relative;
}

.advantage-card:nth-child(1) {
    animation-delay: 0s;
}

.advantage-card:nth-child(2) {
    animation-delay: 0.1s;
}

.advantage-card:nth-child(3) {
    animation-delay: 0.2s;
}

.advantage-card:nth-child(4) {
    animation-delay: 0.3s;
}

.advantage-card__number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(34, 211, 238, 0.1);
    margin-bottom: 1rem;
    line-height: 1;
}

.advantage-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: rgba(34, 211, 238, 0.1);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

.advantage-card__icon svg {
    width: 2rem;
    height: 2rem;
    color: #22d3ee;
    stroke: #22d3ee;
}

.advantage-card__name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 1rem 0;
}

.advantage-card__detail {
    color: #cffafe;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===================================
   Process Section
   =================================== */

.section-process {
    padding: 6rem 1rem;
    border-top: 1px solid rgba(34, 211, 238, 0.2);
    background: linear-gradient(to bottom, transparent, rgba(10, 14, 39, 0.3));
}

.section-process__wrapper {
    max-width: 1280px;
    margin: 0 auto;
}

.section-process__title {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 900;
    text-align: center;
    color: #ffffff;
    margin-bottom: 4rem;
    letter-spacing: -0.01em;
}

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

.process-step {
    text-align: center;
    animation: riseUp 0.8s ease-out;
    background: linear-gradient(135deg, rgba(51, 65, 85, 0.6) 0%, rgba(30, 41, 59, 0.4) 100%);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(34, 211, 238, 0.2);
    transition: all 0.3s ease;
}

.process-step:nth-child(1) {
    animation-delay: 0s;
}

.process-step:nth-child(2) {
    animation-delay: 0.1s;
}

.process-step:nth-child(3) {
    animation-delay: 0.2s;
}

.process-step:nth-child(4) {
    animation-delay: 0.3s;
}

.process-step:hover {
    border-color: rgba(34, 211, 238, 0.5);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.2);
    transform: translateY(-5px);
}

.process-step__visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.process-step__icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 211, 238, 0.1);
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.process-step__icon svg {
    width: 2rem;
    height: 2rem;
    color: #22d3ee;
    stroke: #22d3ee;
}

.process-step__marker {
    color: rgba(34, 211, 238, 0.6);
    font-size: 0.875rem;
    font-weight: 700;
}

.process-step__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 1rem 0;
}

.process-step__body {
    color: #cffafe;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===================================
   Mission Section
   =================================== */

.section-mission {
    padding: 6rem 1rem;
    border-top: 1px solid rgba(34, 211, 238, 0.2);
}

.section-mission__wrapper {
    max-width: 1280px;
    margin: 0 auto;
}

.section-mission__heading {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 900;
    text-align: center;
    color: #ffffff;
    margin-bottom: 4rem;
    letter-spacing: -0.01em;
}

.mission-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-container__left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mission-container__subhead {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.mission-container__paragraph {
    color: #cffafe;
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 300;
    margin: 0;
}

.mission-container__right {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.belief-item {
    background: linear-gradient(135deg, rgba(51, 65, 85, 0.4) 0%, rgba(30, 41, 59, 0.3) 100%);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.belief-item:hover {
    border-color: rgba(34, 211, 238, 0.5);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.2);
    transform: translateX(8px);
}

.belief-item__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: rgba(34, 211, 238, 0.1);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}

.belief-item__icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #22d3ee;
    stroke: #22d3ee;
}

.belief-item__label {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0.5rem 0;
    text-align: left;
}

.belief-item__note {
    color: #cffafe;
    font-size: 0.9rem;
    margin: 0.5rem 0 0 0;
    text-align: left;
    line-height: 1.5;
}

/* ===================================
   Pricing Section
   =================================== */

.section-pricing {
    padding: 6rem 1rem;
    border-top: 1px solid rgba(34, 211, 238, 0.2);
    background: linear-gradient(to bottom, transparent, rgba(10, 14, 39, 0.3));
}

.section-pricing__wrapper {
    max-width: 1280px;
    margin: 0 auto;
}

.section-pricing__title {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 900;
    text-align: center;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.section-pricing__tagline {
    text-align: center;
    color: #cffafe;
    font-size: 1.125rem;
    margin-bottom: 4rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

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

.tier {
    background: linear-gradient(135deg, rgba(51, 65, 85, 0.4) 0%, rgba(30, 41, 59, 0.3) 100%);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    animation: riseUp 0.8s ease-out;
    display: flex;
    flex-direction: column;
}

.tier:nth-child(1) {
    animation-delay: 0s;
}

.tier:nth-child(2) {
    animation-delay: 0.1s;
}

.tier:nth-child(3) {
    animation-delay: 0.2s;
}

.tier:hover {
    border-color: rgba(34, 211, 238, 0.5);
    transform: translateY(-8px);
}

.tier--premium {
    border-color: rgba(34, 211, 238, 0.4);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(34, 211, 238, 0.1) 100%);
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.15);
}

.tier__label {
    display: inline-block;
    background: rgba(34, 211, 238, 0.2);
    color: #22d3ee;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: fit-content;
}

.tier__label--featured {
    background: rgba(34, 211, 238, 0.3);
    color: #cffafe;
}

.tier__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1rem 0;
}

.tier__pricing {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(34, 211, 238, 0.2);
}

.tier__amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #22d3ee;
    margin-bottom: 0.25rem;
}

.tier__frequency {
    display: block;
    color: #cffafe;
    font-size: 0.875rem;
}

.tier__benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.tier__benefits li {
    color: #cffafe;
    font-size: 0.95rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(34, 211, 238, 0.1);
}

.tier__benefits li:before {
    content: '✓ ';
    color: #22d3ee;
    font-weight: 700;
    margin-right: 0.5rem;
}

.tier__action {
    display: block;
    background: linear-gradient(90deg, rgba(34, 211, 238, 0.2), rgba(59, 130, 246, 0.2));
    border: 1px solid rgba(34, 211, 238, 0.4);
    color: #22d3ee;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.tier__action:hover {
    background: linear-gradient(90deg, #06b6d4, #3b82f6);
    color: white;
    border-color: #06b6d4;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.3);
    transform: translateY(-2px);
}

.tier__action--primary {
    background: linear-gradient(90deg, #06b6d4, #3b82f6);
    color: white;
    border-color: #06b6d4;
}

.tier__action--primary:hover {
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
}

/* ===================================
   Closing Section
   =================================== */

.section-closing {
    padding: 8rem 1rem;
    border-top: 1px solid rgba(34, 211, 238, 0.2);
    position: relative;
    overflow: hidden;
}

.section-closing::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(34, 211, 238, 0.05), rgba(59, 130, 246, 0.05), rgba(34, 211, 238, 0.05));
}

.section-closing__container {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.section-closing__headline {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.section-closing__subtext {
    font-size: 1.125rem;
    color: #cffafe;
    margin-bottom: 3rem;
    font-weight: 300;
}

.closing-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

/* ===================================
   Animations
   =================================== */

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

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

/* ===================================
   Media Queries
   =================================== */

@media (min-width: 640px) {
    .button-group-primary {
        flex-direction: row;
        gap: 1rem;
    }

    .closing-actions {
        flex-direction: row;
        gap: 1.5rem;
    }

    .closing-actions .btn {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .banner-primary {
        padding: 4rem 1rem;
    }

    .metrics-block {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
        margin: 2rem 0;
    }

    .button-group-primary {
        flex-direction: column;
    }

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

    .advantages-layout {
        gap: 2rem;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .mission-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-tiers {
        grid-template-columns: 1fr;
    }

    .closing-actions {
        flex-direction: column;
    }

    .section-mission__heading,
    .section-process__title,
    .section-advantages__title,
    .section-challenges__heading {
        font-size: 2rem;
    }

    .mission-container__subhead {
        font-size: 1.5rem;
    }
}

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

    .pricing-tiers {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===================================
   Scrollbar
   =================================== */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(51, 65, 85, 0.3);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #06b6d4, #3b82f6);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #22d3ee, #60a5fa);
}

/* ===================================
   End Companies & Global CSS
   =================================== */

/* Accessibility: prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
}
