/* =========================================================
   MARKET CHAKRA — Design tokens
   Signature motif: the logo's twin-peak "M" arrow. We echo it
   with angled section dividers, diagonal-cut cards, and a
   small ascent-chevron used as an eyebrow / list marker.
========================================================= */
:root{
  --navy: #0b1b65;
  --navy-deep: #071047;
  --navy-mid: #16277f;
  --coral: #fa4a37;
  --coral-dark: #d93a28;
  --white: #ffffff;
  --ink: #14183a;
  --grey-700: #444a68;
  --grey-500: #6b7190;
  --grey-200: #e7e9f7;
  --grey-100: #f5f6fc;
  --border: #e3e6f5;

  --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --container: 1180px;
  --radius: 14px;
  --shadow-sm: 0 2px 10px rgba(11,27,101,0.07);
  --shadow-md: 0 12px 32px rgba(11,27,101,0.12);
  --shadow-lg: 0 24px 60px rgba(11,27,101,0.18);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  line-height:1.6;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family:var(--font-display); color:var(--navy); line-height:1.15; margin:0 0 .5em; letter-spacing:-0.01em; }
h1{ font-size:clamp(2.1rem,4.5vw,3.4rem); font-weight:700; }
h2{ font-size:clamp(1.7rem,3vw,2.4rem); font-weight:700; }
h3{ font-size:1.25rem; font-weight:600; }
p{ margin:0 0 1em; color:#4645459a; }
:focus-visible{ outline:3px solid var(--coral); outline-offset:2px; }

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

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; transition-duration:0.001ms !important; }
}

/* ---------- Eyebrow / ascent chevron (signature motif) ---------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-display); font-weight:600; font-size:.78rem;
  letter-spacing:.14em; text-transform:uppercase; color:var(--coral);
  margin-bottom:14px;
}
.eyebrow::before{
  content:""; width:0; height:0;
  border-left:6px solid transparent; border-right:6px solid transparent;
  border-bottom:9px solid var(--coral);
}
.eyebrow.on-dark{ color:#ff8a76; }
.eyebrow.on-dark::before{ border-bottom-color:#ff8a76; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family:var(--font-display); font-weight:600; font-size:.95rem;
  padding:14px 26px; border-radius:10px; border:2px solid transparent;
  cursor:pointer; transition:transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-2px); }
.btn-primary{ background:var(--coral); color:var(--white); box-shadow:var(--shadow-sm); }
.btn-primary:hover{ background:var(--coral-dark); box-shadow:var(--shadow-md); }
.btn-accent{ background:var(--white); color:var(--navy); }
.btn-accent:hover{ background:var(--grey-100); }
.btn-outline{ background:transparent; border-color:rgba(255,255,255,.5); color:var(--white); }
.btn-outline:hover{ border-color:var(--white); background:rgba(255,255,255,.08); }
.btn-outline-navy{ background:transparent; border-color:var(--navy); color:var(--navy); }
.btn-outline-navy:hover{ background:var(--navy); color:var(--white); }
.btn-lg{ padding:16px 34px; font-size:1.02rem; }
.btn-block{ width:100%; }

/* ---------- Top utility bar ---------- */
.topbar{ background:var(--navy-deep); color:#c9cfef; font-size:.82rem; }
.topbar-inner{ display:flex; justify-content:space-between; align-items:center; padding:8px 24px; }
.topbar-contact a{ margin-right:20px; color:#dfe3fa; }
.topbar-contact a:hover{ color:var(--coral); }
.topbar-social{ display:flex; gap:10px; }
.topbar-social a{
  width:24px; height:24px; border-radius:50%; background:rgba(255,255,255,.12);
  display:flex; align-items:center; justify-content:center; font-size:.68rem; text-transform:uppercase;
}
.topbar-social a:hover{ background:var(--coral); }

/* ---------- Header ---------- */
.site-header{ background:var(--white); box-shadow:0 1px 0 var(--border); position:sticky; top:0; z-index:200; }
.header-inner{ display:flex; align-items:center; gap:28px; padding:14px 24px; }
.brand-logo{ height:44px; width:auto; }
.main-nav{ flex:1; }
.main-nav > ul{ display:flex; align-items:center; gap:26px; flex-wrap:wrap; }
.main-nav > ul > li{ position:relative; }
.main-nav > ul > li > a{
  font-family:var(--font-display); font-weight:600; font-size:.92rem; color:var(--navy);
  padding:10px 2px; display:inline-block; position:relative;
}
.main-nav > ul > li > a::after{
  content:""; position:absolute; left:0; bottom:4px; width:0; height:2px; background:var(--coral); transition:width .2s ease;
}
.main-nav > ul > li > a:hover::after,
.main-nav > ul > li > a.active::after{ width:100%; }
.main-nav > ul > li > a.active{ color:var(--coral); }

.nav-toggle{ display:none; flex-direction:column; gap:5px; background:none; border:0; cursor:pointer; padding:8px; }
.nav-toggle span{ width:24px; height:2px; background:var(--navy); display:block; }

.mobile-sticky-cta{ display:none; }

/* ---------- Section base ---------- */
.section{ padding:88px 0; }
.section-tight{ padding:60px 0; }
.section-navy{ background:var(--navy); color:#dfe3fa; }
.section-navy h2, .section-navy h3{ color:var(--white); }
.section-navy p{ color:#b9c0ea; }
.section-grey{ background:var(--grey-100); }
.section-head{ max-width:680px; margin-bottom:50px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

/* ---------- Angled section divider (mountain-peak motif) ---------- */
.peak-divider{
  height:56px; width:100%;
  background:var(--white);
  clip-path: polygon(0 100%, 0 40%, 8% 55%, 16% 20%, 24% 55%, 32% 30%, 40% 55%, 50% 15%, 60% 55%, 68% 30%, 76% 55%, 84% 20%, 92% 55%, 100% 40%, 100% 100%);
}
.peak-divider.flip{ transform:scaleY(-1); }
.peak-divider.on-navy{ background:var(--navy); }
.peak-divider.on-grey{ background:var(--grey-100); }

/* ---------- Hero ---------- */
.hero{
  position:relative; overflow:hidden;
  background:linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-mid) 100%);
  color:var(--white); padding:96px 0 70px;
}

.marketing-dashboard {
    width: 100%;
    max-width: 560px;
    padding: 22px;
    border-radius: 22px;

    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(255,78,0,.12),
            transparent 35%
        ),
        rgba(255,255,255,.045);

    border: 1px solid rgba(255,255,255,.09);

    box-shadow:
        0 25px 70px rgba(0,0,0,.28),
        inset 0 1px 0 rgba(255,255,255,.05);

    backdrop-filter: blur(18px);

    overflow: hidden;

    animation-name: dashFadeIn, dashFloat, dashGlow;
    animation-duration: .9s, 6s, 4s;
    animation-timing-function: cubic-bezier(.2,.8,.2,1), ease-in-out, ease-in-out;
    animation-delay: 0s, 1.1s, 1.1s;
    animation-iteration-count: 1, infinite, infinite;
    animation-fill-mode: both, none, none;
}

@keyframes dashFadeIn {
    from { opacity: 0; transform: translateY(28px) scale(.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes dashFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-9px); }
}

@keyframes dashGlow {
    0%, 100% { box-shadow: 0 25px 70px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.05), 0 0 0 rgba(255,78,0,0); }
    50%      { box-shadow: 0 25px 70px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.05), 0 0 34px rgba(255,78,0,.16); }
}

@media (prefers-reduced-motion: reduce) {
    .marketing-dashboard,
    .kpi-card,
    .dash-chart-card,
    .bottom-metrics .metric,
    .live-dot,
    .chart-line,
    .chart-area,
    .chart-pulse,
    .progress span {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}


/* HEADER */

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.dash-eyebrow {
    display: block;
    color: #ff4e00;
    font-size: .58rem;
    font-weight: 800;
    letter-spacing: .14em;
    margin-bottom: 5px;
}

.dash-header h3 {
    margin: 0;
    color: #fff;
    font-size: 1.15rem;
}

.live-status {
    display: flex;
    align-items: center;
    gap: 6px;

    padding: 6px 10px;

    border-radius: 30px;

    background: rgba(255,255,255,.06);

    color: #aab0e0;

    font-size: .65rem;
}

.live-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #35d07f;

    box-shadow: 0 0 0 5px rgba(53,208,127,.12);

    animation: livePulse 1.8s infinite;
}

@keyframes livePulse {

    0%,100% {
        box-shadow: 0 0 0 4px rgba(53,208,127,.10);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(53,208,127,.02);
    }
}


/* KPI CARDS */

.dash-kpis {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
    margin-bottom: 12px;
}

.kpi-card {
    padding: 13px;

    border-radius: 14px;

    background: rgba(255,255,255,.045);

    border: 1px solid rgba(255,255,255,.06);

    display: flex;
    gap: 10px;

    opacity: 0;
    animation: dashRise .6s ease forwards;

    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease;
}

@keyframes dashRise {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.kpi-card:nth-child(1) { animation-delay: .35s; }
.kpi-card:nth-child(2) { animation-delay: .5s; }
.kpi-card:nth-child(3) { animation-delay: .65s; }

.kpi-card:hover {
    transform: translateY(-4px);

    background: rgba(255,255,255,.07);

    border-color: rgba(255,78,0,.3);
}

.kpi-icon {
    width: 32px;
    height: 32px;

    flex-shrink: 0;

    border-radius: 9px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,78,0,.12);

    color: #ff4e00;

    font-size: 13px;
}

.kpi-content span {
    display: block;

    color: #737ba8;

    font-size: .58rem;

    margin-bottom: 3px;
}

.kpi-content strong {
    color: #fff;

    font-size: 1.05rem;

    display: inline-block;
}

.kpi-content small {
    font-size: .55rem;

    margin-left: 4px;
}

.positive {
    color: #35d07f;
}


/* CHART */

.dash-chart-card {
    padding: 16px;

    border-radius: 16px;

    background: rgba(255,255,255,.035);

    border: 1px solid rgba(255,255,255,.06);

    opacity: 0;
    animation: dashRise .7s ease .8s forwards;
}

.chart-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 10px;
}

.chart-top span {
    color: #737ba8;
    font-size: .65rem;
}

.chart-top strong {
    display: block;

    margin-top: 3px;

    color: #fff;

    font-size: 1.05rem;
}

.chart-filter {
    display: flex;
    gap: 3px;

    padding: 3px;

    border-radius: 7px;

    background: rgba(255,255,255,.05);
}

.chart-filter span {
    padding: 4px 7px;

    border-radius: 5px;

    cursor: pointer;
}

.chart-filter .active {
    background: #ff4e00;

    color: #fff;
}


/* ANIMATED CHART */

.animated-chart {
    position: relative;

    height: 180px;
}

.animated-chart svg {
    width: 100%;
    height: 145px;

    position: relative;

    z-index: 2;

    overflow: visible;
}

.chart-lines {
    position: absolute;

    inset: 10px 0 28px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    z-index: 1;
}

.chart-lines span {
    width: 100%;
    height: 1px;

    background: rgba(255,255,255,.055);
}


/* DRAW LINE */

.chart-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;

    animation:
        drawChart 2.2s
        cubic-bezier(.65,0,.35,1)
        1.4s
        forwards;
}

@keyframes drawChart {

    to {
        stroke-dashoffset: 0;
    }

}


/* AREA */

.chart-area {
    opacity: 0;

    animation: fadeArea 1.5s ease 2.6s forwards;
}

@keyframes fadeArea {

    to {
        opacity: 1;
    }

}


/* PULSE POINT */

.chart-pulse {
    opacity: 0;
    animation: chartPulse 1.7s 3.6s infinite, chartPulseIn .01s 3.6s forwards;
}

@keyframes chartPulseIn {
    to { opacity: 1; }
}

@keyframes chartPulse {

    0%,100% {
        filter:
            drop-shadow(0 0 0 rgba(255,78,0,0));
    }

    50% {
        filter:
            drop-shadow(0 0 10px rgba(255,78,0,.8));
    }

}


/* MONTHS */

.chart-months {
    display: flex;

    justify-content: space-between;

    padding: 0 3px;

    color: #626a96;

    font-size: .58rem;
}


/* BOTTOM METRICS */

.bottom-metrics {
    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 14px;

    margin-top: 15px;

    padding-top: 15px;

    border-top: 1px solid rgba(255,255,255,.07);
}

.metric {
    opacity: 0;
    animation: dashRise .6s ease forwards;
}

.metric:nth-child(1) { animation-delay: 1.7s; }
.metric:nth-child(2) { animation-delay: 1.85s; }
.metric:nth-child(3) { animation-delay: 2s; }

.metric-head {
    display: flex;

    justify-content: space-between;

    margin-bottom: 6px;
}

.metric-head span {
    color: #737ba8;

    font-size: .58rem;
}

.metric-head strong {
    color: #fff;

    font-size: .6rem;
}

.progress {
    height: 4px;

    border-radius: 10px;

    overflow: hidden;

    background: rgba(255,255,255,.07);
}

.progress span {
    display: block;

    height: 100%;

    border-radius: inherit;

    background: #ff4e00;

    transform-origin: left;

    animation: progressLoad 1.2s ease 2s forwards;
}

@keyframes progressLoad {

    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }

}


/* RESPONSIVE */

@media (max-width: 600px) {

    .marketing-dashboard {
        padding: 16px;
    }

    .dash-kpis {
        grid-template-columns: 1fr;
    }

    .kpi-card {
        align-items: center;
    }

    .bottom-metrics {
        grid-template-columns: 1fr;
    }

}
.hero::before{
  content:""; position:absolute; right:-140px; top:-140px; width:480px; height:480px;
  background:radial-gradient(circle, rgba(250,74,55,.28) 0%, rgba(250,74,55,0) 70%);
}
.hero::after{
  content:""; position:absolute; left:-10%; bottom:-30%; width:420px; height:420px;
  background:radial-gradient(circle, rgba(255,255,255,.08) 0%, rgba(255,255,255,0) 70%);
}
.hero-inner{ position:relative; display:grid; grid-template-columns:1.15fr .85fr; gap:50px; align-items:center; }
.hero h1{ color:var(--white); }
.hero h1 .accent{ color:var(--coral); }
.hero-sub{ font-size:1.08rem; color:#c3c9ef; max-width:540px; margin-bottom:30px; }
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:34px; }
.hero-badges{ display:flex; gap:22px; flex-wrap:wrap; font-size:.85rem; color:#a9b1e2; }
.hero-badges span{ display:flex; align-items:center; gap:8px; }
.hero-badges .dot{ width:7px; height:7px; border-radius:50%; background:var(--coral); }

/* ---------- Trust stats strip ---------- */
.stats-strip{ background:var(--white); border-bottom:1px solid var(--border); }
.stats-grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:20px; padding:36px 0; }
.stat-item{ text-align:center; border-right:1px solid var(--border); }
.stat-item:last-child{ border-right:none; }
.stat-num{ font-family:var(--font-display); font-weight:700; font-size:1.9rem; color:var(--navy); }
.stat-num .plus{ color:var(--coral); }
.stat-label{ font-size:.8rem; color:var(--grey-500); text-transform:uppercase; letter-spacing:.04em; }

/* ---------- Cards (diagonal-cut corner, echoes logomark angularity) ---------- */
.card{
  background:var(--white); border:1px solid var(--border); border-radius:var(--radius);
  padding:30px; position:relative; overflow:hidden;
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 0 100%);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card::before{
  content:""; position:absolute; top:0; right:0; width:26px; height:26px;
  background:var(--coral); clip-path:polygon(100% 0, 0 0, 100% 100%);
}
.card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); border-color:transparent; }
.card-icon{
  width:52px; height:52px; border-radius:10px; background:var(--grey-100);
  display:flex; align-items:center; justify-content:center; font-size:1.4rem; margin-bottom:18px; color:var(--coral);
}
.card h3{ margin-bottom:10px; }
.card p{ font-size:.94rem; margin-bottom:0; }
.card-link{ display:inline-flex; align-items:center; gap:6px; margin-top:14px; font-weight:600; font-size:.88rem; color:var(--coral); }

/* ---------- Photo service cards (image-led) ---------- */
.card-photo{ padding:0; display:flex; flex-direction:column; }
.card-photo .card-media{ width:100%; height:168px; overflow:hidden; position:relative; background:var(--grey-100); }
.card-photo .card-media img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform .35s ease; }
.card-photo:hover .card-media img{ transform:scale(1.06); }
.card-photo .card-body{ padding:22px 24px 26px; flex:1; display:flex; flex-direction:column; }
.card-photo .card-body p{ flex:1; }
.card-photo .card-icon-badge{
  position:absolute; left:16px; bottom:-18px; width:40px; height:40px; border-radius:10px;
  background:var(--coral); color:var(--white); display:flex; align-items:center; justify-content:center;
  font-size:1.15rem; box-shadow:var(--shadow-md);
}

.grid{ display:grid; gap:26px; }
.grid-2{ grid-template-columns:repeat(2,1fr); }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-4{ grid-template-columns:repeat(4,1fr); }

/* ---------- Why choose us / feature rows ---------- */
.feature-row{ display:flex; gap:18px; align-items:flex-start; margin-bottom:26px; }
.feature-icon{
  flex-shrink:0; width:44px; height:44px; border-radius:10px;
  background:linear-gradient(135deg, var(--navy), var(--navy-mid));
  display:flex; align-items:center; justify-content:center; color:var(--white); font-weight:700;
}
.feature-row h4{ font-family:var(--font-display); color:var(--navy); margin:0 0 4px; font-size:1.02rem; }
.feature-row p{ margin:0; font-size:.92rem; }

/* ---------- Process steps ---------- */
.process-track{ position:relative; display:grid; grid-template-columns:repeat(5,1fr); gap:20px; }
.process-track::before{
  content:""; position:absolute; top:26px; left:8%; right:8%; height:2px;
  background:repeating-linear-gradient(90deg, var(--coral) 0 10px, transparent 10px 18px);
  z-index:0;
}
.process-step{ position:relative; z-index:1; text-align:center; }
.process-num{
  width:54px; height:54px; border-radius:50%; background:var(--white); border:2px solid var(--coral);
  color:var(--coral); font-family:var(--font-display); font-weight:700; display:flex; align-items:center; justify-content:center;
  margin:0 auto 16px; font-size:1.05rem;
}
.process-step h4{ font-family:var(--font-display); color:var(--navy); font-size:.98rem; margin-bottom:6px; }
.process-step p{ font-size:.85rem; }

/* ---------- Industries chips ---------- */
.chip-grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:16px; }
.chip{
  background:var(--white); border:1px solid var(--border); border-radius:10px; padding:20px 14px;
  text-align:center; font-family:var(--font-display); font-weight:600; font-size:.92rem; color:var(--navy);
  transition:all .2s ease;
}
.chip:hover{ border-color:var(--coral); color:var(--coral); transform:translateY(-3px); box-shadow:var(--shadow-sm); }

/* ---------- Case study cards ---------- */
.case-card{
  background:var(--white); border-radius:var(--radius); overflow:hidden; border:1px solid var(--border);
  transition:box-shadow .2s ease, transform .2s ease; display:block;
}
.case-cover{ height:170px; overflow:hidden; }
.case-cover img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform .3s ease; }
.case-card:hover .case-cover img{ transform:scale(1.05); }
.case-card:hover{ box-shadow:var(--shadow-md); transform:translateY(-4px); }
.case-top{ background:linear-gradient(135deg, var(--navy), var(--navy-mid)); color:#fff; padding:22px 26px; }
.case-top .tag{ font-size:.72rem; text-transform:uppercase; letter-spacing:.08em; color:#ffb2a5; font-weight:700; }
.case-body{ padding:24px 26px; }
.case-metrics{ display:flex; gap:22px; margin-top:16px; flex-wrap:wrap; }
.case-metric strong{ display:block; font-family:var(--font-display); color:var(--coral); font-size:1.3rem; }
.case-metric span{ font-size:.76rem; color:var(--grey-500); text-transform:uppercase; }

/* ---------- Testimonials ---------- */
.testimonial-card{
  background:var(--grey-100); border-radius:var(--radius); padding:28px; border-left:4px solid var(--coral);
}
.testimonial-quote{ font-size:.98rem; color:var(--ink); font-style:italic; }
.testimonial-person{ display:flex; align-items:center; gap:12px; margin-top:16px; }
.avatar{
  width:44px; height:44px; border-radius:50%; background:var(--navy); color:#fff;
  display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-weight:700;
  overflow:hidden;
}
.avatar img{ width:100%; height:100%; object-fit:cover; }
.testimonial-person strong{ display:block; font-size:.9rem; color:var(--navy); }
.testimonial-person span{ font-size:.78rem; color:var(--grey-500); }

/* ---------- Final CTA band ---------- */
.cta-band{
  background:linear-gradient(120deg, var(--coral), #ff7a52); color:#fff; border-radius:24px;
  padding:56px; display:flex; justify-content:space-between; align-items:center; gap:30px; flex-wrap:wrap;
}
.cta-band h2{ color:#fff; margin-bottom:6px; }
.cta-band p{ color:rgba(255,255,255,.92); margin:0; }

/* ---------- Breadcrumb / page header (inner pages) ---------- */
.page-header{
  background:linear-gradient(135deg, var(--navy-deep), var(--navy) 60%, var(--navy-mid));
  color:#fff; padding:64px 0 56px; position:relative; overflow:hidden;
}
.page-header::after{
  content:""; position:absolute; right:-100px; top:-100px; width:340px; height:340px;
  background:radial-gradient(circle, rgba(250,74,55,.25), transparent 70%);
}
.page-header .breadcrumb{ font-size:.82rem; color:#a9b1e2; margin-bottom:14px; position:relative; }
.page-header .breadcrumb a{ color:#a9b1e2; }
.page-header .breadcrumb a:hover{ color:var(--coral); }
.page-header h1{ color:#fff; position:relative; max-width:720px; }
.page-header p{ color:#c3c9ef; max-width:640px; position:relative; }

/* ---------- Two column content + sidebar form ---------- */
.split{ display:grid; grid-template-columns:1.5fr 1fr; gap:50px; align-items:start; }
.content-block h2{ margin-top:2em; }
.content-block h2:first-child{ margin-top:0; }
.content-block ul{ margin:0 0 1.4em; }
.content-block ul li{ position:relative; padding-left:26px; margin-bottom:10px; color:var(--grey-700); font-size:.96rem; }
.content-block ul li::before{
  content:""; position:absolute; left:0; top:6px; width:0; height:0;
  border-left:5px solid transparent; border-right:5px solid transparent; border-bottom:8px solid var(--coral);
}

.sticky-form{
  position:sticky; top:110px; background:var(--white); border:1px solid var(--border); border-radius:var(--radius);
  padding:28px; box-shadow:var(--shadow-md);
}
.sticky-form h3{ margin-bottom:6px; }
.sticky-form .form-note{ font-size:.82rem; color:var(--grey-500); margin-bottom:18px; }

/* ---------- Forms ---------- */
.form-group{ margin-bottom:16px; }
.form-group label{ display:block; font-size:.82rem; font-weight:600; color:var(--navy); margin-bottom:6px; font-family:var(--font-display); }
.form-control{
  width:100%; padding:12px 14px; border:1.5px solid var(--border); border-radius:8px;
  font-family:var(--font-body); font-size:.94rem; color:var(--ink); background:var(--white);
  transition:border-color .15s ease;
}
.form-control:focus{ border-color:var(--coral); outline:none; }
textarea.form-control{ resize:vertical; min-height:100px; }
.form-row-2{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.form-msg{ padding:12px 14px; border-radius:8px; font-size:.9rem; margin-bottom:16px; }
.form-msg.success{ background:#e7f8ef; color:#187a49; border:1px solid #b9ecd0; }
.form-msg.error{ background:#fdeceb; color:#c23b2c; border:1px solid #f7cac4; }

/* ---------- Pricing ---------- */
.price-card{
  background:var(--white); border:2px solid var(--border); border-radius:var(--radius); padding:34px 28px; text-align:center;
  transition:all .2s ease; position:relative;
}
.price-card.featured{ border-color:var(--coral); box-shadow:var(--shadow-md); transform:scale(1.03); }
.price-card.featured::before{
  content:"MOST POPULAR"; position:absolute; top:-13px; left:50%; transform:translateX(-50%);
  background:var(--coral); color:#fff; font-size:.68rem; font-weight:700; letter-spacing:.06em;
  padding:5px 14px; border-radius:20px; font-family:var(--font-display);
}
.price-card h3{ margin-bottom:6px; }
.price-card .price-for{ font-size:.85rem; color:var(--grey-500); margin-bottom:18px; }
.price-card ul{ text-align:left; margin:22px 0; }
.price-card ul li{ padding:8px 0; border-bottom:1px dashed var(--border); font-size:.9rem; color:var(--grey-700); display:flex; gap:10px; }
.price-card ul li::before{ content:"✓"; color:var(--coral); font-weight:700; }

/* ---------- Blog ---------- */
.blog-card{ background:#fff; border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; transition:box-shadow .2s ease, transform .2s ease; }
.blog-card:hover{ box-shadow:var(--shadow-md); transform:translateY(-4px); }
.blog-thumb{ height:190px; background:linear-gradient(135deg, var(--navy), var(--navy-mid)); display:flex; align-items:center; justify-content:center; color:#ff8a76; font-family:var(--font-display); font-weight:700; font-size:.78rem; text-transform:uppercase; letter-spacing:.08em; overflow:hidden; }
.blog-body{ padding:22px; }
.blog-meta{ font-size:.76rem; color:var(--grey-500); text-transform:uppercase; letter-spacing:.04em; margin-bottom:10px; }
.blog-body h3{ font-size:1.05rem; margin-bottom:10px; }
.blog-body p{ font-size:.9rem; }

/* ---------- Footer ---------- */
.site-footer{ background:var(--navy-deep); color:#c3c9ef; }
.footer-cta{ background:var(--navy); }
.footer-cta-inner{ display:flex; justify-content:space-between; align-items:center; gap:26px; flex-wrap:wrap; padding:44px 24px; }
.footer-cta-inner h2{ color:#fff; margin-bottom:6px; }
.footer-cta-inner p{ color:#b9c0ea; margin:0; }
.footer-main{ display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr 1.1fr; gap:34px; padding:56px 24px 40px; }
.footer-col{ display:flex; flex-direction:column; gap:10px; }
.footer-col h4{ font-family:var(--font-display); color:#fff; font-size:.85rem; text-transform:uppercase; letter-spacing:.07em; margin-bottom:10px; }
.footer-col a{ font-size:.88rem; color:#aab0e0; }
.footer-col a:hover{ color:var(--coral); }
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-decoration: none;
}

.contact-item i {
    width: 20px;
    min-width: 20px;
    margin-top: 3px;
    font-size: 15px;
    text-align: center;
}

.contact-item .fa-phone,
.contact-item .fa-envelope,
.contact-item .fa-location-dot {color: var(--coral);}
.contact-item .fa-whatsapp {color: #25D366;}
.contact-item:hover {color: var(--coral);}
.contact-item:hover i {transform: translateX(2px);}
.contact-item i {transition: transform 0.3s ease;}
.footer-brand p{ font-size:.85rem; color:#9aa1d6; }
.footer-address{ font-size:.88rem; color:#aab0e0; }
/* .footer-social{ display:flex; gap:10px; margin-top:6px; }
.footer-social a{ width:32px; height:32px; border-radius:50%; background:rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center; font-size:.7rem; text-transform:uppercase; }
.footer-social a:hover{ background:var(--coral); color:#fff; } */

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a i {
    font-size: 14px;
    line-height: 1;
}

.footer-social a:hover {
    background: var(--coral);
    color: #fff;
}

.footer-bottom{ border-top:1px solid rgba(4, 120, 244, 0.285); }
.footer-bottom-inner{ display:flex; justify-content:space-between; align-items:center; padding:20px 24px; flex-wrap:wrap; gap:10px; font-size:.8rem; }
.footer-bottom-inner > p {color: #ff0000;}
.footer-legal{ display:flex; gap:18px; flex-wrap:wrap; }
.footer-legal a{ color:#fffefe; }
.footer-legal a:hover{ color:var(--coral); }

/* ---------- Mobile sticky CTA bar ---------- */
.mobile-sticky-cta{
  display:none; position:fixed; bottom:0; left:0; right:0; z-index:250;
  background:var(--navy-deep); box-shadow:0 -4px 16px rgba(0,0,0,.2);
}
.mobile-sticky-cta a{
  flex:1; text-align:center; padding:13px 6px; color:#fff; font-size:.82rem; font-weight:600; font-family:var(--font-display);
  border-right:1px solid rgba(255,255,255,.12);
}
.mobile-sticky-cta a:last-child{ border-right:none; background:var(--coral); }

/* ---------- Utility ---------- */
.text-center{ text-align:center; }
.mt-0{ margin-top:0; }
.mb-0{ margin-bottom:0; }
.tag-pill{
  display:inline-block; background:var(--grey-100); color:var(--navy); font-size:.76rem; font-weight:700;
  padding:5px 12px; border-radius:20px; margin:0 6px 6px 0; font-family:var(--font-display);
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1024px){
  .grid-4{ grid-template-columns:repeat(2,1fr); }
  .grid-3{ grid-template-columns:repeat(2,1fr); }
  .stats-grid{ grid-template-columns:repeat(3,1fr); }
  .chip-grid{ grid-template-columns:repeat(3,1fr); }
  .process-track{ grid-template-columns:repeat(3,1fr); row-gap:34px; }
  .process-track::before{ display:none; }
  .split{ grid-template-columns:1fr; }
  .sticky-form{ position:static; }
  .footer-main{ grid-template-columns:1fr 1fr 1fr; }
  .hero-inner{ grid-template-columns:1fr; }
}
@media (max-width: 860px){
  .topbar-contact a:nth-child(2){ display:none; }
  .main-nav{ position:fixed; top:0; right:-100%; width:82%; max-width:340px; height:100vh; background:#fff;
    box-shadow:-8px 0 30px rgba(0,0,0,.15); transition:right .25s ease; overflow-y:auto; padding:90px 26px 26px; z-index:150; }
  .main-nav.open{ right:0; }
  .main-nav > ul{ flex-direction:column; align-items:flex-start; gap:4px; }
  .main-nav > ul > li{ width:100%; }
  .main-nav > ul > li > a{ display:block; padding:12px 0; border-bottom:1px solid var(--border); width:100%; }
  .header-cta{ display:none; }
  .nav-toggle{ display:flex; }
  .mobile-sticky-cta{ display:flex; }
  body{ padding-bottom:52px; }
  .grid-4, .grid-3, .grid-2{ grid-template-columns:1fr; }
  .stats-grid{ grid-template-columns:repeat(2,1fr); }
  .stat-item:nth-child(2n){ border-right:none; }
  .chip-grid{ grid-template-columns:repeat(2,1fr); }
  .footer-main{ grid-template-columns:1fr 1fr; }
  .cta-band{ flex-direction:column; text-align:center; padding:40px 26px; }
  .footer-cta-inner{ text-align:center; justify-content:center; flex-direction:column; }
  .section{ padding:60px 0; }
}
@media (max-width: 520px){
  .footer-main{ grid-template-columns:1fr; }
  .form-row-2{ grid-template-columns:1fr; }
  .stats-grid{ grid-template-columns:repeat(2,1fr); }
}
