/* =============================================
   OPENMALO AUSTRALIA - HOMEPAGE STYLES
   Brand: #EA6113 (orange), #1E1B4B (navy)
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; color: #1E1B4B; background: #fff; }
.om-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* =============================================
   TOP BAR
   ============================================= */
.om-topbar {
    background: #1E1B4B;
    padding: 8px 0;
    font-size: 12px;
}
.om-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.om-topbar__left { display: flex; gap: 20px; align-items: center; }
.om-topbar__item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.2s;
}
.om-topbar__item:hover { color: #EA6113; }
.om-topbar__right { display: flex; align-items: center; gap: 10px; }
.om-topbar__social {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}
.om-topbar__social:hover { color: #EA6113; }

/* =============================================
   MAIN HEADER
   ============================================= */
.om-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
    border-bottom: 1px solid rgba(30,27,75,0.08);
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.om-header__inner {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 72px;
}
/* Logo */
.om-header__logo {
    text-decoration: none;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.om-logo__img {
    height: 40px;
    width: auto;
    display: block;
}

/* Nav list */
.om-nav { flex: 1; }
.om-nav__list {
    display: flex;
    align-items: stretch;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
    height: 100%;
}
.om-nav__item { position: relative; display: flex; align-items: center; }
.om-nav__link {
    display: flex;
    align-items: center;
    align-self: stretch;
    gap: 4px;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 600;
    color: #1E1B4B;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s;
    white-space: nowrap;
}
.om-nav__link:hover,
.om-nav__item:hover > .om-nav__link { color: #EA6113; background: #FFF3EB; }

/* Simple dropdown */
.om-dropdown {
    display: none;
    position: absolute;
    top: 100%;          /* flush to parent — gap bridged by ::before */
    left: 0;
    background: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    min-width: 200px;
    padding: 8px 0;
    z-index: 1000;
    list-style: none;
    margin-top: 8px;    /* visual gap pushed to margin (not a hover gap) */
}
/* Invisible bridge covers the margin so hover is never lost */
.om-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
}
.om-has-dropdown:hover .om-dropdown { display: block; }
/* Also keep mega menu hover gap bridged */
.om-mega-menu::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 0;
    right: 0;
    height: 4px;
}
.om-dropdown li a {
    display: block;
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 500;
    color: #1E1B4B;
    text-decoration: none;
    transition: all 0.15s;
}
.om-dropdown li a:hover { color: #EA6113; background: #FFF3EB; padding-left: 22px; }

/* Mega menu */
.om-has-mega { position: static; }
.om-mega-menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border-top: 2px solid #EA6113;
    border-bottom: 1px solid #E5E5E5;
    box-shadow: 0 16px 50px rgba(0,0,0,0.12);
    z-index: 1000;
    padding: 32px 0;
}
.om-has-mega:hover .om-mega-menu,
.om-mega-menu.om-mega-open { display: block; }
.om-mega-menu__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.om-mega-col__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #1E1B4B;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid #FFF3EB;
    text-decoration: none;
    transition: color 0.2s;
}
a.om-mega-col__title:hover { color: #EA6113; }
.om-mega-col__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
.om-mega-col__list a {
    display: block;
    padding: 6px 0;
    font-size: 13px;
    font-weight: 500;
    color: #6B636D;
    text-decoration: none;
    transition: all 0.15s;
}
.om-mega-col__list a:hover { color: #EA6113; padding-left: 6px; }

/* Header right */
.om-header__right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}
.om-header__phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #1E1B4B;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
}
.om-header__phone:hover { color: #EA6113; }
.om-header__cta { padding: 10px 22px !important; font-size: 14px !important; }

/* Hamburger */
.om-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.om-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #1E1B4B;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Sticky scrolled state */
.om-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.1); }

/* =============================================
   HEADER RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .om-header__phone { display: none; }
}
@media (max-width: 900px) {
    .om-nav { display: none; }
    .om-nav.open { display: block; position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: #fff; overflow-y: auto; padding: 20px; z-index: 998; }
    .om-nav__list { flex-direction: column; align-items: flex-start; gap: 0; }
    .om-nav__link { width: 100%; padding: 14px 0; border-bottom: 1px solid #F0F0F0; border-radius: 0; }
    .om-dropdown, .om-mega-menu { display: none !important; }
    .om-hamburger { display: flex; }
    .om-topbar__left { gap: 12px; }
    .om-topbar__item span { display: none; }
}

/* =============================================
   SECTION 1 - HERO
   ============================================= */
.om-hero { background: #fff; padding: 80px 0 60px; overflow: hidden; }
.om-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.om-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFF3EB;
    color: #EA6113;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 22px;
    border: 1px solid rgba(234,97,19,0.25);
}
.om-hero__badge-dot { width: 8px; height: 8px; background: #EA6113; border-radius: 50%; display: inline-block; }
.om-hero__title {
    font-size: clamp(30px, 3.8vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    color: #1E1B4B;
    margin-bottom: 18px;
}
.om-hero__title em { font-style: normal; color: #EA6113; }
.om-hero__desc { font-size: 15px; color: #6B636D; line-height: 1.7; margin-bottom: 28px; max-width: 480px; }
.om-hero__cta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-bottom: 36px; }
.om-btn-primary {
    background: #EA6113; color: #fff; padding: 13px 26px; border-radius: 6px;
    font-size: 15px; font-weight: 600; text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px; transition: background 0.2s; border: none; cursor: pointer;
}
.om-btn-primary:hover { background: #c9510f; color: #fff; }
.om-btn-secondary {
    color: #1E1B4B; font-size: 15px; font-weight: 600;
    text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
}
.om-btn-secondary:hover { color: #EA6113; }

/* Hero review badges - 2x2 grid */
.om-hero__reviews {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: 380px;
}
.om-review-badge {
    display: flex; align-items: center; gap: 10px;
    background: #FAFAFA; border: 1px solid #E5E5E5;
    border-radius: 8px; padding: 10px 14px;
}
.om-review-badge__logo {
    width: 32px; height: 32px; border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; overflow: hidden;
}
.om-review-badge__logo img { display: block; }
.om-review-badge__logo--g  { background: #fff; border: 1px solid #E5E5E5; }
.om-review-badge__logo--gf { background: transparent; }
.om-review-badge__logo--c  { background: transparent; }
.om-review-badge__logo--t  { background: transparent; }
.om-review-badge__info { line-height: 1; }
.om-review-badge__platform { font-size: 11px; color: #6B636D; margin-bottom: 3px; }
.om-review-badge__stars { color: #FBBF24; font-size: 10px; display: flex; align-items: center; gap: 4px; }
.om-review-badge__score { font-size: 11px; font-weight: 700; color: #1E1B4B; }

/* Hero visual - real photo */
.om-hero__visual {
    position: relative;
    height: 480px;
}
.om-hero__photo-grid {
    height: 100%;
    border-radius: 20px;
    overflow: visible;
}
.om-hero__main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 0;
    display: block;
    filter: drop-shadow(0 20px 48px rgba(30,27,75,0.13));
}
.om-hero__photo {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.om-hero__photo--1 {
    grid-row: 1 / 3;
    background: linear-gradient(160deg, #1a2a4a 0%, #2d4a7a 60%, #3a6090 100%);
}
.om-hero__photo--2 { background: linear-gradient(135deg, #2c3e50 0%, #3d566e 100%); }
.om-hero__photo--3 { background: linear-gradient(135deg, #1a2a3a 0%, #2c4a6a 100%); }
.om-hero__photo-icon { font-size: 52px; opacity: 0.7; }
.om-hero__photo-icon--sm { font-size: 38px; }

/* Floating service chips over the collage */
.om-hero__chips {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.om-hero__chip {
    position: absolute;
    background: #fff;
    border-radius: 20px;
    padding: 6px 12px 6px 8px;
    font-size: 12px;
    font-weight: 600;
    color: #1E1B4B;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.om-hero__chip-dot { width: 8px; height: 8px; background: #EA6113; border-radius: 50%; flex-shrink: 0; }
.om-hero__chip--1 { top: 14px;  left: 12px; }
.om-hero__chip--2 { top: 14px;  right: 12px; }
.om-hero__chip--3 { top: 50%;   left: 8px; transform: translateY(-50%); }
.om-hero__chip--4 { top: 50%;   right: 8px; transform: translateY(-50%); }
.om-hero__chip--5 { bottom: 50px; left: 12px; }
.om-hero__chip--6 { bottom: 50px; right: 8px; }

/* =============================================
   SECTION 2 - TRUST BAR (BENTO GRID)
   ============================================= */
.om-trust { background: #1E1B4B; padding: 70px 0; color: #fff; }
.om-trust__heading { text-align: center; font-size: clamp(22px, 3vw, 32px); font-weight: 700; margin-bottom: 10px; }
.om-trust__heading em { font-style: normal; color: #EA6113; }
.om-trust__sub { text-align: center; color: rgba(255,255,255,0.6); font-size: 14px; max-width: 700px; margin: 0 auto 48px; line-height: 1.6; }

/* BENTO grid - top 3 tiles */
.om-trust__bento-top {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr 0.9fr;
    gap: 14px;
    margin-bottom: 14px;
}
/* BENTO grid - middle 3 tiles */
.om-trust__bento-mid {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}
/* BENTO grid - bottom 4 tiles */
.om-trust__bento-bot {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 14px;
}

/* Tile base */
.om-bento {
    border-radius: 14px;
    padding: 24px 22px;
    position: relative;
    overflow: hidden;
}
.om-bento__img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
    display: block;
}
.om-bento__img-abs {
    position: absolute;
    right: 12px;
    top: 12px;
    width: 80px;
    height: 80px;
    object-fit: contain;
    opacity: 0.85;
}
.om-bento--orange {
    background: #EA6113;
    color: #fff;
}
.om-bento--white {
    background: #fff;
    color: #1E1B4B;
}
.om-bento--dark {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
}

/* Tile: Ready to deploy */
.om-bento__rocket { font-size: 48px; margin-bottom: 12px; display: block; }
.om-bento__label { font-size: 12px; opacity: 0.85; margin-bottom: 6px; }
.om-bento__big { font-size: 28px; font-weight: 800; line-height: 1.1; }
.om-bento__big-sub { font-size: 14px; font-weight: 600; opacity: 0.85; margin-top: 4px; }

/* Tile: Enterprise workflow */
.om-bento__icon { font-size: 32px; margin-bottom: 12px; display: block; }
.om-bento__title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.om-bento__desc { font-size: 13px; opacity: 0.7; line-height: 1.5; }

/* Tile: 99% retention */
.om-bento__stat { font-size: 48px; font-weight: 800; color: #EA6113; line-height: 1; }
.om-bento__stat-label { font-size: 14px; font-weight: 600; margin-top: 4px; }
.om-bento__stat-icon { font-size: 36px; position: absolute; right: 20px; top: 20px; opacity: 0.5; }

/* Middle tiles */
.om-bento__review-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.om-bento__review-chip {
    background: #F5F5F5; border-radius: 6px; padding: 4px 8px;
    font-size: 11px; font-weight: 600; color: #1E1B4B; display: flex; align-items: center; gap: 4px;
}
.om-bento__review-chip .s { color: #FBBF24; }
.om-bento__satisfaction { font-size: 32px; font-weight: 800; color: #EA6113; }
.om-bento__globe { font-size: 44px; margin-bottom: 10px; display: block; }
.om-bento__number { font-size: 32px; font-weight: 800; color: #EA6113; line-height: 1; }
.om-bento__apps-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-bottom: 10px;
}
.om-bento__app-icon {
    width: 32px; height: 32px; border-radius: 8px;
    background: rgba(255,255,255,0.15); display: flex;
    align-items: center; justify-content: center; font-size: 16px;
}

/* Bottom tiles */
.om-bento__person { font-size: 40px; margin-bottom: 8px; display: block; }
.om-bento__puzzle { font-size: 36px; margin-bottom: 8px; display: block; }
.om-bento__micro { font-size: 36px; margin-bottom: 8px; display: block; }
.om-bento__growth { font-size: 36px; margin-bottom: 8px; display: block; }

/* =============================================
   SECTION 3 - ABOUT
   ============================================= */
.om-about { padding: 90px 0; background: #fff; }
.om-about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.om-about__label { font-size: 12px; font-weight: 700; color: #EA6113; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; display: block; }
.om-about__title { font-size: clamp(24px, 3.2vw, 38px); font-weight: 800; color: #1E1B4B; line-height: 1.2; margin-bottom: 18px; }
.om-about__desc { font-size: 14px; color: #6B636D; line-height: 1.75; margin-bottom: 14px; }
.om-about__cta { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.om-btn-outline {
    border: 2px solid #1E1B4B; color: #1E1B4B; padding: 11px 22px; border-radius: 6px;
    font-size: 13px; font-weight: 700; text-decoration: none;
    display: inline-flex; align-items: center; gap: 6px; transition: all 0.2s;
}
.om-btn-outline:hover { background: #1E1B4B; color: #fff; }
.om-btn-outline-orange {
    border: 2px solid #1E1B4B; color: #1E1B4B; padding: 11px 22px; border-radius: 6px;
    font-size: 13px; font-weight: 700; text-decoration: none;
    display: inline-flex; align-items: center; gap: 6px; transition: all 0.2s;
}
.om-btn-outline-orange:hover { background: #1E1B4B; color: #fff; }

/* Dark tech photo placeholder */
.om-about__image {
    border-radius: 16px;
    overflow: hidden;
    height: 420px;
    background: linear-gradient(135deg, #0a0a1a 0%, #0d1b2a 40%, #1a2a40 70%, #0f2233 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.om-about__image-inner {
    text-align: center;
    position: relative;
    z-index: 2;
}
.om-about__image-person { font-size: 100px; }
/* Code lines overlay effect */
.om-about__image::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 28px, rgba(0,200,100,0.04) 28px, rgba(0,200,100,0.04) 29px),
        repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(0,150,255,0.03) 80px, rgba(0,150,255,0.03) 81px);
    z-index: 1;
}
.om-about__image-code {
    position: absolute;
    top: 20px; left: 20px; right: 20px;
    font-family: monospace;
    font-size: 11px;
    color: rgba(0, 255, 128, 0.4);
    line-height: 1.8;
    z-index: 2;
    text-align: left;
}
.om-about__exp-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #EA6113;
    color: #fff;
    border-radius: 10px;
    padding: 14px 18px;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.3;
    z-index: 3;
}
.om-about__exp-badge span { display: block; font-size: 28px; font-weight: 800; }
.om-about__arrow-badge {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: rgba(255,255,255,0.7);
    z-index: 3;
}

/* =============================================
   SECTION 4 - OUR SERVICES (circle icons)
   ============================================= */
.om-services { padding: 90px 0; background: #fff; }
.om-section-header { text-align: center; margin-bottom: 56px; }
.om-section-label { font-size: 12px; font-weight: 700; color: #EA6113; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; display: block; }
.om-section-title { font-size: clamp(24px, 3.2vw, 38px); font-weight: 800; color: #1E1B4B; margin-bottom: 14px; }
.om-section-desc { font-size: 14px; color: #6B636D; max-width: 680px; margin: 0 auto; line-height: 1.7; }

.om-services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.om-service-card {
    padding: 40px 32px;
    text-align: center;
    border: 1px solid #F0F0F0;
    transition: all 0.2s;
}
.om-service-card:hover { background: #FAFAFA; }

/* Circle icon - outline style matching reference */
.om-service-card__icon-wrap {
    width: 80px; height: 80px;
    border: 1.5px solid #D4D4D4;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.2s;
    background: #fff;
}
.om-service-card:hover .om-service-card__icon-wrap { border-color: #EA6113; background: #FFF3EB; }

/* SVG icons inside circle */
.om-service-card__icon-wrap svg { width: 36px; height: 36px; stroke: #6B636D; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.2s; }
.om-service-card:hover .om-service-card__icon-wrap svg { stroke: #EA6113; }

.om-service-card__title { font-size: 16px; font-weight: 700; color: #1E1B4B; margin-bottom: 10px; }
.om-service-card__desc { font-size: 13px; color: #6B636D; line-height: 1.65; }

/* Linked service card variant */
a.om-service-card--link {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
    position: relative;
}
a.om-service-card--link:hover { background: #fff; border-color: rgba(234,97,19,0.2); box-shadow: 0 8px 32px rgba(234,97,19,0.1); transform: translateY(-3px); }
.om-service-card__cta {
    display: block;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 700;
    color: #EA6113;
    transition: gap 0.2s;
}
a.om-service-card--link:hover .om-service-card__cta { text-decoration: underline; }

/* =============================================
   SECTION 5 - AWARDS (dark bg, 2x2 grid)
   ============================================= */
.om-awards {
    padding: 70px 0;
    background: #0d0d1a;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.om-awards::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(234,97,19,0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 50%, rgba(30,27,75,0.5) 0%, transparent 60%);
}
.om-awards .om-container { position: relative; z-index: 1; }
.om-awards__inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.om-awards__trusted { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 12px; }
.om-awards__title { font-size: clamp(22px, 3vw, 34px); font-weight: 800; color: #fff; margin-bottom: 14px; line-height: 1.2; }
.om-awards__desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* 2x2 award badge grid */
.om-awards__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.om-award-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.2s;
}
.om-award-card:hover { background: rgba(234,97,19,0.1); border-color: rgba(234,97,19,0.4); }
.om-award-card__logo { margin-bottom: 16px; display: flex; align-items: center; }
.om-award-card__platform { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.om-award-card__label { font-size: 11px; color: rgba(255,255,255,0.45); }

/* =============================================
   SECTION 6 - INDUSTRIES (border-only boxes)
   ============================================= */
.om-industries { padding: 90px 0; background: #fff; }
.om-industries__header {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: 40px;
}
.om-industries__header-left { max-width: 600px; }
.om-industries__title { font-size: clamp(22px, 3vw, 32px); font-weight: 800; color: #1E1B4B; margin-bottom: 10px; }
.om-industries__desc { font-size: 14px; color: #6B636D; line-height: 1.6; }
.om-industries__nav { display: flex; gap: 8px; flex-shrink: 0; }
.om-industries__nav-btn {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1.5px solid #D4D4D4; background: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: #1E1B4B; font-size: 16px;
    transition: all 0.2s;
}
.om-industries__nav-btn:hover { border-color: #EA6113; color: #EA6113; }

/* Plain border boxes - 4 cols */
.om-industries__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.om-industry-card {
    border: 1px solid #E5E5E5;
    padding: 36px 20px;
    text-align: center;
    transition: all 0.2s;
    cursor: pointer;
    margin: -0.5px; /* collapse borders */
    display: block;
    text-decoration: none;
    color: inherit;
}
.om-industry-card:hover { background: #FAFAFA; border-color: #EA6113; z-index: 1; position: relative; }

/* SVG icons */
.om-industry-card__icon-wrap {
    width: 56px; height: 56px;
    border: 1.5px solid #D4D4D4;
    border-radius: 50%;
    margin: 0 auto 14px;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.om-industry-card:hover .om-industry-card__icon-wrap { border-color: #EA6113; }
.om-industry-card__icon-wrap svg { width: 26px; height: 26px; stroke: #6B636D; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.om-industry-card:hover .om-industry-card__icon-wrap svg { stroke: #EA6113; }
.om-industry-card__title { font-size: 14px; font-weight: 700; color: #1E1B4B; }

/* =============================================
   SECTION 7 - WHY CHOOSE US (2-col × 4 rows)
   ============================================= */
.om-why { padding: 90px 0; background: #fff; }
.om-why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.om-why-card {
    border: 1px solid #E8E8E8;
    border-radius: 10px;
    padding: 22px 22px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #fff;
    transition: box-shadow 0.2s;
}
.om-why-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

/* Colored icon image block */
.om-why-card__icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    background: #FFF3EB;
}
.om-why-card__title { font-size: 15px; font-weight: 700; color: #1E1B4B; margin-bottom: 6px; }
.om-why-card__desc { font-size: 13px; color: #6B636D; line-height: 1.6; }

/* =============================================
   SECTION 8 - CASE STUDIES (photo thumbnails)
   ============================================= */
.om-cases { padding: 90px 0; background: #fff; }
.om-cases .om-section-title { color: #1E1B4B; }
.om-cases__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.om-case-card {
    border: 1px solid #E8E8E8;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.2s;
    background: #fff;
}
.om-case-card:hover { box-shadow: 0 10px 36px rgba(0,0,0,0.1); transform: translateY(-3px); }

/* Photo thumbnails - realistic photo placeholders */
.om-case-card__thumb {
    height: 180px;
    position: relative;
    overflow: hidden;
}
.om-case-card__thumb--fintech {
    background: linear-gradient(135deg, #0a0f1e 0%, #0d1e3d 50%, #1a2f50 100%);
}
.om-case-card__thumb--health {
    background: linear-gradient(135deg, #1a0a0a 0%, #2d1515 50%, #3d2020 100%);
}
.om-case-card__thumb--ecom {
    background: linear-gradient(135deg, #0a1a1a 0%, #152d2d 50%, #1e3d3d 100%);
}
.om-case-card__thumb-overlay {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    justify-content: flex-end;
    padding: 14px;
}
.om-case-card__thumb-visual {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 50px;
    opacity: 0.4;
}
.om-case-card__thumb-arrow {
    position: absolute;
    bottom: 12px; left: 12px;
    width: 30px; height: 30px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 14px;
}
/* Fake chart lines for fintech */
.om-case-card__chart {
    position: absolute; inset: 0;
    overflow: hidden;
}
.om-case-card__chart::before {
    content: '';
    position: absolute;
    bottom: 30px; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(to right,
        transparent 0%, rgba(0,150,255,0.3) 20%,
        rgba(0,200,100,0.4) 40%, rgba(0,150,255,0.5) 60%,
        rgba(100,200,255,0.3) 80%, transparent 100%
    );
    clip-path: polygon(0% 100%, 10% 60%, 20% 40%, 35% 70%, 50% 20%, 65% 50%, 80% 30%, 100% 60%, 100% 100%);
}

.om-case-card__body { padding: 22px; }
.om-case-card__type { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #6B636D; margin-bottom: 8px; }
.om-case-card__title { font-size: 16px; font-weight: 700; color: #1E1B4B; margin-bottom: 8px; }
.om-case-card__desc { font-size: 13px; color: #6B636D; line-height: 1.6; margin-bottom: 14px; }
.om-case-card__tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.om-tag { background: #F0F0F0; color: #1E1B4B; font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 20px; }
.om-case-card__result { background: #F0FDF4; border: 1px solid #BBF7D0; color: #16A34A; font-size: 12px; font-weight: 600; padding: 8px 12px; border-radius: 6px; }
.om-cases__cta { text-align: center; }

/* =============================================
   SECTION 9 - TECH (dot-list, 3 columns)
   ============================================= */
.om-tech { padding: 90px 0; background: #FAFAFA; }
.om-tech__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.om-tech-group {
    background: #fff;
    border: 1px solid #E8E8E8;
    border-radius: 12px;
    padding: 28px 24px;
}
.om-tech-group__title {
    font-size: 11px; font-weight: 700; color: #EA6113;
    text-transform: uppercase; letter-spacing: 1.5px;
    margin-bottom: 18px; padding-bottom: 12px;
    border-bottom: 1px solid #F0F0F0;
}
/* Dot-list style matching reference */
.om-tech-group__list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.om-tech-group__list li {
    display: flex; align-items: center; gap: 10px;
    padding: 7px 0;
    border-bottom: 1px solid #F8F8F8;
    font-size: 13px; font-weight: 500; color: #1E1B4B;
}
.om-tech-group__list li:last-child { border-bottom: none; }
.om-tech-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #EA6113; flex-shrink: 0;
}

/* =============================================
   SECTION 10 - CLIENT REVIEWS
   ============================================= */
.om-reviews { padding: 90px 0; background: #fff; }
.om-reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.om-review-card {
    background: #FAFAFA; border: 1px solid #E8E8E8; border-radius: 14px; padding: 26px;
    position: relative;
}
.om-review-card::before {
    content: '"'; position: absolute; top: 14px; right: 22px;
    font-size: 72px; font-weight: 800; color: #EA6113; opacity: 0.12; line-height: 1;
}
.om-review-card__stars { color: #FBBF24; font-size: 15px; margin-bottom: 14px; }
.om-review-card__text { font-size: 14px; color: #6B636D; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.om-review-card__author { display: flex; align-items: center; gap: 12px; }
.om-review-card__avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, #EA6113, #1E1B4B);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 14px; font-weight: 700; flex-shrink: 0;
}
.om-review-card__name { font-size: 14px; font-weight: 700; color: #1E1B4B; }
.om-review-card__role { font-size: 12px; color: #6B636D; }

/* =============================================
   SECTION 11 - FAQ
   ============================================= */
.om-faq { padding: 90px 0; background: #FAFAFA; }
.om-faq__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
.om-faq__col { display: flex; flex-direction: column; gap: 10px; }
.om-faq-item { background: #fff; border: 1px solid #E8E8E8; border-radius: 10px; overflow: hidden; }
.om-faq-item__question {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px; cursor: pointer;
    font-size: 14px; font-weight: 600; color: #1E1B4B; gap: 12px;
}
.om-faq-item__question::after { content: '+'; font-size: 20px; color: #EA6113; flex-shrink: 0; }
.om-faq-item.active .om-faq-item__question::after { content: '−'; }
.om-faq-item__answer {
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
    font-size: 13px; color: #6B636D; line-height: 1.7; padding: 0 20px;
}
.om-faq-item.active .om-faq-item__answer { max-height: 300px; padding: 0 20px 16px; }

/* =============================================
   SECTION 12 - LOCATIONS
   ============================================= */
/* ---- Locations ---- */
.om-locations { padding: 90px 0; background: #F8F9FC; }
.om-locations .om-section-title { color: #1E1B4B; }
.om-locations .om-section-desc { color: #6B636D; }

/* Group (Australia / Global) */
.om-loc-group { margin-top: 48px; }
.om-loc-group__label {
    font-size: 12px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.2px; color: #6B636D;
    margin-bottom: 16px; padding-bottom: 10px;
    border-bottom: 2px solid #EAECF4;
}
/* Card grids */
.om-loc-cards { display: grid; gap: 18px; }
.om-loc-cards--5 { grid-template-columns: repeat(5, 1fr); }
.om-loc-cards--2 { grid-template-columns: repeat(2, 1fr); }

/* Individual card — Vrinsoft style */
.om-loc-card {
    background: #fff;
    border: 1px solid #E5E8F0;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: all 0.25s;
    box-shadow: 0 2px 8px rgba(30,27,75,0.06);
}
.om-loc-card:hover {
    border-color: #EA6113;
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(234,97,19,0.13);
}
.om-loc-card__img {
    width: 100%; height: 160px; overflow: hidden;
    background: #F0F2FA;
}
.om-loc-card__img img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.3s;
}
.om-loc-card:hover .om-loc-card__img img { transform: scale(1.04); }
.om-loc-card__body { padding: 14px 16px 16px; text-align: center; }
.om-loc-card__city {
    font-size: 14px; font-weight: 700; color: #1E1B4B; margin-bottom: 2px;
}
.om-loc-card__state {
    font-size: 11px; font-weight: 500; color: #6B636D;
    letter-spacing: 0.3px;
}

/* =============================================
   SECTION 13 - CONTACT
   ============================================= */
.om-contact { padding: 90px 0; background: #fff; }
.om-contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.om-contact__title { font-size: clamp(24px, 2.8vw, 34px); font-weight: 800; color: #1E1B4B; margin-bottom: 14px; }
.om-contact__desc { font-size: 14px; color: #6B636D; line-height: 1.7; margin-bottom: 28px; }
.om-contact__info { display: flex; flex-direction: column; gap: 14px; }
.om-contact__info-item { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: #1E1B4B; line-height: 1.5; text-decoration: none; }
a.om-contact__info-item:hover { color: #EA6113; }
.om-contact__icon { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.om-form { display: flex; flex-direction: column; gap: 14px; }
.om-form input, .om-form textarea, .om-form select {
    width: 100%; padding: 13px 15px; border: 1.5px solid #E5E5E5;
    border-radius: 7px; font-size: 14px; font-family: 'Inter', sans-serif;
    color: #1E1B4B; outline: none; transition: border-color 0.2s; background: #fff;
}
.om-form input:focus, .om-form textarea:focus, .om-form select:focus { border-color: #EA6113; }
.om-form textarea { resize: vertical; min-height: 120px; }
.om-form .om-btn-primary { width: 100%; justify-content: center; padding: 15px; font-size: 15px; }
.om-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* =============================================
   SECTION 14 - FOOTER
   ============================================= */
.om-footer { background: #0a091a; color: rgba(255,255,255,0.7); padding: 70px 0 0; }
.om-footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.om-footer__brand-name { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 14px; }
.om-footer__brand-name em { font-style: normal; color: #EA6113; }
.om-footer__brand-desc { font-size: 13px; line-height: 1.7; margin-bottom: 24px; color: rgba(255,255,255,0.5); }
.om-footer__social { display: flex; gap: 8px; }
.om-social-link {
    width: 34px; height: 34px; background: rgba(255,255,255,0.07); border-radius: 7px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6); text-decoration: none; font-size: 13px; font-weight: 700;
    transition: all 0.2s;
}
.om-social-link:hover { background: #EA6113; color: #fff; }
.om-footer__col-title { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 18px; }
.om-footer__links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.om-footer__links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.om-footer__links a:hover { color: #EA6113; }
.om-footer__bottom {
    padding: 22px 0; display: flex; justify-content: space-between; align-items: center;
    font-size: 12px; flex-wrap: wrap; gap: 10px; color: rgba(255,255,255,0.4);
}
.om-footer__bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.om-footer__bottom a:hover { color: #EA6113; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .om-trust__bento-top, .om-trust__bento-mid { grid-template-columns: 1fr 1fr; }
    .om-trust__bento-bot { grid-template-columns: repeat(2, 1fr); }
    .om-awards__inner { grid-template-columns: 1fr; }
    .om-footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .om-hero__inner, .om-about__inner, .om-contact__inner { grid-template-columns: 1fr; }
    .om-faq__grid { grid-template-columns: 1fr; }
    .om-hero__visual { display: none; }
    .om-services__grid, .om-cases__grid, .om-tech__grid, .om-reviews__grid { grid-template-columns: 1fr; }
    .om-loc-cards--5 { grid-template-columns: repeat(2, 1fr); }
    .om-loc-cards--2 { grid-template-columns: 1fr; }
    .om-industries__grid { grid-template-columns: repeat(2, 1fr); }
    .om-why__grid { grid-template-columns: 1fr; }
    .om-trust__bento-top, .om-trust__bento-mid, .om-trust__bento-bot { grid-template-columns: 1fr; }
    .om-footer__top { grid-template-columns: 1fr; }
    .om-form-row { grid-template-columns: 1fr; }
    .om-industries__header { flex-direction: column; gap: 16px; }
    .om-awards__grid { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   SERVICE PAGE - SHARED STYLES
   ============================================= */

/* SP Hero */
.sp-hero { background: linear-gradient(135deg, #1E1B4B 0%, #2d2a6e 50%, #4A3543 100%); padding: 80px 0 70px; overflow: hidden; }
.sp-hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.sp-hero__badge { display: inline-block; background: rgba(234,97,19,0.2); border: 1px solid rgba(234,97,19,0.4); color: #EA6113; font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 20px; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1px; }
.sp-hero__title { font-size: clamp(28px, 3.5vw, 46px); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 18px; }
.sp-hero__title em { font-style: normal; color: #EA6113; }
.sp-hero__desc { font-size: 16px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 28px; }
.sp-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.sp-hero__stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1); }
.sp-hero__stat { text-align: center; }
.sp-hero__stat span { display: block; font-size: 26px; font-weight: 800; color: #EA6113; }
.sp-hero__stat { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 2px; }
.sp-hero__visual { position: relative; height: 380px; }
.sp-hero__img-wrap { width: 100%; height: 100%; border-radius: 20px; overflow: hidden; }
.sp-hero__float { position: absolute; background: #fff; border-radius: 8px; padding: 8px 14px; font-size: 12px; font-weight: 700; color: #1E1B4B; box-shadow: 0 4px 16px rgba(0,0,0,0.12); white-space: nowrap; }
.sp-hero__float--1 { bottom: 30px; left: -20px; }
.sp-hero__float--2 { top: 40px; right: -10px; }
.sp-hero__float--3 { bottom: 80px; right: -10px; }

/* SP About */
.sp-about { padding: 90px 0; background: #fff; }
.sp-about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.sp-about__image { border-radius: 20px; overflow: hidden; height: 380px; }
.sp-about__title { font-size: clamp(26px, 3vw, 38px); font-weight: 800; color: #1E1B4B; line-height: 1.2; margin: 12px 0 18px; }
.sp-about__title em { font-style: normal; color: #EA6113; }
.sp-about__desc { font-size: 15px; color: #6B636D; line-height: 1.75; margin-bottom: 14px; }
.sp-about__features { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 20px; }
.sp-about__feature { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: #1E1B4B; }

/* SP Services grid */
.sp-services { padding: 90px 0; background: #FAFAFA; }
.sp-services__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.sp-service-card { background: #fff; border: 1px solid #E5E5E5; border-radius: 16px; padding: 32px 28px; transition: all 0.2s; display: flex; flex-direction: column; }
.sp-service-card:hover { border-color: #EA6113; box-shadow: 0 8px 30px rgba(234,97,19,0.12); transform: translateY(-4px); }
.sp-service-card__icon { font-size: 36px; margin-bottom: 16px; }
.sp-service-card h3 { font-size: 17px; font-weight: 700; color: #1E1B4B; margin-bottom: 10px; }
.sp-service-card p { font-size: 14px; color: #6B636D; line-height: 1.65; flex: 1; }
.sp-service-card__link { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 700; color: #EA6113; text-decoration: none; margin-top: 18px; transition: gap 0.2s; }
.sp-service-card__link:hover { gap: 8px; }

/* SP Process */
.sp-process { padding: 90px 0; background: #fff; }
.sp-process__steps { display: grid; grid-template-columns: repeat(6,1fr); gap: 0; align-items: start; }
.sp-process__step { text-align: center; padding: 0 10px; position: relative; }
.sp-process__step-num { font-size: 11px; font-weight: 800; color: #EA6113; letter-spacing: 1px; margin-bottom: 10px; }
.sp-process__step-icon { width: 56px; height: 56px; background: #FFF3EB; border: 2px solid #EA6113; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 14px; }
.sp-process__step h3 { font-size: 13px; font-weight: 700; color: #1E1B4B; margin-bottom: 8px; }
.sp-process__step p { font-size: 12px; color: #6B636D; line-height: 1.6; }
.sp-process__connector { align-self: center; height: 2px; background: linear-gradient(90deg, #EA6113, rgba(234,97,19,0.3)); margin-top: -60px; }

/* SP CTA banners */
.sp-cta { padding: 60px 0; background: linear-gradient(135deg, #EA6113, #c9510f); }
.sp-cta--2 { background: linear-gradient(135deg, #1E1B4B, #2d2a6e); }
.sp-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.sp-cta__title { font-size: clamp(22px, 2.5vw, 32px); font-weight: 800; color: #fff; margin-bottom: 8px; }
.sp-cta__desc { font-size: 15px; color: rgba(255,255,255,0.8); }
.sp-cta__actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; flex-shrink: 0; }
.sp-cta__call { color: rgba(255,255,255,0.9); font-size: 14px; font-weight: 600; text-decoration: none; }
.sp-cta__call:hover { color: #fff; }

/* SP Why */
.sp-why { padding: 90px 0; background: #FAFAFA; }
.sp-why__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.sp-why-card { background: #fff; border: 1px solid #E5E5E5; border-radius: 14px; padding: 28px; transition: all 0.2s; }
.sp-why-card:hover { border-color: #EA6113; box-shadow: 0 4px 20px rgba(234,97,19,0.1); }
.sp-why-card__icon { font-size: 32px; margin-bottom: 14px; }
.sp-why-card h3 { font-size: 16px; font-weight: 700; color: #1E1B4B; margin-bottom: 8px; }
.sp-why-card p { font-size: 13px; color: #6B636D; line-height: 1.65; }

/* SP Cases, Reviews — reuse om- classes */
.sp-cases, .sp-reviews { padding: 90px 0; background: #fff; }
.sp-cases { background: #FAFAFA; }

/* SP Other Services */
/* SSP Industries */
.ssp-industries { padding: 90px 0; background: #FAFAFA; }
.sp-industries__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.sp-industry-card { background: #fff; border: 1px solid #E5E5E5; border-radius: 16px; padding: 28px 22px; transition: all 0.2s; }
.sp-industry-card:hover { border-color: #EA6113; background: #FFF3EB; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(234,97,19,0.1); }
.sp-industry-card__icon { font-size: 32px; margin-bottom: 14px; }
.sp-industry-card h3 { font-size: 16px; font-weight: 700; color: #1E1B4B; margin: 0 0 8px; }
.sp-industry-card p { font-size: 13px; color: #6B636D; line-height: 1.65; margin: 0; }

.sp-other-services { padding: 90px 0; background: #fff; }
.sp-other__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.sp-other-card { background: #FAFAFA; border: 1px solid #E5E5E5; border-radius: 16px; padding: 28px; text-decoration: none; display: flex; flex-direction: column; transition: all 0.2s; }
.sp-other-card:hover { border-color: #EA6113; background: #FFF3EB; transform: translateY(-3px); }
.sp-other-card__icon { font-size: 32px; margin-bottom: 14px; }
.sp-other-card h3 { font-size: 16px; font-weight: 700; color: #1E1B4B; margin-bottom: 8px; }
.sp-other-card p { font-size: 13px; color: #6B636D; line-height: 1.65; flex: 1; }
.sp-other-card__link { font-size: 13px; font-weight: 700; color: #EA6113; margin-top: 16px; }

/* SP Blog */
.sp-blog { padding: 90px 0; background: #FAFAFA; }
.sp-blog__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.sp-blog-card { background: #fff; border: 1px solid #E5E5E5; border-radius: 16px; overflow: hidden; transition: all 0.2s; }
.sp-blog-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); transform: translateY(-3px); }
.sp-blog-card__thumb { height: 180px; background: linear-gradient(135deg,#1E1B4B,#4A3543); display: flex; align-items: center; justify-content: center; font-size: 50px; overflow: hidden; }
.sp-blog-card__thumb--placeholder { background: linear-gradient(135deg,#1E1B4B,#4A3543); }
.sp-blog-card__body { padding: 24px; }
.sp-blog-card__meta { font-size: 11px; font-weight: 600; color: #EA6113; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.sp-blog-card__title { font-size: 16px; font-weight: 700; color: #1E1B4B; margin-bottom: 10px; line-height: 1.4; }
.sp-blog-card__title a { color: inherit; text-decoration: none; }
.sp-blog-card__title a:hover { color: #EA6113; }
.sp-blog-card__excerpt { font-size: 13px; color: #6B636D; line-height: 1.65; margin-bottom: 16px; }
.sp-blog-card__link { font-size: 13px; font-weight: 700; color: #EA6113; text-decoration: none; }
.sp-blog-card__link:hover { text-decoration: underline; }

/* SP locations / faq — inherit om- classes, just add background override */
.sp-locations { background: #1E1B4B; }
.sp-faq { background: #FAFAFA; }
.sp-contact { background: #fff; }
.sp-industries { background: #FAFAFA; }

/* ═══════════════════════════════════════════════════════════
   BREADCRUMB
   ═══════════════════════════════════════════════════════════ */
.om-breadcrumb {
    background: #F8F9FF;
    border-bottom: 1px solid #ECEDF8;
    padding: 10px 0;
    font-size: 12px;
}
.om-breadcrumb__list {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}
.om-breadcrumb__item a {
    color: #6B636D;
    text-decoration: none;
    transition: color 0.15s;
}
.om-breadcrumb__item a:hover { color: #EA6113; }
.om-breadcrumb__item--current { color: #1E1B4B; font-weight: 600; }
.om-breadcrumb__sep { color: #C0C0D0; font-size: 13px; }

/* ═══════════════════════════════════════════════════════════
   SSP — SUB SERVICE PAGE SECTIONS
   ═══════════════════════════════════════════════════════════ */

/* SSP Key Features — horizontal icon + text cards, 2-column grid */
.ssp-features { padding: 90px 0; background: #fff; }
.ssp-features__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.ssp-feature-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #F8F9FF;
    border: 1px solid #ECEDF8;
    border-radius: 14px;
    padding: 22px 24px;
    transition: all 0.22s ease;
    position: relative;
}
.ssp-feature-card::after {
    content: '';
    position: absolute;
    left: 0; top: 18px; bottom: 18px;
    width: 3px;
    background: #EA6113;
    border-radius: 0 3px 3px 0;
    opacity: 0;
    transition: opacity 0.22s ease;
}
.ssp-feature-card:hover {
    background: #fff;
    border-color: rgba(234,97,19,0.25);
    box-shadow: 0 6px 28px rgba(234,97,19,0.09);
    transform: translateY(-2px);
}
.ssp-feature-card:hover::after { opacity: 1; }
.ssp-feature-card__icon {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    background: #fff;
    border: 1.5px solid #E2E3EE;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    transition: all 0.22s ease;
}
.ssp-feature-card:hover .ssp-feature-card__icon {
    background: #FFF3EB;
    border-color: rgba(234,97,19,0.35);
}
.ssp-feature-card__body { flex: 1; min-width: 0; }
.ssp-feature-card__body h3 {
    font-size: 15px;
    font-weight: 700;
    color: #1E1B4B;
    margin: 0 0 6px;
    line-height: 1.3;
}
.ssp-feature-card__body p {
    font-size: 13px;
    color: #6B636D;
    line-height: 1.65;
    margin: 0;
}

/* SSP About + Inline Form */
.ssp-about-contact { padding: 90px 0; background: #FAFAFA; }
.ssp-about-contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: flex-start; }
.ssp-about__title { font-size: clamp(24px, 2.8vw, 34px); font-weight: 800; color: #1E1B4B; line-height: 1.25; margin: 12px 0 18px; }
.ssp-about__title em { font-style: normal; color: #EA6113; }
.ssp-about__desc { font-size: 15px; color: #6B636D; line-height: 1.75; margin-bottom: 14px; }
.ssp-about__points { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.ssp-about__point { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: #1E1B4B; }
.ssp-form-card { background: #fff; border: 1px solid #E5E5E5; border-radius: 20px; padding: 36px 32px; box-shadow: 0 4px 24px rgba(0,0,0,0.06); position: sticky; top: 90px; }
.ssp-form-card__title { font-size: 21px; font-weight: 800; color: #1E1B4B; margin-bottom: 6px; }
.ssp-form-card__sub { font-size: 13px; color: #6B636D; margin-bottom: 22px; }

/* SSP Services */
.ssp-services { background: #fff; }

/* SSP Tech Stack */
.ssp-techstack { padding: 90px 0; background: #1E1B4B; }
.ssp-techstack .om-section-label { color: rgba(255,255,255,0.5); }
.ssp-techstack .om-section-title { color: #fff; }
.ssp-techstack .om-section-desc { color: rgba(255,255,255,0.65); }
.ssp-tech__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.ssp-tech-group { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 24px; }
.ssp-tech-group__title { font-size: 11px; font-weight: 700; color: #EA6113; text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 14px; }
.ssp-techstack .om-tech-group__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    align-items: flex-start;
    align-content: flex-start;
}
.om-tech-pill {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    padding: 5px 14px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.88);
    transition: all 0.15s;
    white-space: nowrap;
}
.om-tech-pill:hover { background: rgba(234,97,19,0.2); border-color: rgba(234,97,19,0.4); color: #fff; }

/* SSP Process Guide — numbered cards */
.ssp-guide { padding: 90px 0; background: #FAFAFA; }
.ssp-guide__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.ssp-guide-card {
    background: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 16px;
    padding: 32px 24px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.22s ease;
}
.ssp-guide-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #EA6113, #f08040);
}
.ssp-guide-card:hover { border-color: rgba(234,97,19,0.3); box-shadow: 0 8px 30px rgba(234,97,19,0.10); transform: translateY(-4px); }
.ssp-guide-card__num { font-size: 42px; font-weight: 900; color: #EA6113; opacity: 0.12; line-height: 1; margin-bottom: 14px; letter-spacing: -2px; }
.ssp-guide-card h3 { font-size: 16px; font-weight: 700; color: #1E1B4B; margin-bottom: 10px; line-height: 1.3; }
.ssp-guide-card p { font-size: 13px; color: #6B636D; line-height: 1.65; margin: 0; }

/* SSP Why */
.ssp-why { background: #fff; }

/* SSP Awards */
.ssp-awards { padding: 70px 0; background: #1E1B4B; }

/* SSP Reviews, FAQ, Blog, Locations, Other, Contact */
.ssp-reviews { background: #FAFAFA; padding: 90px 0; }
.ssp-contact { background: #fff; }
.ssp-faq { background: #FAFAFA; }
.ssp-blog { background: #fff; padding: 90px 0; }
/* SSP Presence — matches homepage om-locations style */
.ssp-presence { background: #F8F9FC; }
.ssp-presence .om-section-label { color: #EA6113; }
.ssp-presence .om-section-title { color: #1E1B4B; }
.ssp-presence .om-section-desc { color: #6B636D; }
.ssp-other { background: #FAFAFA; }
.ssp-cases { background: #FAFAFA; }
.ssp-process { background: #fff; }

/* SP Responsive */
@media (max-width: 1024px) {
    .sp-process__steps { grid-template-columns: repeat(3,1fr); }
    .sp-process__connector { display: none; }
    .ssp-guide__grid { grid-template-columns: repeat(2,1fr); }
    .ssp-tech__grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
    .sp-hero__inner, .sp-about__inner { grid-template-columns: 1fr; }
    .sp-hero__visual { display: none; }
    .sp-hero__stats { grid-template-columns: repeat(2,1fr); }
    .sp-services__grid, .sp-why__grid, .sp-other__grid, .sp-blog__grid, .sp-industries__grid { grid-template-columns: 1fr; }
    .sp-process__steps { grid-template-columns: repeat(2,1fr); }
    .sp-cta__inner { flex-direction: column; text-align: center; }
    .sp-about__features { grid-template-columns: 1fr; }
    /* SSP responsive */
    .ssp-features__grid { grid-template-columns: 1fr; }
    .ssp-about-contact__inner { grid-template-columns: 1fr; }
    .ssp-form-card { position: static; }
    .ssp-tech__grid { grid-template-columns: 1fr 1fr; }
    .ssp-guide__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   CONTACT FORM NOTICES
   ═══════════════════════════════════════════════════════════ */
.om-notice {
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 999;
}
.om-notice--success { background: #d1fae5; color: #065f46; border-bottom: 2px solid #34d399; }
.om-notice--error   { background: #fee2e2; color: #991b1b; border-bottom: 2px solid #f87171; }

/* ============================================================
   CITY LANDING PAGES
   ============================================================ */

.city-hero { padding-top: 40px; }

.city-stats { background: #1E1B4B; padding: 40px 0; }
.city-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.city-stats__value { font-size: 36px; font-weight: 800; color: #EA6113; }
.city-stats__label { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 4px; }

.city-intro { padding: 80px 0; background: #fff; }
.city-intro__inner { max-width: 760px; margin: 0 auto; }
.city-intro h2 { font-size: 28px; font-weight: 800; color: #1E1B4B; margin-bottom: 16px; }
.city-intro p { font-size: 16px; color: #6B636D; line-height: 1.8; }

.city-services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.city-service-card { background: #fff; border: 1px solid #E5E5E5; border-radius: 12px; padding: 28px; text-decoration: none; transition: box-shadow .2s, transform .2s; display: block; }
.city-service-card:hover { box-shadow: 0 8px 32px rgba(30,27,75,.1); transform: translateY(-2px); }
.city-service-card__icon { font-size: 28px; margin-bottom: 12px; }
.city-service-card__title { font-size: 16px; font-weight: 700; color: #1E1B4B; margin-bottom: 8px; }
.city-service-card p { font-size: 14px; color: #6B636D; line-height: 1.6; margin: 0; }

.city-industries__grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.city-industry-chip { display: flex; align-items: center; gap: 8px; background: #F0F0FF; border: 1px solid #D0D0F0; border-radius: 24px; padding: 10px 20px; font-size: 14px; font-weight: 600; color: #1E1B4B; }
.city-industry-chip__icon { font-size: 20px; }

.city-why__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.city-why__card { background: #FAFAFA; border: 1px solid #E5E5E5; border-radius: 12px; padding: 28px; }
.city-why__card h3 { font-size: 16px; font-weight: 700; color: #1E1B4B; margin-bottom: 10px; }
.city-why__card p { font-size: 14px; color: #6B636D; line-height: 1.7; margin: 0; }

.city-faq__list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.city-faq__item { border: 1px solid #E5E5E5; border-radius: 10px; background: #fff; overflow: hidden; }
.city-faq__q { padding: 20px 24px; font-size: 15px; font-weight: 600; color: #1E1B4B; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.city-faq__q::after { content: '+'; font-size: 20px; color: #EA6113; font-weight: 400; }
.city-faq__item[open] .city-faq__q::after { content: '−'; }
.city-faq__a { padding: 0 24px 20px; font-size: 14px; color: #6B636D; line-height: 1.75; }

.om-contact__trust { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-direction: column; gap: 8px; }
.om-contact__trust li { font-size: 14px; color: rgba(255,255,255,0.85); }
.om-btn-full { width: 100%; text-align: center; justify-content: center; }

@media (max-width: 768px) {
  .city-stats__grid { grid-template-columns: repeat(2,1fr); }
  .city-services__grid { grid-template-columns: 1fr; }
  .city-why__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   LEGAL PAGES (Privacy Policy, Terms of Service)
   ============================================================ */
.om-legal-hero {
  background: linear-gradient(135deg, #1E1B4B 0%, #2d3a8c 100%);
  padding: 72px 0 56px;
  text-align: center;
}
.om-legal-hero .om-section-label { color: #EA6113; margin-bottom: 16px; }
.om-legal-hero__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.om-legal-hero__meta { font-size: 14px; color: rgba(255,255,255,0.6); }

.om-legal-body { padding: 64px 0 80px; background: #fff; }
.om-legal-content {
  max-width: 820px;
  margin: 0 auto;
  font-size: 15px;
  color: #3a3650;
  line-height: 1.8;
}
.om-legal-content h2 {
  font-size: 20px;
  font-weight: 700;
  color: #1E1B4B;
  margin: 40px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #f0effe;
}
.om-legal-content h2:first-child { margin-top: 0; }
.om-legal-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1E1B4B;
  margin: 24px 0 8px;
}
.om-legal-content p { margin-bottom: 14px; }
.om-legal-content ul, .om-legal-content ol {
  padding-left: 20px;
  margin-bottom: 14px;
}
.om-legal-content li { margin-bottom: 6px; }
.om-legal-content a { color: #EA6113; text-decoration: underline; }
.om-legal-content strong { color: #1E1B4B; }
.om-legal-content .om-legal-highlight {
  background: #f8f7ff;
  border-left: 4px solid #EA6113;
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin: 20px 0;
  font-size: 14px;
}
@media (max-width: 768px) {
  .om-legal-body { padding: 40px 0 60px; }
  .om-legal-hero { padding: 48px 0 40px; }
}
