/* =============================================
   GOVRYX - Premium Enterprise SaaS Styles
   Color Theme: #073873 (Navy), #9cd725 (Green)
   ============================================= */

/* CSS Variables */
:root {
    --primary: #073873;
    --primary-light: #0a4a8f;
    --primary-dark: #052a56;
    --accent: #9cd725;
    --accent-hover: #a8e02a;
    --accent-glow: rgba(156, 215, 37, 0.4);
    --white: #ffffff;
    --black: #000000;
    --grey-50: #f5f7fa;
    --grey-100: #e8ecf1;
    --grey-200: #d1dae6;
    --grey-300: #b5c2d3;
    --grey-400: #8a9bb0;
    --grey-500: #5f6d7a;
    --grey-600: #4a5568;
    --grey-700: #2d3748;
    --grey-800: #1a202c;
    --grey-900: #0d1117;

    --font-heading: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-card: 0 2px 8px rgba(7, 56, 115, 0.08);
    --shadow-card-hover: 0 12px 40px rgba(7, 56, 115, 0.15);
    --shadow-glass: 0 8px 32px rgba(255, 255, 255, 0.1);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;

    --container-width: 1200px;
    --section-padding: 110px;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--grey-700);
    background-color: var(--white);
    overflow-x: hidden;
    padding-top: 70px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul,
ol {
    list-style: none;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(156, 215, 37, 0.1);
    z-index: 1000;
    padding: 16px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo a {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: #073873;
    transition: all 0.3s ease;
}

.nav-logo a:hover {
    color: #9cd725;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: #0f172a;
    position: relative;
    transition: color 0.3s ease, letter-spacing 0.3s ease, text-shadow 0.3s ease;
}

.nav-link:hover {
    color: #073873;
    letter-spacing: 0.5px;
    text-shadow: 0 0 8px rgba(7, 56, 115, 0.3);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #9cd725;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover::after {
    width: 0;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #073873;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown>.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown>.nav-link::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-bottom: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}

.nav-dropdown:hover>.nav-link::before {
    transform: rotate(135deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    padding: 12px 0;
    min-width: 180px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1001;
    list-style: none;
    margin-top: 8px;
    border: 1px solid rgba(7, 56, 115, 0.1);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 24px;
    color: #073873;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
    color: #9cd725;
    padding-left: 28px;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--grey-800);
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: var(--primary);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subheading {
    font-size: 20px;
    font-weight: 600;
    color: #9cd725;
    margin-top: -12px;
}

/* Capability Text List Items */
.capability-text li {
    margin-bottom: 20px;
}

.capability-text li:last-child {
    margin-bottom: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background-color: #9cd725;
    color: #073873;
    border-color: #9cd725;
    box-shadow: 0 4px 15px rgba(156, 215, 37, 0.3);
}

.btn-primary:hover {
    background-color: #a8e02a;
    border-color: #a8e02a;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(156, 215, 37, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #9cd725;
    border-color: #9cd725;
}

.btn-secondary:hover {
    background-color: #9cd725;
    color: #073873;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(156, 215, 37, 0.3);
}

.btn-large {
    padding: 16px 36px;
    font-size: 16px;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #073873, #0b4a96);
    overflow: visible;
    padding-top: 100px !important;
}

.about-hero,
.blog-hero,
.pricing-hero,
.product-hero,
.newsletters-hero,
.contact-hero,
.page-header,
.module-hero,
.careers-hero {
    position: relative;
    overflow: hidden;
    padding-top: 120px !important;
}

.hero::before,
.about-hero::before,
.blog-hero::before,
.pricing-hero::before,
.product-hero::before,
.newsletters-hero::before,
.contact-hero::before,
.page-header::before,
.module-hero::before,
.careers-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: rgba(156, 215, 37, 0.06);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(135deg, #073873, #0b4a96); */
    background: #063872;
}

.hero-container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
    width: 100%;
}

.hero-content {
    max-width: 700px;
    z-index: 2;
    padding-left: 40px;
}

.hero-title {
    font-size: 60px;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 20px;
    animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    animation-delay: 0.1s;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: #9cd725;
    margin-bottom: 20px;
    animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.hero-description {
    font-size: 15px;
    line-height: 1.7;
    color: #e8ecf1;
    margin-bottom: 14px;
    animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.hero-title,
.about-hero h1,
.blog-hero h1,
.careers-hero h1,
.pricing-hero h1,
.product-hero h1,
.newsletters-hero h1,
.contact-hero .page-title,
.docs-hero .page-title,
.page-header h1,
.module-hero h1 {
    position: relative !important;
    display: inline-block !important;
    margin-bottom: 30px !important;
}

.hero-title::after,
.about-hero h1::after,
.blog-hero h1::after,
.careers-hero h1::after,
.pricing-hero h1::after,
.product-hero h1::after,
.newsletters-hero h1::after,
.contact-hero .page-title::after,
.docs-hero .page-title::after,
.page-header h1::after,
.module-hero h1::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #9cd725;
    border-radius: 2px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    opacity: 0;
    transform: translateX(30px);
    z-index: 1;
    min-height: 550px;
    width: 100%;
}

/* Image Carousel */
.image-carousel {
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    animation: fadeInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    margin: 0 auto;
    height: 100%;
    justify-content: center;
}

.carousel-row {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.carousel-track-reverse {
    animation-name: carouselReverse;
}

.carousel-item {
    display: flex;
    align-items: center;
    position: absolute;
    width: 380px;
    height: 350px;
    border-radius: 12px;
    opacity: 0;
    overflow: hidden;
    filter: drop-shadow(0 2px 2px #555);
    will-change: transform, opacity;
    animation: carousel-animate-horizontal 9s linear infinite;
    /* Optional: uncomment if you don't use absolute positioning for everything */
    /* top: 0; left: 50%; margin-left: -190px; */
}

.carousel-item:nth-child(1) {
    animation-delay: -3s;
}

.carousel-item:nth-child(2) {
    animation-delay: 0s;
}

.carousel-item:nth-child(3) {
    animation-delay: -6s;
}

.carousel-item:hover {
    transform: scale(1.02);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-gradient {
    position: absolute;
    top: 0;
    height: 100%;
    pointer-events: none;
    z-index: 20;
}

.carousel-gradient-left {
    left: 0;
    width: 180px;
    background: linear-gradient(90deg,
            #073873 0%,
            rgba(7, 56, 115, 0.5) 50%,
            rgba(7, 56, 115, 0) 100%);
}

.carousel-gradient-right {
    right: 0;
    width: 250px;
    background: linear-gradient(-90deg,
            #073873 0%,
            rgba(7, 56, 115, 0.4) 75%,
            rgba(7, 56, 115, 0) 100%);
}

@keyframes carousel-animate-horizontal {
    0% {
        transform: translateX(100%) scale(0.5);
        opacity: 0;
        visibility: hidden;
    }

    3%,
    33.33% {
        transform: translateX(100%) scale(0.7);
        opacity: 0.4;
        visibility: visible;
    }

    36.33%,
    66.66% {
        transform: translateX(0) scale(1);
        opacity: 1;
        visibility: visible;
    }

    69.66%,
    97% {
        transform: translateX(-100%) scale(0.7);
        opacity: 0.4;
        visibility: visible;
    }

    100% {
        transform: translateX(-100%) scale(0.5);
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes carouselReverse {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Responsive carousel */
@media (max-width: 1024px) {
    .carousel-item {
        width: 320px;
        height: 240px;
    }

    .hero-visual {
        min-height: 480px;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        width: 220px;
        height: 165px;
    }

    .carousel-row {
        display: none;
    }

    .carousel-row:first-child {
        display: block;
    }

    .hero-visual {
        min-height: 350px;
    }
}

/* =============================================
/* =============================================
   MOVING LOGOS / TRUST BAR (Large Logos)
   ============================================= */
.logos-container {
    width: 100%;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.logos-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.logos-track {
    display: flex;
    gap: 100px;
    align-items: center;
    justify-content: flex-start;
    animation: scrollLogo 50s linear infinite;
    will-change: transform;
}

.logo-item {
    height: 70px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.logo-item:hover {
    transform: scale(1.08);
}

.logo-item.large {
    height: 140px;
}

.logo-item.large:hover {
    transform: scale(1.1);
}

@keyframes scrollLogo {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
    background: var(--grey-50);
    padding: 24px 0;
    border-bottom: 1px solid var(--grey-100);
}

.trust-bar.logos-bar {
    padding: 0;
    overflow: visible;
    background: linear-gradient(90deg, #f5f7fa 0%, #ffffff 50%, #f5f7fa 100%);
}

.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.trust-badge {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    padding: 8px 16px;
    background: #f1f5f9;
    border-radius: 25px;
    border: 1px solid #f1f1f1;
    transition: var(--transition-base);
}

.trust-badge:hover {
    border-color: var(--accent);
    color: var(--primary);
}

.trust-separator {
    color: var(--grey-300);
    font-size: 14px;
}

/* =============================================
   CONTACT OPTIONS SECTION
   ============================================= */
.contact-options-section {
    background: var(--white);
    padding: 80px 0;
}

.contact-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-option-card {
    background: var(--white);
    border: 1.5px solid #e5e7eb;
    border-radius: 14px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 8px rgba(7, 56, 115, 0.06);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-option-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 48px rgba(7, 56, 115, 0.15);
    border-color: var(--accent);
}

.option-icon {
    font-size: 48px;
    line-height: 1;
}

.contact-option-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
}

.contact-option-card p {
    font-size: 15px;
    color: var(--grey-600);
    line-height: 1.6;
    flex-grow: 1;
}

.contact-option-card .btn {
    align-self: center;
    margin-top: 12px;
}

/* =============================================
   CONTACT FORM SECTION
   ============================================= */
.contact-form-section {
    background: var(--grey-50);
    padding: 80px 0;
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(7, 56, 115, 0.06);
}

.contact-form-wrapper .section-title {
    text-align: center;
    margin-bottom: 32px;
    font-size: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px 16px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(7, 56, 115, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    margin-top: 12px;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
}

/* Confirmation Message */
.confirmation-message {
    text-align: center;
    padding: 48px 32px;
}

.confirmation-message h3 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 800;
}

.confirmation-message p {
    font-size: 16px;
    color: var(--grey-600);
    margin-bottom: 24px;
    line-height: 1.6;
}

.confirmation-message .btn {
    display: inline-block;
}

/* =============================================
   CONTACT PAGE HERO
   ============================================= */
.contact-hero {
    background: linear-gradient(135deg, rgba(7, 56, 115, 0.95) 0%, rgba(10, 74, 143, 0.95) 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.contact-hero .page-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.contact-hero .page-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

/* =============================================
   RESPONSIVE: CONTACT PAGE
   ============================================= */
@media (max-width: 1024px) {
    .contact-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form-wrapper {
        padding: 40px 32px;
    }

    .contact-hero .page-title {
        font-size: 40px;
    }

    .contact-hero .page-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .contact-options-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-option-card {
        padding: 32px 24px;
    }

    .contact-form-section {
        padding: 60px 0;
    }

    .contact-form-wrapper {
        max-width: 100%;
        padding: 32px 24px;
        margin: 0 16px;
        border-radius: 12px;
    }

    .contact-form-wrapper .section-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .contact-hero {
        padding: 80px 0 60px;
    }

    .contact-hero .page-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .contact-hero .page-subtitle {
        font-size: 16px;
        padding: 0 16px;
    }

    .option-icon {
        font-size: 40px;
    }

    .contact-option-card h3 {
        font-size: 20px;
    }

    .contact-option-card p {
        font-size: 14px;
    }
}

/* =============================================
   RESOURCES CAROUSEL SECTION
   ============================================= */
.resources-section {
    background: var(--white);
    padding: var(--section-padding) 0;
}

.resources-header {
    text-align: center;
    margin-bottom: 60px;
}

.resources-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.resources-carousel-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.resources-carousel {
    display: flex;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(7, 56, 115, 0.15);
    background: white;
    min-height: 450px;
    position: relative;
}

.carousel-slide {
    display: none;
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    animation: none;
}

.carousel-slide.active {
    display: flex;
    opacity: 1;
    animation: slideIn 0.5s ease-in-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.carousel-slide-image {
    width: 45%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.carousel-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-slide-content {
    width: 55%;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.carousel-slide-content h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.carousel-slide-content p {
    font-size: 16px;
    color: var(--grey-600);
    line-height: 1.6;
}

.carousel-slide-content .resource-type {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.carousel-slide-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    margin-top: 12px;
    transition: all 0.3s ease;
    width: fit-content;
}

.carousel-slide-content a:hover {
    color: var(--accent);
    gap: 16px;
}

.carousel-slide-content a::after {
    content: '→';
    transition: transform 0.3s ease;
}

.carousel-slide-content a:hover::after {
    transform: translateX(4px);
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(7, 56, 115, 0.2);
}

.carousel-control:hover {
    background: var(--primary-light);
    box-shadow: 0 8px 20px rgba(7, 56, 115, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev {
    left: -60px;
}

.carousel-control-next {
    right: -60px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--grey-300);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: var(--primary);
    width: 32px;
    border-radius: 6px;
}

.carousel-indicator:hover {
    background: var(--accent);
}

@media (max-width: 768px) {
    .resources-carousel {
        flex-direction: column;
        min-height: auto;
    }

    .carousel-slide-image {
        width: 100%;
        min-height: 240px;
    }

    .carousel-slide-content {
        width: 100%;
        padding: 32px 24px;
    }

    .carousel-slide-content h3 {
        font-size: 22px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        position: static;
        transform: none;
        margin: 0 8px;
        display: inline-flex;
        border-radius: 8px;
        width: 40px;
        height: 40px;
    }

    .carousel-indicators {
        margin-top: 24px;
    }
}

/* =============================================
   PROBLEM SECTION
   ============================================= */
.problem-section {
    background: var(--white);
    padding: var(--section-padding) 0;
}

.problem-intro,
.problem-detail {
    max-width: 1100px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: var(--grey-600);
}

.problem-detail {
    margin-bottom: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px;
}

.stat-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 22px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 8px rgba(7, 56, 115, 0.06);
    animation: cardSlideIn 0.6s ease-out forwards;
    opacity: 0;
}

.stat-card:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-card:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-card:hover {
    box-shadow: 0 12px 32px rgba(7, 56, 115, 0.12);
    transform: translateY(-4px);
    border-color: #9cd725;
}

.stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: #073873;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.stat-card:hover .stat-value {
    color: #9cd725;
}

.stat-label {
    font-size: 13px;
    color: var(--grey-600);
    line-height: 1.5;
    font-weight: 500;
    transition: color 0.3s ease;
}

.stat-card:hover .stat-label {
    color: var(--primary);
}

.chart-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    gap: 40px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(7, 56, 115, 0.06);
}

.chart-text {
    flex: 1;
    text-align: left;
}

.chart-text h3 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 20px;
}

.chart-text p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--grey-600);
    margin-bottom: 30px;
}

.chart-placeholder {
    flex: 1.5;
    height: auto;
    border-radius: 14px;
    background: linear-gradient(135deg, #f5f7fa, #eef2f7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.02);
}

.placeholder-img {
    display: none;
}

/* =============================================
   INFRASTRUCTURE SECTION
   ============================================= */
.infrastructure-section {
    background: var(--grey-50);
    padding: var(--section-padding) 0;
}

.infrastructure-intro {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
    margin-bottom: 24px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.infrastructure-detail {
    font-size: 16px;
    line-height: 1.8;
    color: var(--grey-600);
    margin-bottom: 16px;
    max-width: 100%;
    text-align: left;
}

.infrastructure-content {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1.1fr !important;
    gap: 80px;
    align-items: center;
    max-width: 100%;
}

.infra-left {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.infra-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.infra-headline {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.4;
    margin: 0 0 16px 0;
}

.infra-diagram,
.infra-screenshot {
    width: 100%;
    height: 420px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f5f7fa, #eef2f7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.infra-diagram {
    width: 100%;
}

.infrastructure-hidden {
    animation: slideDown 0.3s ease-out;
}

.read-more-btn {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--font-body);
    white-space: nowrap;
    margin-top: 16px;
    flex-shrink: 0;
    align-self: flex-start;
}

.read-more-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(7, 56, 115, 0.15);
}

.read-more-btn:active {
    transform: translateY(0px);
}

.capability-card.expanded .read-more-btn {
    border-color: var(--accent);
    color: var(--accent);
}

.capability-card.expanded .read-more-btn:hover {
    background: var(--accent);
    color: var(--primary);
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }

    to {
        opacity: 1;
        max-height: 1000px;
    }
}

/* =============================================
   CAPABILITIES SECTION
   ============================================= */
.capabilities-section {
    background: var(--white);
    padding: var(--section-padding) 0;
}

.capabilities-intro {
    font-size: 18px;
    line-height: 1.8;
    color: var(--grey-600);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 32px;
    width: 100%;
    align-items: stretch;
}

.capability-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 8px rgba(7, 56, 115, 0.06);
    animation: cardPopIn 0.5s ease-out forwards;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    max-height: 550px;
    overflow: hidden;
}

.capability-card.expanded {
    max-height: 1200px;
}

.capability-card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.capability-card:hover::before {
    transform: scaleX(1);
}

.capability-card:nth-child(1) {
    animation-delay: 0.15s;
}

.capability-card:nth-child(2) {
    animation-delay: 0.25s;
}

.capability-card:nth-child(3) {
    animation-delay: 0.35s;
}

.capability-card:nth-child(4) {
    animation-delay: 0.45s;
}

.capability-card:nth-child(5) {
    animation-delay: 0.55s;
}

.capability-card:nth-child(6) {
    animation-delay: 0.65s;
}

.capability-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(7, 56, 115, 0.12);
    border-color: #9cd725;
}

.capability-card:first-child {
    /* No longer spans 2 columns */
}

.capability-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.capability-card:hover .capability-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(7, 56, 115, 0.2);
}

.capability-icon svg {
    width: 26px;
    height: 26px;
    color: var(--accent);
    transition: all 0.3s ease;
}

.capability-text-wrapper {
    max-height: 120px;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
    flex-grow: 1;
}

.capability-card.expanded .capability-text-wrapper {
    max-height: 600px;
}

.capability-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
    line-height: 1.4;
    transition: color 0.3s ease;
    word-break: break-word;
}

.capability-card:hover .capability-title {
    color: var(--accent);
}

.capability-content {
    font-size: 14px;
    line-height: 1.7;
    color: var(--grey-600);
    flex-grow: 1;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    word-break: break-word;
    overflow-wrap: break-word;
}

.capability-card:hover .capability-content {
    color: var(--grey-700);
}

.capability-screenshot {
    margin-top: 32px;
    height: 420px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f5f7fa, #eef2f7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* Video Section */
.video-section {
    margin-top: 100px;
}

.video-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    height: 420px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f5f7fa, #eef2f7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.video-placeholder {
    display: none;
}

.video-play-button {
    display: none;
}

/* =============================================
   WHY GOVRYX SECTION
   ============================================= */
.why-section {
    background: var(--grey-50);
    padding: var(--section-padding) 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px;
}

.why-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 26px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 8px rgba(7, 56, 115, 0.06);
    animation: cardPopIn 0.5s ease-out forwards;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
    position: relative;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(7, 56, 115, 0.12);
    border-color: #9cd725;
}

.why-card:nth-child(1) {
    animation-delay: 0.15s;
}

.why-card:nth-child(2) {
    animation-delay: 0.25s;
}

.why-card:nth-child(3) {
    animation-delay: 0.35s;
}

.why-card:nth-child(4) {
    animation-delay: 0.45s;
}

.why-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
    opacity: 1;
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(7, 56, 115, 0.2);
}

.why-icon svg {
    width: 26px;
    height: 26px;
    color: var(--accent);
    transition: all 0.3s ease;
}

.why-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
    line-height: 1.4;
    transition: color 0.3s ease;
    word-break: break-word;
}

.why-card:hover .why-title {
    color: var(--accent);
}

.why-content {
    font-size: 14px;
    line-height: 1.7;
    color: var(--grey-600);
    flex-grow: 1;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    word-break: break-word;
    overflow-wrap: break-word;
}

.why-card:hover .why-content {
    color: var(--grey-700);
}

.why-chart {
    margin-top: 24px;
    height: 420px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f5f7fa, #eef2f7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* =============================================
   TIMELINE SECTION
   ============================================= */
.timeline-section {
    background: var(--white);
    padding: var(--section-padding) 0;
}

.timeline-container {
    max-width: 1100px;
    margin: 0 auto 40px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.timeline-note {
    font-size: 16px;
    line-height: 1.8;
    color: var(--grey-600);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 16px;
}

.timeline-cta-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
    margin-bottom: 40px;
}

.timeline-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* =============================================
   HOW IT WORKS SECTION
   ============================================= */
.how-it-works-section {
    background: var(--grey-50);
    padding: var(--section-padding) 0;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.step-item {
    flex: 1;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    padding: 32px 36px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 8px rgba(7, 56, 115, 0.06);
    animation: cardPopInEnhanced 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
}

.step-item:nth-child(1) {
    animation-delay: 0.1s;
}

.step-item:nth-child(3) {
    animation-delay: 0.25s;
}

.step-item:nth-child(5) {
    animation-delay: 0.4s;
}

.step-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 48px rgba(7, 56, 115, 0.18);
    border-color: #9cd725;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: #9cd725;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(7, 56, 115, 0.18);
    transition: all 0.3s ease;
}

.step-item:hover .step-number {
    transform: scale(1.1) rotate(-8deg);
    box-shadow: 0 8px 20px rgba(156, 215, 37, 0.25);
}

.step-icon {
    display: none;
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
    line-height: 1.3;
    text-align: left;
}

.step-item:hover .step-title {
    color: var(--accent);
}

.step-content {
    font-size: 15px;
    line-height: 1.7;
    color: var(--grey-600);
    margin-top: 16px;
    text-align: left;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    flex-shrink: 0;
    min-height: 100%;
}

.step-connector svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
    stroke-width: 2.5;
    transition: all 0.3s ease;
}

.step-connector:hover svg {
    color: var(--accent);
    transform: translateX(6px);
}

/* =============================================
   INDUSTRIES SECTION
   ============================================= */
.industries-section {
    background: var(--white);
    padding: var(--section-padding) 0;
}

.industries-intro {
    font-size: 18px;
    font-weight: 500;
    color: var(--accent);
    margin-top: 16px;
    margin-bottom: 64px;
    letter-spacing: -0.01em;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.industry-card {
    background: #ffffff;
    border: 1.5px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 8px rgba(7, 56, 115, 0.06);
    animation: cardPopIn 0.6s ease-out forwards;
    opacity: 0;
    display: flex;
    flex-direction: column;
    position: relative;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.industry-card:nth-child(1) {
    animation-delay: 0.15s;
}

.industry-card:nth-child(2) {
    animation-delay: 0.25s;
}

.industry-card:nth-child(3) {
    animation-delay: 0.35s;
}

.industry-card:nth-child(4) {
    animation-delay: 0.45s;
}

.industry-card:nth-child(5) {
    animation-delay: 0.55s;
}

.industry-card:nth-child(6) {
    animation-delay: 0.65s;
}

.industry-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 48px rgba(7, 56, 115, 0.15);
    border-color: var(--accent);
}

.industry-card:hover::before {
    opacity: 1;
}

.industry-image {
    height: 140px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    padding: 16px;
    transition: all 0.3s ease;
}

.industry-image svg {
    width: 64px;
    height: 64px;
    stroke: currentColor;
    fill: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.industry-card:hover .industry-image svg {
    transform: scale(1.15) rotate(-5deg);
    filter: drop-shadow(0 4px 12px rgba(156, 215, 37, 0.4));
}

.industry-card:hover .industry-image {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

.industry-image img {
    display: none;
}

.industry-card-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.industry-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.industry-card:hover .industry-title {
    color: var(--accent);
}

.industry-content {
    font-size: 15px;
    line-height: 1.7;
    color: var(--grey-600);
    transition: color 0.3s ease;
}

.industry-card:hover .industry-content {
    color: var(--grey-700);
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* Responsive - Mobile */
@media (max-width: 640px) {
    .industries-grid {
        gap: 20px;
    }

    .industry-card-content {
        padding: 24px;
    }

    .industry-title {
        font-size: 18px;
    }

    .industry-content {
        font-size: 14px;
    }
}

/* =============================================
   BOTTOM CTA SECTION
   ============================================= */
.bottom-cta {
    position: relative;
    padding: 110px 0;
    background: #073873;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(156, 215, 37, 0.2), transparent),
        radial-gradient(ellipse 60% 40% at 100% 100%, rgba(10, 74, 143, 0.5), transparent);
}

.bottom-cta .container {
    position: relative;
    text-align: center;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 48px;
}

.cta-quote {
    font-size: 20px;
    font-style: italic;
    color: var(--grey-300);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--grey-900);
    padding: 80px 0 40px;
    color: var(--grey-400);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 3fr;
    gap: 80px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 15px;
    color: var(--grey-500);
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--grey-800);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--accent);
}

.social-link svg {
    width: 18px;
    height: 18px;
    color: var(--grey-400);
}

.social-link:hover svg {
    color: var(--primary);
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-nav-column h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.footer-nav-column a {
    display: block;
    font-size: 14px;
    color: var(--grey-500);
    padding: 8px 0;
    transition: var(--transition-base);
}

.footer-nav-column a:hover {
    color: var(--accent);
}

.footer-newsletter {
    padding-top: 40px;
    border-top: 1px solid var(--grey-800);
    margin-bottom: 40px;
}

.footer-newsletter h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 100%;
    width: 100%;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    background: var(--grey-800);
    border: 1px solid var(--grey-700);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 14px;
    transition: var(--transition-base);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--accent);
}

.newsletter-input::placeholder {
    color: var(--grey-500);
}

.newsletter-button {
    padding: 12px 24px;
    background: var(--accent);
    color: var(--primary);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
}

.newsletter-button:hover {
    background: var(--accent-hover);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--grey-800);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--grey-600);
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

@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 cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardPopIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(15px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes iconBounce {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(10px);
    }

    60% {
        opacity: 1;
        transform: scale(1.1);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes cardPopInEnhanced {
    0% {
        opacity: 0;
        transform: scale(0.85) translateY(30px) rotateX(10deg);
    }

    60% {
        opacity: 1;
        transform: scale(1.05) translateY(-5px) rotateX(0deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0) rotateX(0deg);
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   RESPONSIVE DESIGN - COMPREHENSIVE BREAKPOINTS
   ============================================= */

/* =============================================
   LARGE DESKTOP (2000px+)
   ============================================= */
@media (min-width: 2000px) {
    .container {
        max-width: 1920px;
    }

    :root {
        --section-padding: 130px;
    }

    .hero-title {
        font-size: 72px;
    }

    .section-title {
        font-size: 52px;
    }
}

/* =============================================
   DESKTOP (1201px - 1999px)
   ============================================= */
@media (max-width: 1920px) {
    .container {
        max-width: 1400px;
    }

    .logo-item.large {
        height: 120px;
    }
}

/* =============================================
   TABLET LANDSCAPE (1025px - 1200px)
   ============================================= */
@media (max-width: 1200px) {
    :root {
        --section-padding: 100px;
    }

    .container {
        max-width: 960px;
    }

    .hero-title {
        font-size: 52px;
    }

    .section-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .capabilities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .moving-logos {
        padding: 40px 0;
    }

    .logo-item {
        height: 50px;
    }

    .logos-track {
        gap: 60px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .chart-container {
        flex-direction: column;
        padding: 40px;
    }

    .chart-placeholder {
        width: 100%;
        min-height: 300px;
    }

    .infrastructure-content {
        gap: 40px;
    }

    .footer-nav {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .infrastructure-diagram {
        height: 350px;
    }

    .capability-screenshot {
        height: 350px;
    }
}

/* =============================================
   TABLET (769px - 1024px)
   ============================================= */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .container {
        max-width: 768px;
        padding: 0 20px;
    }

    body {
        padding-top: 65px;
    }

    .hero {
        min-height: auto;
        padding: 70px 0 50px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .hero-content {
        max-width: 100%;
        padding-left: 0;
    }

    .hero-title {
        font-size: 44px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-buttons {
        justify-content: center;
        gap: 12px;
        flex-direction: column;
        width: 100%;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 15px;
    }

    .hero-visual {
        order: -1;
        margin-bottom: 30px;
        min-height: 280px;
    }

    .image-carousel {
        gap: 20px;
    }

    .carousel-item {
        width: 280px;
        height: 210px;
    }

    .carousel-gradient-left {
        width: 120px;
    }

    .carousel-gradient-right {
        width: 180px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-header {
        margin-bottom: 45px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0;
    }

    .stat-card {
        padding: 24px;
    }

    .stat-value {
        font-size: 36px;
    }

    .chart-container {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
    }

    .chart-text h3 {
        font-size: 24px;
    }

    .chart-placeholder {
        height: 280px;
    }

    .infrastructure-content {
        grid-template-columns: 1fr 1fr !important;
        gap: 40px;
        align-items: center;
    }

    .infrastructure-diagram {
        height: 350px;
    }

    .capabilities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .capability-card {
        padding: 24px;
    }

    .capability-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 18px;
    }

    .capability-title {
        font-size: 20px;
    }

    .capability-content {
        font-size: 14px;
    }

    .capability-screenshot {
        margin-top: 24px;
        height: 300px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px;
    }

    .why-card {
        padding: 24px;
    }

    .why-chart {
        margin-top: 20px;
        height: 300px;
    }

    .steps-container {
        flex-direction: column;
        gap: 20px;
    }

    .step-item {
        max-width: 100%;
        padding: 24px;
    }

    .step-connector {
        transform: rotate(90deg);
        padding: 0;
        margin: 0;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .industry-image {
        height: 140px;
    }

    .industry-card {
        padding: 20px;
    }

    .timeline-container {
        height: 300px;
    }

    .video-container {
        height: 300px;
    }

    .cta-title {
        font-size: 40px;
    }

    .cta-buttons {
        gap: 12px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .newsletter-form {
        flex-direction: row;
    }

    .moving-logos {
        padding: 35px 0;
    }

    .logo-item {
        height: 45px;
    }

    .logo-item.large {
        height: 80px;
    }

    .logos-track {
        gap: 50px;
    }

    .nav-menu {
        gap: 16px;
    }

    .nav-logo a {
        font-size: 20px;
    }

    .problem-intro,
    .problem-detail {
        font-size: 16px;
    }

    .capabilities-intro {
        font-size: 16px;
    }

    .timeline-note {
        font-size: 14px;
    }
}

/* =============================================
   SMALL TABLET & LARGE PHONE (641px - 768px)
   ============================================= */
@media (max-width: 768px) and (min-width: 641px) {
    :root {
        --section-padding: 60px;
    }

    .container {
        max-width: 540px;
    }

    .capabilities-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .infrastructure-content {
        grid-template-columns: 1fr 1fr !important;
        gap: 40px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }
}

/* =============================================
   TABLET / PHONE (641px - 768px)
   ============================================= */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .container {
        max-width: 540px;
        padding: 0 16px;
    }

    body {
        padding-top: 60px;
    }

    .navbar {
        padding: 12px 0;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        border-top: 1px solid rgba(156, 215, 37, 0.1);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        padding: 12px 0;
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(156, 215, 37, 0.08);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        padding: 12px 20px;
        font-size: 14px;
        font-weight: 500;
        color: #0f172a;
    }

    .nav-link::after {
        display: none;
    }

    .nav-toggle {
        display: flex;
        cursor: pointer;
        z-index: 1001;
    }

    .nav-toggle span {
        width: 24px;
        height: 3px;
        background: #073873;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .nav-logo a {
        font-size: 18px;
    }

    .hero {
        padding: 60px 0 50px;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        padding-left: 0;
        text-align: center;
    }

    .hero-title {
        font-size: 36px;
        line-height: 1.15;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .hero-visual {
        order: -1;
        min-height: 250px;
    }

    .image-carousel {
        gap: 16px;
    }

    .carousel-item {
        width: 240px;
        height: 180px;
    }

    .carousel-gradient-left,
    .carousel-gradient-right {
        display: none;
    }

    .carousel-row {
        display: block;
    }

    .moving-logos {
        padding: 30px 0;
    }

    .logo-item {
        height: 35px;
    }

    .logo-item.large {
        height: 60px;
    }

    .logos-track {
        gap: 30px;
    }

    .trust-badges {
        flex-direction: column;
        gap: 10px;
    }

    .trust-separator {
        display: none;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0;
    }

    .stat-card {
        padding: 20px;
        border-radius: 10px;
    }

    .stat-value {
        font-size: 32px;
    }

    .stat-label {
        font-size: 14px;
    }

    .problem-intro,
    .problem-detail {
        font-size: 15px;
        line-height: 1.6;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        padding: 0 24px;
        max-width: 100%;

        flex-direction: column;
        gap: 20px;
        padding: 24px;
        border-radius: 12px;
    }

    .chart-text h3 {
        font-size: 22px;
    }

    .chart-text p {
        font-size: 15px;
    }

    .chart-placeholder {
        height: 250px;
        border-radius: 10px;
    }

    .infrastructure-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .infrastructure-intro {
        font-size: 20px;
    }

    .infrastructure-detail {
        font-size: 15px;
    }

    .infra-headline {
        font-size: 20px;
    }

    .infra-diagram {
        height: 250px;
        border-radius: 10px;
    }

    .read-more-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .capabilities-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px;
    }

    .capability-card {
        padding: 20px;
        border-radius: 10px;
    }

    .capability-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 16px;
    }

    .capability-title {
        font-size: 18px;
    }

    .capability-content {
        font-size: 14px;
        line-height: 1.6;
    }

    .capability-screenshot {
        margin-top: 20px;
        height: 250px;
        border-radius: 10px;
    }

    .capabilities-intro {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-card {
        padding: 20px;
        border-radius: 10px;
    }

    .why-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 16px;
    }

    .why-title {
        font-size: 18px;
    }

    .why-content {
        font-size: 14px;
        line-height: 1.6;
    }

    .why-chart {
        margin-top: 16px;
        height: 250px;
        border-radius: 10px;
    }

    .steps-container {
        flex-direction: column;
        gap: 16px;
    }

    .step-item {
        max-width: 100%;
        padding: 20px;
        border-radius: 10px;
    }

    .step-number {
        width: 36px;
        height: 36px;
        font-size: 13px;
        margin-bottom: 16px;
    }

    .step-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }

    .step-title {
        font-size: 20px;
    }

    .step-content {
        font-size: 14px;
    }

    .step-connector {
        display: none;
    }

    .industries-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .industry-card {
        overflow: visible;
        padding: 0;
    }

    .industry-image {
        height: 120px;
        border-radius: 10px;
        margin-bottom: 12px;
    }

    .industry-content {
        padding: 0;
    }

    .industry-title {
        font-size: 16px;
    }

    .industry-content {
        font-size: 13px;
    }

    .timeline-container {
        height: 250px;
        border-radius: 10px;
    }

    .timeline-note {
        font-size: 14px;
    }

    .timeline-cta-text {
        font-size: 18px;
    }

    .timeline-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .video-container {
        height: 250px;
        border-radius: 10px;
    }

    .bottom-cta {
        padding: 80px 0;
    }

    .cta-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .cta-quote {
        font-size: 16px;
        line-height: 1.6;
    }

    .footer {
        padding: 60px 0 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    .footer-logo {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .footer-tagline {
        font-size: 14px;
    }

    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .footer-nav-column h4 {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .footer-nav-column a {
        font-size: 13px;
        padding: 6px 0;
    }

    .footer-newsletter {
        padding-top: 30px;
        margin-bottom: 30px;
    }

    .footer-newsletter h4 {
        font-size: 13px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
        max-width: 100%;
    }

    .newsletter-input,
    .newsletter-button {
        width: 100%;
        padding: 12px 16px;
        font-size: 14px;
    }

    .footer-bottom {
        padding-top: 20px;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}

/* =============================================
   SMALL PHONE (480px - 640px)
   ============================================= */
@media (max-width: 640px) {
    :root {
        --section-padding: 50px;
    }

    .container {
        max-width: 100%;
        padding: 0 12px;
    }

    body {
        font-size: 15px;
        padding-top: 55px;
    }

    .navbar {
        padding: 10px 0;
    }

    .nav-logo a {
        font-size: 16px;
    }

    .hero {
        padding: 50px 0 40px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.15;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .hero-buttons {
        gap: 8px;
    }

    .btn {
        padding: 11px 16px;
        font-size: 13px;
        border-radius: 8px;
    }

    .hero-visual {
        min-height: 180px;
    }

    .carousel-item {
        width: 180px;
        height: 135px;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .stats-grid {
        gap: 12px;
    }

    .stat-card {
        padding: 16px 12px;
        border-radius: 8px;
    }

    .stat-value {
        font-size: 28px;
    }

    .stat-label {
        font-size: 13px;
    }

    .problem-intro,
    .problem-detail,
    .vision-paragraph {
        font-size: 15px !important;
        text-align: center !important;
        margin-bottom: 20px !important;
    }

    .chart-container {
        padding: 16px;
        gap: 16px;
    }

    .chart-text h3 {
        font-size: 18px;
    }

    .chart-placeholder {
        height: 200px;
    }

    .infrastructure-content {
        gap: 20px;
    }

    .infrastructure-intro {
        font-size: 18px;
    }

    .infrastructure-detail {
        font-size: 14px;
    }

    .infra-headline {
        font-size: 18px;
    }

    .infra-diagram {
        height: 180px;
    }

    .capability-card {
        padding: 16px;
    }

    .capability-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }

    .capability-title {
        font-size: 16px;
    }

    .capability-screenshot {
        height: 180px;
    }

    .why-card {
        padding: 16px;
    }

    .why-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }

    .why-title {
        font-size: 16px;
    }

    .why-chart {
        height: 180px;
    }

    .step-item {
        padding: 16px;
    }

    .step-number {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .step-icon {
        width: 48px;
        height: 48px;
    }

    .step-title {
        font-size: 16px;
    }

    .industry-card {
        margin-bottom: 12px;
    }

    .industry-image {
        height: 100px;
    }

    .industry-title {
        font-size: 15px;
    }

    .timeline-container {
        height: 200px;
    }

    .timeline-cta-text {
        font-size: 16px;
    }

    .video-container {
        height: 200px;
    }

    .bottom-cta {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .cta-buttons {
        gap: 10px;
    }

    .cta-quote {
        font-size: 14px;
    }

    .footer {
        padding: 50px 0 25px;
    }

    .footer-logo {
        font-size: 22px;
    }

    .footer-nav {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-nav-column h4 {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .footer-nav-column a {
        font-size: 12px;
        padding: 5px 0;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input,
    .newsletter-button {
        width: 100%;
        padding: 10px 12px;
        font-size: 13px;
    }

    .nav-menu {
        top: 62px;
    }

    .logo-item {
        height: 30px;
    }

    .logo-item.large {
        height: 50px;
    }

    .logos-track {
        gap: 20px;
    }
}

/* =============================================
   EXTRA SMALL PHONE (320px - 479px)
   ============================================= */
@media (max-width: 479px) {
    :root {
        --section-padding: 40px;
    }

    .container {
        padding: 0 10px;
    }

    body {
        font-size: 14px;
    }

    .navbar {
        padding: 8px 0;
    }

    .nav-container {
        padding: 0 10px;
    }

    .nav-logo a {
        font-size: 14px;
    }

    .nav-toggle span {
        width: 20px;
        height: 2px;
        gap: 4px;
    }

    .hero {
        padding: 40px 0 30px;
    }

    .hero-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .hero-buttons {
        gap: 6px;
    }

    .btn {
        padding: 10px 14px;
        font-size: 12px;
        border-radius: 6px;
    }

    .hero-visual {
        min-height: 140px;
    }

    .carousel-item {
        width: 140px;
        height: 105px;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 14px;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .stat-card {
        padding: 14px 10px;
    }

    .stat-value {
        font-size: 24px;
    }

    .stat-label {
        font-size: 12px;
    }

    .problem-intro,
    .problem-detail {
        font-size: 13px;
    }

    .chart-container {
        padding: 14px;
        gap: 12px;
    }

    .chart-text h3 {
        font-size: 16px;
    }

    .chart-text p {
        font-size: 13px;
    }

    .chart-placeholder {
        height: 160px;
    }

    .infrastructure-intro {
        font-size: 16px;
    }

    .infra-headline {
        font-size: 16px;
    }

    .infra-diagram {
        height: 140px;
    }

    .capability-card {
        padding: 14px;
    }

    .capability-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 10px;
    }

    .capability-title {
        font-size: 15px;
    }

    .capability-content {
        font-size: 13px;
    }

    .capability-screenshot {
        height: 140px;
    }

    .why-card {
        padding: 14px;
    }

    .why-icon {
        width: 36px;
        height: 36px;
    }

    .why-title {
        font-size: 15px;
    }

    .step-item {
        padding: 14px;
    }

    .step-icon {
        width: 40px;
        height: 40px;
    }

    .step-title {
        font-size: 15px;
    }

    .industry-card {
        margin-bottom: 10px;
    }

    .industry-image {
        height: 80px;
    }

    .industry-title {
        font-size: 14px;
    }

    .timeline-container {
        height: 160px;
    }

    .timeline-cta-text {
        font-size: 15px;
    }

    .video-container {
        height: 160px;
    }

    .bottom-cta {
        padding: 50px 0;
    }

    .cta-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .cta-quote {
        font-size: 13px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-logo {
        font-size: 18px;
    }

    .footer-tagline {
        font-size: 13px;
    }

    .footer-nav-column h4 {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .footer-nav-column a {
        font-size: 11px;
        padding: 4px 0;
    }

    .newsletter-input,
    .newsletter-button {
        padding: 9px 10px;
        font-size: 12px;
    }

    .logo-item {
        height: 25px;
    }

    .logo-item.large {
        height: 40px;
    }

    .moving-logos {
        padding: 20px 0;
    }
}

/* Smooth scrolling for Safari */
@supports (-webkit-touch-callout: none) {
    html {
        scroll-behavior: smooth;
    }
}