/* ═══════════════════════════════════════════════
   Del Coli — Light Premium Design System
   ═══════════════════════════════════════════════ */

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

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-card: #ffffff;
    --surface: #f1f5f9;
    --surface-hover: #e2e8f0;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --blue: #2563eb;
    --blue-light: #3b82f6;
    --indigo: #4f46e5;
    --purple: #7c3aed;
    --teal: #0d9488;
    --cyan: #0891b2;
    --green: #059669;
    --gradient-primary: linear-gradient(135deg, var(--blue), var(--purple));
    --border-subtle: #e2e8f0;
    --border-hover: #cbd5e1;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --container: 1200px;
    --section-py: clamp(80px, 10vw, 140px);
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    background-image: radial-gradient(circle, #cbd5e1 1px, transparent 1px);
    background-size: 32px 32px;
    background-attachment: fixed;
}

a {
    color: var(--blue);
    text-decoration: none;
    transition: color 0.3s var(--ease);
}

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

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

.reveal:nth-child(2) {
    transition-delay: 0.1s;
}

.reveal:nth-child(3) {
    transition-delay: 0.2s;
}

.reveal:nth-child(4) {
    transition-delay: 0.3s;
}

.reveal:nth-child(5) {
    transition-delay: 0.4s;
}

/* Section Commons */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.15);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.35s var(--ease);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.35);
    color: white;
}

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

.btn-outline:hover {
    color: var(--text-primary);
    border-color: var(--border-hover);
    background: var(--surface);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    font-size: 0.85rem;
    padding: 10px 20px;
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    color: white;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
    border-radius: var(--radius-md);
}

/* ═══ HEADER ═══ */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: all 0.4s var(--ease);
}

#header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

#header.scrolled::before {
    opacity: 1;
    border-bottom-color: var(--border-subtle);
}

.nav-container {
    position: relative;
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 10;
}

.logo-icon {
    display: flex;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    transition: color 0.3s var(--ease);
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: all 0.3s var(--ease);
    text-decoration: none;
}

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

.nav-link-cta {
    background: var(--gradient-primary) !important;
    color: white !important;
    margin-left: 8px;
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.2);
}

.nav-link-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}

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

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

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

/* ═══ HERO CAROUSEL ═══ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 24px 60px;
    background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 40%, #f0f9ff 70%, #faf5ff 100%);
    background-image: none;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    pointer-events: none;
}

.hero-carousel {
    position: relative;
    width: 100%;
    max-width: 700px;
    min-height: 400px;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(0.95) translateY(20px);
    transition: all 0.6s var(--ease);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
}

.slide-content {
    text-align: center;
    padding: 48px 32px;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-subtle);
    width: 100%;
}

.slide-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.carousel-slide[data-accent="blue"] .slide-logo {
    color: var(--blue);
    background: rgba(37, 99, 235, 0.08);
}

.carousel-slide[data-accent="teal"] .slide-logo {
    color: var(--teal);
    background: rgba(13, 148, 136, 0.08);
}

.carousel-slide[data-accent="purple"] .slide-logo {
    color: var(--purple);
    background: rgba(124, 58, 237, 0.08);
}

.carousel-slide[data-accent="cyan"] .slide-logo {
    color: var(--cyan);
    background: rgba(8, 145, 178, 0.08);
}

.carousel-slide[data-accent="green"] .slide-logo {
    color: var(--green);
    background: rgba(5, 150, 105, 0.08);
}

.slide-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.slide-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Carousel controls */
.carousel-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin-top: 32px;
    position: relative;
    z-index: 2;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--border-subtle);
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s var(--ease);
    box-shadow: var(--shadow-sm);
}

.carousel-btn:hover {
    border-color: var(--blue);
    color: var(--blue);
    box-shadow: var(--shadow-md);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-subtle);
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    padding: 0;
}

.carousel-dot.active {
    background: var(--blue);
    width: 28px;
    border-radius: 5px;
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    opacity: 0.4;
}

.mouse-wheel {
    width: 3px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 2px;
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(12px);
    }
}

/* ═══ COMPANIES ═══ */
.companies {
    padding: var(--section-py) 0;
    background: var(--bg-secondary);
    background-image: none;
    position: relative;
}

.companies::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.06) 0%, transparent 70%);
    top: 200px;
    left: -100px;
    pointer-events: none;
}

.companies::after {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    bottom: 300px;
    right: -100px;
    pointer-events: none;
}

.company-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 80px;
    padding: 40px;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-subtle);
    border-left: 4px solid var(--blue);
    transition: all 0.4s var(--ease);
    position: relative;
    z-index: 1;
}

[data-accent="blue"].company-block {
    border-left-color: var(--blue);
}

[data-accent="teal"].company-block {
    border-left-color: var(--teal);
}

[data-accent="purple"].company-block {
    border-left-color: var(--purple);
}

[data-accent="cyan"].company-block {
    border-left-color: var(--cyan);
}

[data-accent="green"].company-block {
    border-left-color: var(--green);
}

.company-block:last-child {
    margin-bottom: 0;
}

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

.company-block.reverse {
    direction: rtl;
}

.company-block.reverse>* {
    direction: ltr;
}

.company-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.company-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.company-block:hover .company-image img {
    transform: scale(1.05);
}

.company-info h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.company-info p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.card-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 12px;
}

[data-accent="blue"] .card-tag {
    color: var(--blue);
    background: rgba(37, 99, 235, 0.08);
}

[data-accent="teal"] .card-tag {
    color: var(--teal);
    background: rgba(13, 148, 136, 0.08);
}

[data-accent="purple"] .card-tag {
    color: var(--purple);
    background: rgba(124, 58, 237, 0.08);
}

[data-accent="cyan"] .card-tag {
    color: var(--cyan);
    background: rgba(8, 145, 178, 0.08);
}

[data-accent="green"] .card-tag {
    color: var(--green);
    background: rgba(5, 150, 105, 0.08);
}

.company-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.company-contact span,
.company-contact a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.company-contact svg {
    opacity: 0.5;
}

.company-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ═══ ABOUT ═══ */
.about {
    padding: var(--section-py) 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, #f0f4ff 50%, var(--bg-primary) 100%);
    background-image: none;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.05) 0%, transparent 70%);
    top: 50px;
    right: -150px;
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual-card {
    position: relative;
    padding: 40px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, #eff6ff, #faf5ff);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
}

.about-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.orb-1 {
    width: 200px;
    height: 200px;
    background: rgba(37, 99, 235, 0.12);
    top: -50px;
    right: -50px;
    animation: float 15s infinite ease-in-out;
}

.orb-2 {
    width: 150px;
    height: 150px;
    background: rgba(124, 58, 237, 0.1);
    bottom: -30px;
    left: -30px;
    animation: float 18s infinite ease-in-out reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -50px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 30px) scale(0.95);
    }

    75% {
        transform: translate(40px, 20px) scale(1.02);
    }
}

.about-illustration {
    position: relative;
    width: 80%;
    max-width: 280px;
}

.about-illustration svg {
    width: 100%;
    height: auto;
    animation: slowRotate 60s linear infinite;
}

@keyframes slowRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.about-content .section-title {
    text-align: left;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: all 0.3s var(--ease);
}

.highlight:hover {
    background: var(--surface-hover);
    transform: translateX(4px);
}

.highlight-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.08);
    border-radius: var(--radius-sm);
    color: var(--blue);
}

.highlight strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
}

.highlight span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ═══ VALUES ═══ */
.values {
    padding: var(--section-py) 0;
    background: var(--bg-secondary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.value-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: var(--radius-lg);
    background: white;
    border: 1px solid var(--border-subtle);
    transition: all 0.4s var(--ease);
    box-shadow: var(--shadow-sm);
}

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

.value-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    transition: transform 0.4s var(--ease-spring);
}

.value-card:hover .value-icon {
    transform: scale(1.15);
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.value-card:nth-child(1) .value-icon {
    color: var(--blue);
}

.value-card:nth-child(2) .value-icon {
    color: var(--purple);
}

.value-card:nth-child(3) .value-icon {
    color: var(--green);
}

.value-card:nth-child(4) .value-icon {
    color: var(--cyan);
}

.value-card:nth-child(5) .value-icon {
    color: var(--teal);
}

.value-card:nth-child(1):hover {
    border-color: rgba(37, 99, 235, 0.3);
}

.value-card:nth-child(2):hover {
    border-color: rgba(124, 58, 237, 0.3);
}

.value-card:nth-child(3):hover {
    border-color: rgba(5, 150, 105, 0.3);
}

.value-card:nth-child(4):hover {
    border-color: rgba(8, 145, 178, 0.3);
}

.value-card:nth-child(5):hover {
    border-color: rgba(13, 148, 136, 0.3);
}

/* ═══ CTA ═══ */
.cta-section {
    padding: var(--section-py) 0;
}

.cta-card {
    text-align: center;
    padding: 80px 40px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, #eff6ff, #faf5ff);
    border: 1px solid var(--border-subtle);
}

.cta-card h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.cta-card p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══ FOOTER ═══ */
.footer {
    padding: 60px 0 0;
    background: var(--text-primary);
    color: rgba(255, 255, 255, 0.7);
}

.footer a {
    color: rgba(255, 255, 255, 0.5);
}

.footer a:hover {
    color: white;
}

.footer .logo-text {
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4 {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: white;
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    transition: all 0.3s;
}

.footer-links a:hover {
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-visual {
        order: 2;
    }

    .about-visual-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        padding: 24px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s var(--ease);
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 14px 24px;
        width: 100%;
        justify-content: center;
    }

    .nav-link-cta {
        margin-left: 0;
        margin-top: 8px;
    }

    .company-block,
    .company-block.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .company-block.reverse>* {
        direction: ltr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-card {
        padding: 48px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-content .section-title,
    .about-text,
    .about-content .section-tag {
        text-align: center;
        display: block;
    }

    .about-highlights {
        align-items: center;
    }

    .highlight {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

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

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .slide-content {
        padding: 32px 20px;
    }

    .slide-title {
        font-size: 1.4rem;
    }
}