/* ===== LANDING PAGE ===== */

/* Hero centered */
.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
.hero h1 {
    font-size: clamp(32px, 4.5vw, 56px);
    line-height: 1.2;
}
.hero-cta {
    justify-content: center;
}

/* Hero desc */
.hero-desc {
    font-size: 17px;
    color: var(--gray-300);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    margin-bottom: 36px;
}

/* 4-col stats */
.stats-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 768px) {
    .stats-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .stats-grid-4 { grid-template-columns: 1fr; }
}

/* ===== INDUSTRIES ===== */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}
.industry-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal);
}
.industry-icon-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.industry-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.industry-icon svg { width: 28px; height: 28px; }
.industry-icon-hotel {
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
    color: var(--white);
}
.industry-icon-health {
    background: linear-gradient(135deg, #0a1628 0%, #1a4a5e 100%);
    color: var(--white);
}
.industry-icon-mobility {
    background: linear-gradient(135deg, #1e2d3d 0%, #2a6b7c 100%);
    color: var(--white);
}
.industry-icon-industrial {
    background: linear-gradient(135deg, #1e2d3d 0%, #c4622a 100%);
    color: var(--white);
}
.industry-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--teal);
}
.industry-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.3;
}
.industry-card > p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.65;
    margin-bottom: 20px;
}
.industry-highlights {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}
.industry-highlights li {
    font-size: 14px;
    color: var(--gray-700);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid var(--gray-100);
}
.industry-highlights li:last-child { border-bottom: none; }
.industry-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    background: var(--teal-light);
    border-radius: 50%;
}
.industry-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}
.industry-mini-stat {
    background: var(--gray-50);
    padding: 14px;
    border-radius: var(--radius);
    text-align: center;
}
.industry-mini-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 2px;
}
.industry-mini-stat span {
    font-size: 12px;
    color: var(--gray-500);
}
.industry-btn {
    width: 100%;
    text-align: center;
}

/* ===== ABOUT ===== */
.about-section {
    background: var(--gray-50);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.about-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 16px;
}
.about-title {
    font-family: var(--font-display);
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 24px;
}
.about-text p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.75;
    margin-bottom: 16px;
}
.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.about-value {
    display: flex;
    gap: 16px;
    align-items: start;
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: transform 0.2s, box-shadow 0.2s;
}
.about-value:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.about-value-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.about-value-icon svg { width: 20px; height: 20px; }
.about-value h3 {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 4px;
}
.about-value p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.55;
}

/* About Numbers */
.about-numbers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
    padding: 40px;
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--teal) 100%);
    border-radius: var(--radius-lg);
    text-align: center;
}
.about-number span {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--sky);
    margin-bottom: 4px;
}
.about-number p {
    font-size: 13px;
    color: var(--gray-300);
}

@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-numbers { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
    .about-numbers { grid-template-columns: repeat(2, 1fr); padding: 24px; }
}

/* ===== MARKETS ===== */
.markets-section {
    background: var(--gray-50);
}
.markets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
}
.market-region {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    border-left: 4px solid var(--teal);
    transition: transform 0.2s;
}
.market-region:hover {
    transform: translateY(-2px);
}
.market-region h3 {
    font-family: var(--font-display);
    font-size: 17px;
    color: var(--navy);
    margin-bottom: 6px;
}
.market-region p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.5;
}
.market-region-expand {
    border-left-color: var(--sky);
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
}
.market-region-expand h3 {
    color: var(--white);
}
.market-region-expand p {
    color: var(--sky-light);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .industries-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .markets-grid { grid-template-columns: 1fr; }
}
