[x-cloak] {
    display: none !important;
}

.company-page {
    background-color: #ffffff;
    color: #111827;
    font-family: inherit;
}

.company-section {
    padding: 5rem 0;
}

.company-container {
    width: min(100%, 1120px);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.company-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-image: url('https://readdy.ai/api/search-image?query=modern%20digital%20marketing%20office%20with%20clean%20white%20background%2C%20professional%20team%20working%20on%20computers%2C%20bright%20natural%20lighting%2C%20minimalist%20workspace%20design%2C%20contemporary%20business%20environment%2C%20soft%20purple%20accents&width=1920&height=800&seq=hero001&orientation=landscape');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.company-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.82);
}

.company-hero__inner {
    position: relative;
    z-index: 1;
    width: min(100%, 720px);
}

.company-hero__eyebrow {
    display: inline-block;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #6366f1;
}

.company-hero__title {
    margin-bottom: 1.5rem;
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
}

.company-hero__description {
    margin-bottom: 2.5rem;
    font-size: 1.125rem;
    line-height: 1.75;
    color: #4b5563;
}

.company-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.company-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 999px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.company-button--primary {
    background-color: #6366f1;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.25);
}

.company-button--primary:hover {
    background-color: #4f46e5;
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.3);
}

.company-mission {
    background-color: #f8fafc;
}

.company-mission__grid {
    display: grid;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .company-mission__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: center;
    }
}

.company-mission__title {
    margin-bottom: 2rem;
    /* font-size: clamp(2.25rem, 3.5vw, 3rem); */
    font-weight: 700;
    color: #111827;
}

.company-mission__paragraphs {
    display: grid;
    gap: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.75;
    color: #4b5563;
}

.company-highlight-list {
    display: grid;
    gap: 1.75rem;
}

.company-highlight {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.company-highlight__badge {
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.company-highlight--primary .company-highlight__badge {
    background: #6366f1;
}

.company-highlight--secondary .company-highlight__badge {
    background: #8b5cf6;
}

.company-highlight__label {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
}

.company-highlight__caption {
    font-size: 0.95rem;
    color: #4b5563;
}

.company-values__heading {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 4rem auto;
}

.company-values__title {
    font-size: clamp(2.25rem, 3.5vw, 3rem);
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.company-values__subtitle {
    font-size: 1.05rem;
    color: #4b5563;
}

.company-value-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .company-value-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .company-value-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.company-value-card {
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    padding: 2rem;
    background-color: #ffffff;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
    min-height: 100%;
}

.company-value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px -20px rgba(15, 23, 42, 0.25);
}

.company-value-card__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.company-value-card__icon.is-primary {
    background: rgba(99, 102, 241, 0.12);
    color: #6366f1;
}

.company-value-card__icon.is-secondary {
    background: rgba(139, 92, 246, 0.12);
    color: #8b5cf6;
}

.company-value-card__icon.is-emerald {
    background: rgba(16, 185, 129, 0.12);
    color: #10b981;
}

.company-value-card__icon.is-orange {
    background: rgba(249, 115, 22, 0.12);
    color: #f97316;
}

.company-value-card__title {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
}

.company-value-card__text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4b5563;
    white-space: pre-line;
}

.company-cta {
    position: relative;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.company-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 55%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.15), transparent 60%);
}

.company-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
    padding-inline: 1.5rem;
}

.company-cta__title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.company-cta__text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.company-cta__button {
    background-color: #ffffff;
    color: #6366f1;
    box-shadow: 0 18px 35px -15px rgba(15, 23, 42, 0.35);
}

.company-cta__button:hover {
    background-color: #f3f4f6;
}

.company-footer-note {
    margin-top: 3rem;
    text-align: right;
    font-size: 0.875rem;
    color: #6b7280;
}

.company-values,
.company-mission,
.company-cta {
    box-sizing: border-box;
}

@media (max-width: 639px) {
    .company-button {
        width: 100%;
    }
}
