@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* ================================
   1. CSS VARIABLES & RESET
   ================================ */
:root {
    /* Colors */
    --primary-blue: #0a3d8e;
    --accent-blue: #5a98ad;
    --light-gray: #d9d9d9;
    --text-gray: #575756;
    --light-text: #9c9b9b;
    --white: #ffffff;
    --black: #000000;
    
    /* Typography */
    --font-inter: "Inter", sans-serif;
    
    /* Spacing */
    --section-padding: 100px 53px;
    --container-max-width: 1440px;
    
    /* Transitions */
    --transition-smooth: all 0.3s ease;
    --transition-carousel: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-inter), -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
    padding-top: 100px;
    width: 100%;
    max-width: 100vw;
}

/* ================================
   2. TYPOGRAPHY
   ================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

.section-title {
    font-size: 64px;
    font-weight: bold;
    color: var(--primary-blue);
    margin-bottom: 50px;
    text-align: center;
}

.section-subtitle {
    font-size: 40px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 50px;
    text-align: center;
}

/* ================================
   3. BUTTONS
   ================================ */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.btn-large {
    padding: 20px 40px;
    font-size: 36px;
    border-radius: 10px;
}

/* Primary Button */
.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    border: 2px solid var(--primary-blue);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-blue);
    transition: none;
    z-index: 0;
}

.btn-primary span {
    position: relative;
    z-index: 1;
    transition: color 0.8s ease;
}

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

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

.btn-primary.animating::before {
    left: 0;
    transition: left 0.8s ease;
}

.btn-primary.animating span {
    color: var(--white);
}

/* Secondary Button */
.btn-secondary {
    background: rgba(217, 217, 217, 0.15);
    border: 1px solid var(--light-gray);
    color: var(--primary-blue);
}

.btn-secondary:hover {
    background: rgba(217, 217, 217, 0.3);
}

/* ================================
   4. HEADER
   ================================ */
.header {
    width: 100%;
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    background: var(--white);
    border-bottom: 1px solid #e0e0e0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header.header-scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.header-container {
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 140px;
}

.logo-img {
    width: 200px;
}

/* Navigation */
.header-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-right: 40px;
    flex-grow: 1;
    justify-content: flex-end;
}

.nav-link {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    padding: 10px 15px;
    border-radius: 6px;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-blue);
    background-color: rgba(10, 61, 142, 0.05);
}

.nav-link.active {
    color: var(--primary-blue);
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background-color: var(--primary-blue);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.account-btn {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.account-btn:hover {
    background: #083067;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(10, 61, 142, 0.3);
}

.language-selector {
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    outline: none;
    transition: var(--transition-smooth);
    min-width: 100px;
}

.language-selector:hover,
.language-selector:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 2px rgba(10, 61, 142, 0.1);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-blue);
    margin: 2px 0;
    transition: var(--transition-smooth);
    display: block;
}

.mobile-menu-btn.menu-open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.menu-open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.menu-open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ================================
   5. HERO SECTION
   ================================ */
.hero {
    background: var(--white);
    position: relative;
    height: 665px;
    min-height: 845px;
    overflow: hidden;
}

.hero-container {
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 80px;
}

.hero-content {
    margin: 40px 0;
    flex: 1;
    max-width: 800px;
    z-index: 2;
    padding: 0 0 30px 60px;
    height: 700px;
}

.hero-badge {
    color: var(--primary-blue);
    display: inline-block;
    margin-bottom: 30px;
    font-size: 36px;
    font-weight: 700;
}

.hero-title {
    font-size: 64px;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.1;
}

.hero-description {
    max-width: 550px;
    letter-spacing: 1.3px;
    font-size: 32px;
    margin-bottom: 40px;
    line-height: 1.4;
}

.hero-ctas {
    display: flex;
    gap: 32px;
    margin-bottom: 0;
}

.hero-ctas button {
    width: 260px;
}

/* Hero Visual */
.hero-visual {
    position: absolute;
    right: 0;
    top: 0;
    width: 70%;
    height: 100%;
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 61, 142, 0) 20%, #65a5b1 70%);
}

.hero-screen {
    position: relative;
    top: 100px;
    right: -170px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.imac-frame {
    width: 700px;
    display: block;
    position: relative;
    z-index: 10;
}

.screen-border {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-wrapper {
    width: 664px;
    position: absolute;
    top: 0;
    z-index: 1;
}

.video-tour {
    width: 100%;
    height: auto;
    margin: 17px 0 0 19px;
    object-fit: cover;
    pointer-events: none;
}

/* ================================
   6. CLIENTS SECTION
   ================================ */
.clients {
    padding: var(--section-padding);
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%), 
                linear-gradient(90deg, rgba(101, 165, 177, 0.02) 0%, rgba(101, 165, 177, 0.02) 100%);
    border: 1px solid #c6c6c5;
    border-radius: 26px;
    margin: 50px auto 0;
    max-width: 1666px;
    overflow: hidden;
}

.clients-container {
    max-width: 1520px;
    margin: 0 auto;
    text-align: center;
}

.clients-title {
    font-size: 55px;
    font-weight: bold;
    color: var(--primary-blue);
}

.clients-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.clients-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    animation: scroll-logos 30s linear infinite;
    width: max-content;
}

.client-logo {
    height: 250px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 40px));
    }
}

/* ================================
   7. PILLARS SECTION
   ================================ */
.pillars {
    padding: var(--section-padding);
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%), 
                linear-gradient(90deg, rgba(101, 165, 177, 0.02) 0%, rgba(101, 165, 177, 0.02) 100%);
}

.pillars-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1750px;
    margin: 0 auto;
    text-align: center;
    h2 {
        max-width: 1200px;
    }
    p {
        max-width: 1150px;
    }
}

.pillars-container .section-subtitle {
    font-size: 36px !important;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.pillar-card {
    background: var(--white);
    border: 1px solid #cbcbcb;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    text-align: center;
    min-height: 462px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
}

.pillar-icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 30px;
}

.pillar-title {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.pillar-description {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
}

.pillar-link {
    color: var(--primary-blue);
    font-weight: bold;
    text-decoration: underline;
}

.pillar-link:hover {
    color: #083067;
}

/* ================================
   8. STATISTICS SECTION
   ================================ */
.statistics {
    padding: var(--section-padding);
    background: rgba(101, 165, 177, 0.02);
}

.statistics-container {
    max-width: 1700px;
    margin: 0 auto;
    text-align: center;
    h2 {
        max-width: 1306px;
        margin-bottom: 0;
    }
}

.statistics-container p {
    font-size: 40px !important;
    max-width: 1270px;
    margin-bottom: 70px;
}

.statistics-container-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 70px;
}

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

.stat-card {
    max-width: 400px;
    text-align: center;
}

.stat-card p {
    font-size: 32px !important;
}

.stat-number {
    font-size: 96px;
    font-weight: bold;
    color: var(--accent-blue);
    margin-bottom: 40px;
    line-height: 1;
}

.stat-title {
    font-size: 40px;
    font-weight: bold;
    color: var(--primary-blue);
    margin-bottom: 15px;
    min-height: 100px;
}

.stat-description {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.4;
}

/* ================================
   9. TESTIMONIALS SECTION
   ================================ */
.testimonials {
    padding: 0 36px 100px 36px;
    background: var(--white);
    overflow: hidden;
}

.testimonials-container {
    max-width: 1500px;
    margin: 0 auto;
    text-align: center;
}

/* Carousel Container */
.testimonials-carousel {
    position: relative;
    margin: 50px auto 0;
    padding: 0 60px;
    height: 350px;
}

/* Carousel Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
    padding: 0;
}

.carousel-arrow:hover {
    transform: translateY(-50%) scale(1.15);
}

.carousel-arrow:active {
    transform: translateY(-50%) scale(0.9);
}

.carousel-arrow-left {
    left: 0;
}

.carousel-arrow-right {
    right: 0;
}

/* Testimonials Wrapper */
.testimonials-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 500px;
}

/* Carousel Animations */
@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

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

@keyframes slideOutToRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Testimonials Tab */
.testimonials-tab {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
}

.testimonials-tab.active {
    position: absolute;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.testimonials-tab.slide-next-in {
    animation: slideInFromRight var(--transition-carousel) forwards;
}

.testimonials-tab.slide-next-out {
    animation: slideOutToLeft var(--transition-carousel) forwards;
}

.testimonials-tab.slide-prev-in {
    animation: slideInFromLeft var(--transition-carousel) forwards;
}

.testimonials-tab.slide-prev-out {
    animation: slideOutToRight var(--transition-carousel) forwards;
}

/* Testimonials Grid */
.testimonials-grid {
    display: flex;
    gap: 40px;
    align-items: stretch;
    justify-content: center;
}

.testimonial-card {
    min-width: 294px;
    max-width: 294px;
    background: var(--white);
    border-radius: 15px;
    position: relative;
    transition: var(--transition-smooth);
}

.testimonial-rating {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 21px;
    margin-bottom: 20px;
}

.rating-stars {
    width: 215px;
    height: auto;
    object-fit: contain;
}

.rating-number {
    font-size: 36px;
    font-weight: 400;
    color: var(--primary-blue);
}

.testimonial-profile {
    display: flex;
    gap: 12px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0;
}

.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    text-align: start;
    width: 200px;
}

.testimonial-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.testimonial-role {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 5px;
}

.testimonial-date {
    font-size: 15px;
    color: var(--light-text);
    margin-bottom: 15px;
}

.testimonial-content {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-gray);
    line-height: 1.6;
    text-align: left;
}

/* Tab Indicators */
.tab-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    height: 30px;
    align-items: center;
}

.tab-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: none;
    background: rgba(10, 61, 142, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tab-dot.active {
    background: var(--primary-blue);
    transform: scale(1.2);
}

.tab-dot:hover {
    background: var(--primary-blue);
    transform: scale(1.3);
}

/* ================================
   10. HOW IT WORKS SECTION
   ================================ */
.how-it-works {
    padding: 50px 0 100px;
    background: var(--white);
}

.how-it-works-container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 50px;
}

.steps-stack-container {
    position: relative;
    margin-top: 100px;
}

.step-card {
    background: var(--white);
    border: 0.5px solid #c6c6c5;
    border-radius: 20px;
    padding: 100px 125px;
    display: flex;
    gap: 130px;
    min-height: 708px;
    height: 708px;
    position: sticky;
    top: 120px;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    will-change: transform, opacity;
}

.step-card[data-step="1"] {
    z-index: 1;
}

.step-card[data-step="2"] {
    z-index: 2;
}

.step-card[data-step="3"] {
    z-index: 3;
}

.step-content {
    flex: 1;
    max-width: 624px;
}

.step-title {
    font-size: 64px;
    font-weight: bold;
    color: var(--accent-blue);
    margin-bottom: 20px;
}

.step-subtitle {
    font-size: 48px;
    font-weight: bold;
    color: var(--accent-blue);
    margin-bottom: 30px;
}

.step-description {
    max-width: 550px;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.6;
}

.step-description-monitoring {
    font-size: 24px;
    font-weight: 600;
}

.step-description-monitoring-points {
    font-size: 24px;
    font-weight: 300;
    margin-left: 20px;
}

.step-description-monitoring-points li {
    margin-bottom: 20px;
}

.step-visual {
    flex: 1;
    max-width: 700px;
}

.step-image {
    width: 100%;
    height: 467px;
    object-fit: contain;
    border-radius: 20px;
    margin-top: -10px;
}

/* ================================
   11. PRICING SECTION
   ================================ */
.pricing {
    padding: var(--section-padding);
    background: var(--white);
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.pricing-card {
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: var(--primary-blue);
    transform: scale(1.05);
    background: linear-gradient(135deg, #ffffff 0%, rgba(10, 61, 142, 0.02) 100%);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-title {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 30px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--accent-blue);
}

.amount {
    font-size: 64px;
    font-weight: bold;
    color: var(--primary-blue);
    margin: 0 5px;
}

.period {
    font-size: 18px;
    color: var(--text-gray);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.pricing-features li {
    padding: 12px 0 12px 25px;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-gray);
    font-size: 16px;
    position: relative;
}

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

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
}

/* ================================
   12. FEATURES SECTION
   ================================ */
.features {
    padding: var(--section-padding);
    background: rgba(101, 165, 177, 0.02);
}

.features-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    p {
        max-width: 1200px;
        margin-bottom: 0;
    }
    button {
        margin-top: 70px;
    }
}

.text-accent {
    color: var(--accent-blue);
}

.features-icons {
    margin: 70px auto;
    padding: 0 71px;
    max-width: 1389px;
}

.feature-icon-row {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 90px;
}

.feature-icon-row:last-child {
    margin-bottom: 0;
}

.feature-icon-item {
    flex: 1;
    max-width: 675px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    margin-top: 3px;
    flex-shrink: 0;
}

.feature-icon-title {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.feature-icon-desc {
    font-size: 32px;
    font-weight: 500;
}

.feature-text {
    font-size: 32px;
    text-align: start;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.feature-card {
    background: var(--white);
    border: 2px solid var(--primary-blue);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    height: 700px;
    display: flex;
    text-align: start;
    flex-direction: column;
}

.feature-card-header {
    position: relative;
    height: 220px;
    min-height: 220px;
    overflow: hidden;
    border-bottom: 2px solid var(--primary-blue);
}

.feature-card-bg {
    position: absolute;
    right: -3px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}

.feature-card-info {
    padding: 10px 50px 10px 10px;
}

.feature-card-overlay-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 36px;
    font-weight: 600;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-card-title {
    min-height: 90px;
    font-size: 40px;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 30px 0 15px 20px;
}

.feature-card-subtitle {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 20px 10px;
}

.feature-card-description {
    font-size: 18px;
    font-weight: 500;
    margin: 0 10px 20px;
    line-height: 1.5;
    flex-grow: 1;
}

.feature-link {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: underline;
}

.feature-link:hover {
    color: #083067;
}

.features-footer {
    font-size: 48px;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 50px 0;
}

/* ================================
   13. NEWSLETTER SECTION
   ================================ */
.newsletter {
    display: none;
    padding: 0 0 100px 0;
    background: var(--white);
}

.newsletter button {
    width: 270px;
}

.newsletter-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 100px 50px;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 25px;
}

.newsletter-title {
    font-size: 48px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 30px;
}

.newsletter-subtitle {
    font-size: 36px;
    font-weight: 600;
    color: var(--accent-blue);
    margin-bottom: 50px;
}

.newsletter-form {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
}

.newsletter-input {
    flex: 1;
    max-width: 830px;
    height: 56px;
    padding: 15px 20px;
    border: 1px solid var(--light-gray);
    border-radius: 10px;
    font-size: 20px;
    background: rgba(217, 217, 217, 0.1);
}

.newsletter-input::placeholder {
    color: rgba(156, 155, 155, 0.5);
}

.newsletter-disclaimer {
    font-size: 20px;
    color: var(--light-text);
    text-align: start;
    margin: 30px 0 0 125px;
}

/* ================================
   14. FOOTER
   ================================ */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 100px 74px 45px;
}

.footer p {
    margin: 0 !important;
}

.footer-container {
    max-width: 1606px;
    margin: 0 140px;
}

.footer-content {
    display: flex;
    gap: 100px;
    margin-bottom: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1 1 280px;
    min-width: 220px;
}

.footer-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
}

.footer-column-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 20px;
}

.footer-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-country {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 6px;
}

.footer-address,
.footer-number {
    font-size: 24px;
    font-weight: 500;
}

.footer-link {
    font-size: 24px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-link:hover {
    color: var(--accent-blue);
}

.footer-social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-social-link img {
    display: block;
}

.footer-divider {
    max-width: 1400px;
    height: 0.3px;
    background: #bdbdbd;
    margin: 45px 0;
}

.divider-line {
    width: 100%;
    max-width: 100%;
    height: 1px;
}

.footer-copyright {
    text-align: center;
    padding: 20px;
}

.footer-copyright p {
    font-size: 24px;
    font-weight: 500;
    color: var(--light-gray);
}

/* ================================
   15. RESPONSIVE DESIGN
   ================================ */

/* Large Screens */
@media (max-width: 1600px) {
    .hero-visual {
        margin: auto;
    }
    
    .hero-screen {
        top: 130px;
    }

    .imac-frame {
        width: 500px;
    }

    .video-wrapper {
        width: 475px;
    }

    .video-tour {
        margin: 13px 0 0 15px;
    }
}

@media (max-width: 1400px) {
    .hero-screen {
        top: 150px;
        right: -150px;
    }
}

/* Tablet */
@media (max-width: 1200px) {
    .hero {
        height: auto;
        min-height: auto;
    }

    .hero-screen {
        justify-content: center;
        right: 0;
    }
    
    .hero-container {
        flex-direction: column;
        padding: 0;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        padding: 20px;
        margin: 0;
    }
    
    .hero-visual {
        position: relative;
        width: 100%;
        height: 600px;
        right: auto;
        top: auto;
    }

    .hero-badge {
      margin-bottom: 0;
    }
    
    .hero-screen {
        top: 50px;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-description {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 48px !important;
    }
    
    .section-subtitle {
        font-size: 24px !important;
    }
    
    .pillars-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .step-card {
        flex-direction: column;
        height: auto;
        min-height: auto;
        padding: 60px 40px;
        gap: 40px;
    }

    .step-content,
    .step-visual {
        max-width: 100%;
    }

    .step-title {
        font-size: 48px;
    }

    .step-subtitle {
        font-size: 36px;
    }

    .step-description,
    .step-description-monitoring,
    .step-description-monitoring-points {
        font-size: 20px;
    }

    .step-image {
        height: auto;
        max-height: 400px;
    }
    
    .feature-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }

    .newsletter-disclaimer {
        margin: auto;
    }
}

@media (max-width: 1024px) {
    .header-container {
        padding: 0 20px;
    }
    
    .header-nav {
        gap: 25px;
    }
    
    .nav-link {
        font-size: 16px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 900px) {
}

/* Mobile */
@media (max-width: 768px) {
    .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 1px solid #e0e0e0;
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        margin: 0;
    }
    
    .header-nav.nav-open {
        display: flex;
    }
    
    .nav-link {
        padding: 15px 40px;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
        text-align: left;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .header-actions {
        gap: 15px;
    }
    
    .account-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .language-selector {
        font-size: 12px;
        padding: 6px 10px;
        min-width: 80px;
    }
    
    .hero-visual {
        height: 500px;
    }
    
    .hero-screen {
        top: 30px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .imac-frame {
        width: 400px;
    }

    .video-wrapper {
        width: 380px;
    }

    .video-tour {
        margin: 10px 0 0 11px;
    }

    .clients {
        min-height: 800px;
    }
    
    .clients-title {
        margin-bottom: 50px;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        flex-direction: column;
    }
    
    .testimonial-card {
        min-width: auto;
    }
    
    .step-card {
        padding: 40px 24px;
        gap: 30px;
        text-align: center;
    }

    .step-title {
        font-size: 40px;
    }

    .step-subtitle {
        font-size: 28px;
    }

    .step-description,
    .step-description-monitoring,
    .step-description-monitoring-points {
        font-size: 18px;
    }

    .step-image {
        max-height: 350px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 20px;
    }
    
    .newsletter-input {
        max-width: 100%;
    }

    .footer {
        padding: 60px 24px 30px;
    }

    .footer-container {
        margin: 0;
        padding: 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-column {
        min-width: 100%;
    }

    .footer-links {
        max-width: 100%;
    }
    
    .feature-icon-row {
        flex-direction: column;
        gap: 30px;
    }
    
    .feature-icon-item {
        justify-content: center;
        text-align: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .header-container {
      flex-direction: column;
      padding: 10px 0;
    }
    .hero-title {
        font-size: 28px;
    }
    
    .imac-frame {
        width: 300px;
    }

    .video-wrapper {
        width: 286px
    }

    .video-tour {
        margin: 7px 0 0 7px;
    }

    .hero-description {
        font-size: 16px;
    }
    
    .statistics {
        padding: 20px 53px 0;
    }

    .testimonials {
        padding: 50px 0;
    }

    /* Testimonials Wrapper */
    .testimonials-wrapper {
        min-height: 1500px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .btn-large {
        padding: 15px 30px;
        font-size: 20px;
    }

    .section-subtitle {
        margin-bottom: 0;
    }

    .how-it-works {
        padding: 0;
    }

    .steps-stack-container {
        margin: 50px 20px 0;
    }

    .how-it-works-container {
        padding: 0;
    }

    .rating-stars {
        width: 150px;
    }

    .feature-card-info {
        padding: 0;
    }

    .footer {
        padding: 50px 16px 24px;
    }

    .footer-content {
        gap: 32px;
    }

    .footer-column-title {
        margin-bottom: 16px;
    }

    .footer-links {
        gap: 14px;
    }

    .footer-divider {
        margin: 24px 0;
    }

    .footer-copyright {
        padding: 12px 4px;
    }

    .hero-visual {
        height: 400px;
    }

    .step-card {
        padding: 30px 16px;
        gap: 24px;
    }

    .step-title {
        font-size: 32px;
    }

    .step-subtitle {
        font-size: 24px;
    }

    .step-description,
    .step-description-monitoring,
    .step-description-monitoring-points {
        font-size: 16px;
    }

    .step-description-monitoring-points li {
        margin-bottom: 12px;
    }

    .step-image {
        max-height: 280px;
    }
}

/* ================================
   WELCOME POPUP
   ================================ */

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 24px;
    padding: 80px;
    max-width: 1024px;
    height: 540px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
}

.popup-overlay.active .popup-container {
    transform: scale(1) translateY(0);
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: black;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    svg {
        width: 50px;
        height: 50px;
    }
}

.popup-close:hover {
    background: #f5f5f5;
    color: var(--text-gray);
}

.popup-description {
    font-family: var(--font-inter);
    font-size: 36px;
    font-weight: 600;
    color: var(--primary-blue);
    line-height: normal;
    text-align: center;
    margin: 0;
}

.popup-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 42px;
}

.popup-btn {
    flex: 1;
    max-width: 672px;
    padding: 16px 32px;
    border-radius: 10px;
    font-family: var(--font-inter);
    font-size: 32px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.popup-btn-primary {
    background-color: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.popup-btn-primary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .popup-container {
        padding: 32px 24px;
        max-width: 90%;
    }

    .popup-description {
        font-size: 32px;
    }

    .popup-btn {
        font-size: 25px;
    }

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

    .popup-btn {
        width: 100%;
        padding: 14px 24px;
    }
}

@media (max-width: 480px) {
    .popup-description {
        font-size: 25px;
    }
    .popup-btn {
        font-size: 20px;
    }
}

/* ================================
   ABOUT US PAGE (NOSOTROS)
   ================================ */

/* Hero Section */
.about-hero-section {
    background: linear-gradient(90deg, rgba(16, 50, 105, 0.8) 0%, rgba(16, 50, 105, 0.8) 100%),
                linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%);
    padding: 129px 90px 0 90px;
    overflow: hidden;
}

.about-hero-content {
    max-width: 1504px;
    margin: 0 auto;
    display: flex;
    gap: 21px;
    align-items: center;
}

.about-hero-text {
    flex: 0 0 740px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.about-hero-title {
    font-size: 64px;
    font-weight: bold;
    color: var(--white);
    line-height: normal;
}

.about-hero-subtitle {
    font-size: 40px;
    font-weight: 600;
    color: var(--white);
    line-height: normal;
}

.about-hero-buttons {
    display: flex;
    gap: 32px;
}

.about-hero-buttons .btn {
    width: 260px;
    height: 56px;
    font-size: 20px;
}

.about-hero-image {
    flex: 0 0 720px;
    height: 593px;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mission Section */
.about-mission-section {
    background-image: url('https://www.figma.com/api/mcp/asset/1e18768f-d964-43e6-be7a-0c98493e2a77');
    background-size: 2717.68px 1547px;
    background-position: top left;
    padding: 129px 90px;
    overflow: hidden;
}

.about-mission-container {
    max-width: 1504px;
    margin: 0 auto;
    display: flex;
    gap: 42px;
    align-items: center;
}

.about-mission-content {
    flex: 0 0 580px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.about-section-title {
    font-size: 64px;
    font-weight: bold;
    color: var(--primary-blue);
    text-align: center;
    line-height: normal;
}

.about-mission-text {
    font-size: 40px;
    font-weight: 400;
    color: var(--black);
    line-height: normal;
}

.about-mission-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
}

.mission-value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 39px;
}

.mission-value-icon {
    width: 24px;
    height: 24px;
    background: var(--light-gray);
    flex-shrink: 0;
}

.mission-value-text {
    font-size: 32px;
    font-weight: bold;
    color: var(--accent-blue);
}

.about-mission-visual {
    position: relative;
    flex: 1;
    height: 650px;
}

.mission-dashboard-img {
    position: absolute;
    width: 670px;
    height: 374px;
    border: 1px solid var(--black);
    left: 211px;
    top: 134px;
}

.mission-vector-1 {
    position: absolute;
    width: 68px;
    height: 80px;
    left: 181px;
    top: 0;
}

.mission-vector-2 {
    position: absolute;
    width: 66.667px;
    height: 60px;
    left: 181px;
    top: 590px;
}

.mission-icon-chart-1,
.mission-icon-chart-2 {
    position: absolute;
    width: 79.146px;
    height: 80px;
}

.mission-icon-chart-1 {
    left: 328px;
    top: 620px;
}

.mission-icon-chart-2 {
    left: 516px;
    top: 590px;
}

.mission-icon-rocket {
    position: absolute;
    width: 80px;
    height: 73px;
    left: 30px;
    top: 460px;
}

.mission-icon-money-1 {
    position: absolute;
    width: 70.482px;
    height: 80px;
    left: 0;
    top: 270px;
}

.mission-icon-money-2 {
    position: absolute;
    width: 70.482px;
    height: 80px;
    left: 49px;
    top: 80px;
}

/* ARCSA Section */
.about-arcsa-section {
    background: rgba(242, 246, 255, 0.3);
    padding: 129px 120px;
}

.about-arcsa-container {
    max-width: 1444px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
}

.about-arcsa-title {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-blue);
    text-align: center;
    line-height: normal;
    max-width: 1164px;
}

.about-arcsa-description {
    font-size: 32px;
    font-weight: 500;
    color: var(--black);
    text-align: center;
    line-height: normal;
    max-width: 1012px;
}

.about-arcsa-logos {
    display: flex;
    gap: 124px;
    align-items: center;
    width: 1160px;
}

.arcsa-logo {
    width: 366px;
    height: 228px;
}

.arcsa-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.arcsa-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.arcsa-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.arcsa-feature-icon {
    width: 39px;
    height: 37px;
}

.arcsa-feature span {
    font-size: 32px;
    font-weight: 500;
    color: var(--black);
}

.about-arcsa-cards {
    display: flex;
    gap: 40px;
    width: 100%;
}

.arcsa-card {
    flex: 1;
    background: var(--white);
    border: 1px solid #cbcbcb;
    border-radius: 20px;
    padding: 20px 22px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
    height: 462px;
}

.arcsa-card-icon {
    width: 66.667px;
    height: 60px;
}

.arcsa-card-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-blue);
    line-height: normal;
}

.arcsa-card-text {
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
    line-height: normal;
    width: 276px;
}

.about-arcsa-footer {
    font-size: 32px;
    font-weight: 500;
    color: #103269;
    text-align: center;
    line-height: normal;
    max-width: 978px;
}

/* Values Section */
.about-values-section {
    padding: 129px 120px;
}

.about-values-container {
    max-width: 1444px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
}

.about-values-title {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-blue);
    text-align: center;
    line-height: normal;
}

.about-values-description {
    font-size: 32px;
    font-weight: 500;
    color: var(--black);
    text-align: center;
    line-height: normal;
    max-width: 1012px;
}

.about-values-grid {
    display: flex;
    gap: 40px;
    width: 100%;
}

.value-card-item {
    flex: 1;
    background: var(--white);
    border: 1px solid #cbcbcb;
    border-radius: 20px;
    padding: 20px 24px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
    height: 360px;
    max-width: 276px;
}

.value-card-icon {
    width: 60px;
    height: 60px;
}

.value-card-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-blue);
    line-height: normal;
}

.value-card-description {
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
    line-height: normal;
}

/* Believe Section */
.about-believe-section {
    background: linear-gradient(90deg, #f2f6ff 0%, #f2f6ff 100%);
    background-image: linear-gradient(90deg, #f2f6ff 0%, #f2f6ff 100%),
                      url('https://www.figma.com/api/mcp/asset/1e18768f-d964-43e6-be7a-0c98493e2a77');
    background-size: auto, 2717.68px 1547px;
    background-position: top left;
    padding: 129px 90px;
    overflow: hidden;
}

.about-believe-container {
    max-width: 1508px;
    margin: 0 auto;
    display: flex;
    gap: 67px;
    align-items: center;
}

.about-believe-content {
    flex: 0 0 761px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.about-believe-title {
    font-size: 64px;
    font-weight: bold;
    color: var(--primary-blue);
    line-height: normal;
}

.about-believe-text {
    font-size: 36px;
    font-weight: 400;
    color: var(--black);
    line-height: normal;
}

.about-believe-buttons {
    display: flex;
    gap: 32px;
}

.about-believe-buttons .btn {
    width: 260px;
    height: 56px;
    font-size: 20px;
}

.about-believe-image {
    flex: 0 0 680px;
    height: 521.44px;
}

.about-believe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Trust Section */
.about-trust-section {
    padding: 129px 90px;
}

.about-trust-container {
    max-width: 1502px;
    margin: 0 auto;
    display: flex;
    gap: 67px;
    align-items: center;
}

.about-trust-image {
    flex: 0 0 680px;
    height: 450px;
}

.about-trust-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-trust-content {
    flex: 0 0 775px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.about-trust-title {
    font-size: 58px;
    font-weight: bold;
    color: var(--primary-blue);
    line-height: normal;
}

.about-trust-subtitle {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-blue);
    line-height: normal;
}

.about-trust-text {
    font-size: 36px;
    font-weight: 400;
    color: var(--black);
    line-height: normal;
}

/* Responsive Styles */
@media (max-width: 1400px) {
    .about-hero-content,
    .about-mission-container,
    .about-believe-container,
    .about-trust-container {
        flex-direction: column;
        text-align: center;
    }

    .about-hero-text,
    .about-hero-image,
    .about-mission-content,
    .about-believe-content,
    .about-believe-image,
    .about-trust-image,
    .about-trust-content {
        flex: 1 1 auto;
        max-width: 100%;
    }

    .about-mission-visual {
        display: none;
    }

    .about-arcsa-logos {
        flex-direction: column;
        width: 100%;
    }

    .about-values-grid,
    .about-arcsa-cards {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .about-hero-section,
    .about-mission-section,
    .about-arcsa-section,
    .about-values-section,
    .about-believe-section,
    .about-trust-section {
        padding: 80px 40px;
    }

    .about-hero-title,
    .about-section-title,
    .about-believe-title {
        font-size: 40px;
    }

    .about-hero-subtitle,
    .about-mission-text,
    .about-believe-text,
    .about-trust-title,
    .about-trust-subtitle,
    .about-trust-text {
        font-size: 24px;
    }

    .about-arcsa-title,
    .about-values-title {
        font-size: 32px;
    }

    .about-arcsa-description,
    .about-values-description,
    .about-arcsa-footer {
        font-size: 20px;
    }

    .about-hero-buttons,
    .about-believe-buttons {
        flex-direction: column;
        width: 100%;
    }

    .about-hero-buttons .btn,
    .about-believe-buttons .btn {
        width: 100%;
    }

    .mission-value-text,
    .arcsa-feature span {
        font-size: 20px;
    }

    .about-values-grid,
    .about-arcsa-cards {
        flex-direction: column;
        gap: 24px;
    }

    .value-card-item,
    .arcsa-card {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .about-hero-section,
    .about-mission-section,
    .about-arcsa-section,
    .about-values-section,
    .about-believe-section,
    .about-trust-section {
        padding: 60px 20px;
    }

    .about-hero-title,
    .about-section-title,
    .about-believe-title {
        font-size: 32px;
    }

    .about-hero-subtitle,
    .about-mission-text,
    .about-believe-text,
    .about-trust-text {
        font-size: 20px;
    }

    .about-trust-title,
    .about-trust-subtitle {
        font-size: 28px;
    }

    .about-arcsa-title,
    .about-values-title {
        font-size: 28px;
    }

    .about-arcsa-description,
    .about-values-description,
    .about-arcsa-footer {
        font-size: 18px;
    }

    .mission-value-text,
    .arcsa-feature span {
        font-size: 18px;
    }

    .arcsa-card-title,
    .value-card-title {
        font-size: 20px;
    }

    .arcsa-card-text,
    .value-card-description {
        font-size: 16px;
    }
}