/* ============================================================
   mola_home.css
   Self-contained stylesheet for the Mola company single-page
   website. Deploy to:
     catalog/view/theme/default/stylesheet/mola_home.css

   Sections
   ─────────────────────────────────────────────────────────
   1. Design tokens  (from mola.css)
   2. Company page   (from company_page.css)
   3. Cookie banner  (from cookie_consent.css)
   ============================================================ */


/* ============================================================
   1. DESIGN TOKENS  (originally mola.css)
   ============================================================ */

:root {
    /* Primary Colors */
    --mola-primary:        #1A2B3C;
    --mola-accent:         #00A8A8;
    --mola-accent-hover:   #009090;
    --mola-neutral:        #4A5568;
    --mola-bg:             #F7FAFC;
    --mola-white:          #FFFFFF;

    /* Grays */
    --mola-gray-light:     #E2E8F0;
    --mola-gray-medium:    #D2D2D2;

    /* Accent Variations */
    --mola-accent-bg:      #E6F7F7;
    --mola-accent-border:  #00A8A833;
    --mola-primary-border: #1A2B3C1A;

    /* Dark Theme Colors */
    --mola-dark-bg:        #1F2937;
    --mola-dark-card:      #2D3748;
    --mola-dark-text:      #E5E7EB;
    --mola-dark-text-muted:#9CA3AF;
    --mola-dark-overlay:   #FFFFFF0D;
    --mola-dark-card-light:#FFFFFF1A;
}

/* Reset for all mola-prefixed classes */
[class^="mola-"],
[class*=" mola-"] {
    box-sizing: border-box;
}


/* ============================================================
   2. COMPANY PAGE  (originally company_page.css)
   ============================================================ */

/* ── Shared Reset ── */
.mcp-page *,
.mcp-page *::before,
.mcp-page *::after {
    box-sizing: border-box;
    font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont,
                 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* ── Container ── */
.mcp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* ── 2.1 HERO ── */
.mcp-hero {
    background: linear-gradient(135deg, #0f1a24 0%, #1a2b3c 100%);
    padding: 100px 24px 80px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.mcp-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,168,168,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.mcp-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,168,168,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.mcp-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
}

.mcp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border: 1px solid rgba(0,168,168,0.5);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #00A8A8;
    background: rgba(0,168,168,0.08);
}

.mcp-hero-badge svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.mcp-hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    margin: 0;
    max-width: 800px;
}

.mcp-hero-activity {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255,255,255,0.75);
    margin: 0;
    max-width: 600px;
    line-height: 1.6;
}

.mcp-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

.mcp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
}

.mcp-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.mcp-btn-accent {
    background: #00A8A8;
    color: #fff;
    box-shadow: 0 4px 14px rgba(0,168,168,0.35);
}

.mcp-btn-accent:hover {
    background: #009090;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,168,168,0.45);
    color: #fff;
    text-decoration: none;
}

.mcp-btn-ghost {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}

.mcp-btn-ghost:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.35);
    transform: translateY(-1px);
    color: #fff;
    text-decoration: none;
}

.mcp-hero-divider {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40px;
    background: #fff;
    clip-path: ellipse(55% 100% at 50% 100%);
}

/* ── 2.2 COMPANY INFO ── */
.mcp-info-section {
    padding: 80px 24px;
    background: #fff;
}

.mcp-section-header {
    text-align: center;
    margin-bottom: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.mcp-section-badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 16px;
    background: var(--mola-accent-bg, #E6F7F7);
    border: 1px solid rgba(0,168,168,0.3);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #00A8A8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mcp-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1A2B3C;
    margin: 0;
    line-height: 1.25;
}

.mcp-section-subtitle {
    font-size: 17px;
    color: #4A5568;
    margin: 0;
    line-height: 1.65;
    max-width: 560px;
}

.mcp-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mcp-info-card {
    background: #F7FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: all 0.25s ease;
}

.mcp-info-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.07);
    transform: translateY(-3px);
    border-color: rgba(0,168,168,0.3);
}

.mcp-info-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(0,168,168,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin:0 auto;
}

.mcp-info-card-icon svg {
    width: 26px;
    height: 26px;
    color: #00A8A8;
}

.mcp-info-card-label {
    font-size: 12px;
    font-weight: 600;
    color: #4A5568;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin:0 auto;
}

.mcp-info-card-value {
    font-size: 18px;
    font-weight: 600;
    color: #1A2B3C;
    line-height: 1.4;
    word-break: break-word;
    margin:0 auto;
}

.mcp-info-card-value a {
    color: #00A8A8;
    text-decoration: none;
}

.mcp-info-card-value a:hover {
    color: #009090;
    text-decoration: underline;
}

.mcp-info-card-wide {
    grid-column: span 3;
}

/* ── 2.3 PARTNERS ── */
.mcp-partners-section {
    padding: 80px 24px;
    background: #F7FAFC;
}

.mcp-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.mcp-partner-card {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.25s ease;
}

.mcp-partner-card:hover {
    box-shadow: 0 8px 24px rgba(0,168,168,0.1);
    border-color: #00A8A8;
    transform: translateY(-2px);
}

.mcp-partner-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mcp-partner-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00A8A8, #1A2B3C);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.mcp-partner-name {
    font-size: 17px;
    font-weight: 600;
    color: #1A2B3C;
    margin: 0;
    line-height: 1.3;
}

.mcp-partner-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.mcp-partner-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mcp-partner-field-label {
    font-size: 11px;
    font-weight: 600;
    color: #4A5568;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mcp-partner-field-value {
    font-size: 15px;
    font-weight: 500;
    color: #1A2B3C;
}

.mcp-partner-percentage-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    background: rgba(0,168,168,0.1);
    border-radius: 20px;
    font-size: 15px;
    font-weight: 700;
    color: #00A8A8;
    width: fit-content;
}

/* ── 2.4 MANAGEMENT ── */
.mcp-management-section {
    padding: 80px 24px;
    background: #fff;
}

.mcp-management-card {
    max-width: 600px;
    margin: 0 auto;
    background: #F7FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 48px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.mcp-management-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00A8A8 0%, #1A2B3C 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mcp-management-avatar svg {
    width: 40px;
    height: 40px;
    color: #fff;
}

.mcp-management-role {
    font-size: 13px;
    font-weight: 600;
    color: #00A8A8;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin: 0;
}

.mcp-management-name {
    font-size: 26px;
    font-weight: 700;
    color: #1A2B3C;
    margin: 0;
}

.mcp-management-divider {
    width: 40px;
    height: 3px;
    background: #00A8A8;
    border-radius: 2px;
}

.mcp-management-company {
    font-size: 16px;
    color: #4A5568;
    margin: 0;
}

/* ── 2.5 CONTACT (dark) ── */
.mcp-contact-section {
    padding: 80px 24px;
    background: #0f1a24;
    position: relative;
    overflow: hidden;
}

.mcp-contact-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,168,168,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.mcp-contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.mcp-contact-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mcp-contact-badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 16px;
    border: 1px solid rgba(0,168,168,0.4);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #00A8A8;
    background: rgba(0,168,168,0.08);
    width: fit-content;
}

.mcp-contact-title {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.mcp-contact-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.65);
    margin: 0;
    line-height: 1.65;
}

.mcp-contact-cta {
    margin-top: 8px;
}

.mcp-contact-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mcp-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 20px 24px;
    transition: all 0.2s ease;
}

.mcp-contact-item:hover {
    background: rgba(0,168,168,0.08);
    border-color: rgba(0,168,168,0.25);
}

.mcp-contact-item-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(0,168,168,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mcp-contact-item-icon svg {
    width: 20px;
    height: 20px;
    color: #00A8A8;
}

.mcp-contact-item-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.mcp-contact-item-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mcp-contact-item-value {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    word-break: break-word;
}

.mcp-contact-item-value a {
    color: #00A8A8;
    text-decoration: none;
}

.mcp-contact-item-value a:hover {
    color: #33C5C5;
    text-decoration: underline;
}

/* ── 2.6 FOOTER BAR ── */
.mcp-footer-bar {
    background: #080f16;
    padding: 24px;
    text-align: center;
}

.mcp-footer-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.mcp-footer-text {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    margin: 0;
}

.mcp-footer-powered {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    display: flex;
    align-items: center;
    gap: 6px;
}

.mcp-footer-powered span {
    color: #00A8A8;
    font-weight: 600;
}


.mcp-footer-powered span {
    color: #00A8A8;
    font-weight: 600;
}

/* ── ADD THIS ── */
.mcp-footer-link {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s ease;
}

.mcp-footer-link:hover {
    color: #00A8A8;
    text-decoration: none;
}

/* ── 2.7 RESPONSIVE ── */
@media (max-width: 1024px) {
    .mcp-info-grid          { grid-template-columns: repeat(2, 1fr); }
    .mcp-info-card-wide     { grid-column: span 2; }
}

@media (max-width: 768px) {
    .mcp-hero-title         { font-size: 38px; }
    .mcp-hero-activity      { font-size: 17px; }
    .mcp-section-title      { font-size: 28px; }
    .mcp-info-grid          { grid-template-columns: 1fr; }
    .mcp-info-card-wide     { grid-column: span 1; }
    .mcp-contact-inner      { grid-template-columns: 1fr; gap: 40px; }
    .mcp-contact-title      { font-size: 30px; }
    .mcp-footer-bar-inner   { justify-content: center; }
}

@media (max-width: 640px) {
    .mcp-hero               { padding: 70px 20px 60px; }
    .mcp-hero-title         { font-size: 30px; }
    .mcp-hero-actions       { flex-direction: column; width: 100%; }
    .mcp-btn                { width: 100%; justify-content: center; }
    .mcp-management-card    { padding: 36px 24px; }

    .mcp-info-section,
    .mcp-partners-section,
    .mcp-management-section,
    .mcp-contact-section    { padding: 60px 20px; }
}
