/* ============================================================
   index.css — Zoho 4-Color Theme · Page 1 (Solutions)
   Red / Green / Blue / Yellow from the Zoho logo throughout
   ============================================================ */

.sol-wrap { min-height: 100vh; background: var(--z-bg); }


/* ================================================================
   HERO — White bg + Zoho logo watermark + 4-colored stats
   ================================================================ */

.sol-hero {
  background: white;
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--z-border);
}

/* Subtle 4-color tint glows on the right side */
.sol-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%; height: 100%;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(228,37,39,.06) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 70%, rgba(21,101,192,.05) 0%, transparent 45%);
  pointer-events: none;
}




.sol-hero-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 52px;
  display: grid; grid-template-columns: 1fr 370px;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
}

/* ── Large centered Zoho logo watermark behind the hero ── */
.sol-hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 780px;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
.sol-hero-watermark img {
  width: 100%;
  opacity: 0.06;
  mix-blend-mode: multiply;
  filter: blur(2px) grayscale(15%);
  display: block;
}

/* "Authorized Zoho Partner" badge — 4-color left border */
.sol-hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--z-bg);
  border: 1px solid var(--z-border);
  border-radius: 6px;
  padding: 7px 16px;
  font-size: 11px; font-weight: 700;
  color: var(--z-body);
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 24px;
  position: relative; overflow: hidden;
}

/* 4-color left accent strip on badge */
.sol-hero-badge::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--zr) 25%, var(--zg) 25% 50%, var(--zb) 50% 75%, var(--zy) 75%);
}

.sol-h1 {
  font-size: 50px; font-weight: 900; color: var(--z-text);
  line-height: 1.08; letter-spacing: -1.5px; margin-bottom: 20px;
}
.sol-h1 span { color: var(--zr); } /* "Zoho Solutions" in Zoho Red */

.sol-hero-p {
  font-size: 16px; color: var(--z-body);
  line-height: 1.75; margin-bottom: 34px; max-width: 500px;
}

.sol-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  background: var(--zr); color: white; text-decoration: none;
  font-size: 13px; font-weight: 700; padding: 13px 28px;
  border-radius: 6px; border: 1px solid var(--zr-dk); transition: all .18s;
  cursor: pointer; font-family: inherit; display: inline-flex; align-items: center;
}
.btn-primary:hover {
  background: var(--zr-dk); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(228,37,39,.45);
}

.btn-secondary {
  background: white; color: var(--z-text);
  text-decoration: none; font-size: 13px; font-weight: 600;
  padding: 13px 28px; border-radius: 6px;
  border: 1.5px solid var(--z-border); transition: all .18s;
}
.btn-secondary:hover { background: var(--z-bg); border-color: var(--z-text); }

/* ── Stats Card — each stat gets one Zoho color ── */
.sol-stats-card {
  background: var(--z-bg);
  border: 1px solid var(--z-border);
  border-radius: 14px; padding: 22px;
}

.sol-stats-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-bottom: 16px;
}

.sol-stat {
  text-align: center; padding: 16px 10px;
  border-radius: 10px;
  border-top: 3px solid transparent;
}

/* Each stat: one Zoho brand color as top border + matching tint bg */
.sol-stat:nth-child(1) { background: rgba(228,37,39,.12);  border-top-color: var(--zr); }
.sol-stat:nth-child(2) { background: rgba(61,166,56,.12);  border-top-color: var(--zg); }
.sol-stat:nth-child(3) { background: rgba(21,101,192,.12); border-top-color: var(--zb); }
.sol-stat:nth-child(4) { background: rgba(246,168,0,.12);  border-top-color: var(--zy); }

.sol-stat-n { font-size: 30px; font-weight: 900; color: var(--z-text); }
.sol-stat:nth-child(1) .sol-stat-n { color: var(--zr); }
.sol-stat:nth-child(2) .sol-stat-n { color: var(--zg); }
.sol-stat:nth-child(3) .sol-stat-n { color: var(--zb); }
.sol-stat:nth-child(4) .sol-stat-n { color: var(--zy-dk); }

.sol-stat-l {
  font-size: 9.5px; color: var(--z-muted);
  font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-top: 4px;
}

/* Zoho partner badge in stats card */
.sol-partner-badge {
  background: white;
  border: 1px solid var(--z-border);
  border-radius: 8px; padding: 12px 14px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.sol-partner-badge p { font-size: 11px; color: var(--z-body); font-weight: 600; }

/* Zoho logo in the partner badge */
.sol-partner-logo {
  height: 24px; width: auto;
  opacity: .9;
}


/* ================================================================
   SHARED SECTION LAYOUT
   ================================================================ */

.sol-section { padding: 68px 0; background: var(--z-bg); }
.sol-section--white { background: var(--z-white); }

.sol-section-inner { max-width: 1320px; margin: 0 auto; padding: 0 52px; }

/* Section label: one of the 4 Zoho colors — default Red */
.sol-section-label {
  display: inline-block;
  font-size: 11px; font-weight: 800;
  color: var(--zr);
  letter-spacing: 2.5px; text-transform: uppercase;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--zr);
}

.sol-section-title {
  font-size: 34px; font-weight: 900; color: var(--z-text);
  letter-spacing: -.8px; line-height: 1.18; margin-bottom: 12px;
}

.sol-section-sub {
  font-size: 15px; color: var(--z-muted);
  margin-bottom: 40px; line-height: 1.7; max-width: 660px;
}


/* ================================================================
   SERVICE CARDS — 4-color cycling top accent
   Cards 1,5,9 = Red | 2,6,10 = Green | 3,7 = Blue | 4,8 = Yellow
   ================================================================ */

.sol-svc-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }

.sol-svc-card {
  background: var(--z-white); border-radius: 10px; padding: 22px 18px 20px;
  border: 1px solid var(--z-border); transition: all .2s;
  position: relative; overflow: hidden;
}

/* Top color stripe (hidden by default, slides in on hover) */
.sol-svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  transform: scaleX(0); transition: transform .22s; transform-origin: left;
}

.sol-svc-card:nth-child(4n+1)::before { background: var(--zr); }
.sol-svc-card:nth-child(4n+2)::before { background: var(--zg); }
.sol-svc-card:nth-child(4n+3)::before { background: var(--zb); }
.sol-svc-card:nth-child(4n+4)::before { background: var(--zy); }

.sol-svc-card:hover { transform: translateY(-4px); }
.sol-svc-card:hover::before { transform: scaleX(1); }

.sol-svc-card:nth-child(4n+1):hover { border-color: var(--zr); box-shadow: 0 8px 28px rgba(228,37,39,.14); }
.sol-svc-card:nth-child(4n+2):hover { border-color: var(--zg); box-shadow: 0 8px 28px rgba(61,166,56,.14); }
.sol-svc-card:nth-child(4n+3):hover { border-color: var(--zb); box-shadow: 0 8px 28px rgba(21,101,192,.14); }
.sol-svc-card:nth-child(4n+4):hover { border-color: var(--zy); box-shadow: 0 8px 28px rgba(246,168,0,.14); }

.sol-svc-ico  { width:46px; height:46px; border-radius:10px; display:flex; align-items:center; justify-content:center; margin-bottom:14px; }
.sol-svc-ico i { color: white; font-size: 22px; }
.sol-svc-name { font-size:13px; font-weight:800; color:var(--z-text); margin-bottom:8px; }
.sol-svc-desc { font-size:11.5px; color:var(--z-muted); line-height:1.65; }

.sol-svc-apps { display:flex; flex-wrap:wrap; gap:4px; margin-top:14px; }
.sol-app-chip {
  font-size:9.5px; font-weight:700; padding:3px 8px;
  border-radius:4px; background:var(--z-bg); color:var(--z-text);
  border:1px solid var(--z-border);
}


/* ================================================================
   PROCESS STEPS — 4-colored numbered circles + Zoho gradient line
   ================================================================ */

.sol-process { padding: 68px 0; background: var(--z-white); }

.sol-process-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  position: relative; margin-top: 48px;
}

/* 4-color gradient connector line between step circles */
.sol-process-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 12.5%; right: 12.5%; height: 3px;
  background: linear-gradient(90deg, var(--zr) 0%, var(--zg) 33%, var(--zb) 66%, var(--zy) 100%);
  border-radius: 3px; z-index: 0;
}

.sol-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }

/* Each step circle gets one Zoho color */
.sol-step-num {
  width: 56px; height: 56px; border-radius: 50%;
  color: white; font-size: 20px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  border: 4px solid var(--z-white);
}

.sol-step:nth-child(1) .sol-step-num { background: var(--zr); box-shadow: 0 0 0 2px var(--zr), 0 4px 14px rgba(228,37,39,.4); }
.sol-step:nth-child(2) .sol-step-num { background: var(--zg); box-shadow: 0 0 0 2px var(--zg), 0 4px 14px rgba(61,166,56,.4); }
.sol-step:nth-child(3) .sol-step-num { background: var(--zb); box-shadow: 0 0 0 2px var(--zb), 0 4px 14px rgba(21,101,192,.4); }
.sol-step:nth-child(4) .sol-step-num { background: var(--zy); color: white; box-shadow: 0 0 0 2px var(--zy), 0 4px 14px rgba(246,168,0,.4); }

.sol-step-title { font-size: 14px; font-weight: 800; color: var(--z-text); margin-bottom: 10px; }
.sol-step-desc  { font-size: 12px; color: var(--z-muted); line-height: 1.7; }


/* ================================================================
   WHY ECOG — 4-colored icon boxes + dark "what's included" card
   ================================================================ */

.sol-why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.sol-why-list { display: flex; flex-direction: column; gap: 14px; }

.sol-why-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px; background: var(--z-white);
  border-radius: 10px; border: 1px solid var(--z-border); transition: all .18s;
}

/* Each Why ECOG item gets a Zoho color — overrides any inline style */
.sol-why-item:nth-child(1) .sol-why-ico { background: var(--zr) !important; }
.sol-why-item:nth-child(2) .sol-why-ico { background: var(--zb) !important; }
.sol-why-item:nth-child(3) .sol-why-ico { background: var(--zg) !important; }
.sol-why-item:nth-child(4) .sol-why-ico { background: var(--zy) !important; }
.sol-why-item:nth-child(4) .sol-why-ico i { color: var(--z-text) !important; } /* dark icon on yellow */

.sol-why-item:nth-child(1):hover { border-color: var(--zr); box-shadow: 0 4px 16px rgba(228,37,39,.1); }
.sol-why-item:nth-child(2):hover { border-color: var(--zb); box-shadow: 0 4px 16px rgba(21,101,192,.1); }
.sol-why-item:nth-child(3):hover { border-color: var(--zg); box-shadow: 0 4px 16px rgba(61,166,56,.1); }
.sol-why-item:nth-child(4):hover { border-color: var(--zy); box-shadow: 0 4px 16px rgba(246,168,0,.1); }

.sol-why-ico {
  width: 40px; height: 40px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sol-why-ico i { font-size: 18px; color: white; }
.sol-why-title { font-size:13.5px; font-weight:700; color:var(--z-text); margin-bottom:3px; }
.sol-why-desc  { font-size:12px; color:var(--z-muted); line-height:1.6; }

/* "What's Included" card — Zoho logo watermark background */
.sol-why-visual {
  background: var(--z-bg);
  border-radius: 16px; padding: 36px;
  position: relative; overflow: hidden;
  border: 1px solid var(--z-border);
}

/* Zoho logo centered watermark inside card */
.sol-why-visual::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 85%; height: 80%;
  background: url('../img/zoho-logo.png') no-repeat center / contain;
  opacity: .06;
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* 4-color top border strip on the visual card */
.sol-why-visual::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--zr) 25%, var(--zg) 25% 50%, var(--zb) 50% 75%, var(--zy) 75%);
}

.sol-wv-title { font-size: 20px; font-weight: 900; margin-bottom: 22px; color: var(--z-text); }

.sol-wv-item {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 13px; font-size: 13px; font-weight: 500;
  color: var(--z-body);
}

/* Dots cycle through 4 Zoho colors */
.sol-wv-item:nth-child(4n+1) .sol-wv-dot { background: var(--zr); }
.sol-wv-item:nth-child(4n+2) .sol-wv-dot { background: var(--zg); }
.sol-wv-item:nth-child(4n+3) .sol-wv-dot { background: var(--zb); }
.sol-wv-item:nth-child(4n+4) .sol-wv-dot { background: var(--zy); }

.sol-wv-dot { width:8px; height:8px; border-radius:50%; flex-shrink:0; }


/* ================================================================
   INDUSTRIES — White bg with large Zoho logo watermark
   ================================================================ */

.sol-ind {
  padding: 68px 0;
  background: var(--z-bg);
  position: relative; overflow: hidden;
}

/* LARGE Zoho logo watermark centered */
.sol-ind::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 500px;
  background: url('../img/zoho-logo.png') no-repeat center / contain;
  opacity: .05;
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* 4-color glows at corners */
.sol-ind::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 10% 20%, rgba(228,37,39,.05) 0%, transparent 40%),
    radial-gradient(ellipse at 90% 80%, rgba(21,101,192,.05) 0%, transparent 40%),
    radial-gradient(ellipse at 85% 10%, rgba(61,166,56,.04) 0%, transparent 35%),
    radial-gradient(ellipse at 15% 85%, rgba(246,168,0,.04) 0%, transparent 35%);
  pointer-events: none;
}

.sol-ind .sol-section-label  { color: var(--zr); border-bottom-color: var(--zr); }
.sol-ind .sol-section-title  { color: var(--z-text); }
.sol-ind .sol-section-sub    { color: var(--z-muted); }

.sol-ind-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; position:relative; z-index:1; }

/* Industry cards — each gets one Zoho color top border */
.sol-ind-card {
  background: white;
  border: 1px solid var(--z-border);
  border-radius: 10px; padding: 22px 18px; transition: all .2s;
  border-top: 3px solid transparent;
}

.sol-ind-card:nth-child(4n+1) { border-top-color: var(--zr); }
.sol-ind-card:nth-child(4n+2) { border-top-color: var(--zg); }
.sol-ind-card:nth-child(4n+3) { border-top-color: var(--zb); }
.sol-ind-card:nth-child(4n+4) { border-top-color: var(--zy); }

.sol-ind-card:hover { background: var(--z-bg); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }

.sol-ind-ico  { width:40px; height:40px; margin-bottom:12px; display:flex; align-items:center; justify-content:center; border-radius:10px; }
.sol-ind-ico i { color: white; font-size: 18px; }

/* Give each icon a Zoho color background so white SVG shapes are visible */
.sol-ind-card:nth-child(4n+1) .sol-ind-ico { background: var(--zr); }
.sol-ind-card:nth-child(4n+2) .sol-ind-ico { background: var(--zg); }
.sol-ind-card:nth-child(4n+3) .sol-ind-ico { background: var(--zb); }
.sol-ind-card:nth-child(4n+4) .sol-ind-ico { background: var(--zy); }

.sol-ind-name { font-size:13px; font-weight:800; color:var(--z-text); margin-bottom:6px; }
.sol-ind-apps { font-size:11px; color:var(--z-muted); line-height:1.6; }


/* ================================================================
   CTA — White bg + Zoho logo watermark + red button
   ================================================================ */

.sol-cta {
  background: white;
  padding: 68px 0; position: relative; overflow: hidden;
  border-top: 1px solid var(--z-border);
}

/* Zoho logo watermark */
.sol-cta::before {
  content: '';
  position: absolute;
  top: 50%; right: 5%;
  transform: translateY(-50%);
  width: 360px; height: 260px;
  background: url('../img/zoho-logo.png') no-repeat center / contain;
  opacity: .06;
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* Subtle red radial glow on the left */
.sol-cta::after {
  content: '';
  position: absolute;
  top: 50%; left: -5%;
  transform: translateY(-50%);
  width: 40%; height: 200%;
  background: radial-gradient(ellipse, rgba(228,37,39,.04) 0%, transparent 70%);
  pointer-events: none;
}

.sol-cta-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 52px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  position: relative; z-index: 1;
}

.sol-cta-text h2 { font-size: 30px; font-weight: 900; color: var(--z-text); letter-spacing: -.5px; margin-bottom: 10px; }
.sol-cta-text p  { font-size: 15px; color: var(--z-body); line-height: 1.65; }
.sol-cta-actions { display: flex; gap: 14px; flex-shrink: 0; }

/* Zoho Red filled button */
.btn-cta {
  background: var(--zr); color: white; text-decoration: none;
  font-size: 13px; font-weight: 800; padding: 14px 30px;
  border-radius: 6px; border: 1px solid var(--zr-dk); transition: all .18s; white-space: nowrap;
}
.btn-cta:hover { background: var(--zr-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(228,37,39,.3); }

/* Outline button */
.btn-cta-outline {
  color: var(--z-text); text-decoration: none; background: white;
  font-size: 13px; font-weight: 600; padding: 14px 28px;
  border-radius: 6px; border: 1.5px solid var(--z-border); transition: all .18s; white-space: nowrap;
}
.btn-cta-outline:hover { background: var(--z-bg); border-color: var(--z-text); }


/* ================================================================
   RESPONSIVE — MOBILE FIRST
   ================================================================ */

/* ── Large tablet ── */
@media (max-width: 1100px) {
  .sol-hero-inner { gap: 40px; padding: 0 36px; }
  .sol-h1 { font-size: 44px; }
  .sol-section-inner { padding: 0 36px; }
  .sol-cta-inner { padding: 0 36px; }
  .sol-svc-grid { grid-template-columns: repeat(4, 1fr); }
  .sol-ind-grid  { grid-template-columns: repeat(4, 1fr); }
}

/* ── Tablet / nav hamburger breakpoint ── */
@media (max-width: 860px) {
  /* Hero — stack vertically */
  .sol-hero { padding: 44px 0 40px; }
  .sol-hero-inner {
    grid-template-columns: 1fr;
    padding: 0 28px;
    gap: 32px;
  }
  .sol-h1 { font-size: 34px; letter-spacing: -1px; }
  .sol-hero-p { font-size: 15px; max-width: 100%; }
  .sol-stats-card { max-width: 460px; }

  /* Sections */
  .sol-section        { padding: 48px 0; }
  .sol-process        { padding: 48px 0; }
  .sol-ind            { padding: 48px 0; }
  .sol-cta            { padding: 48px 0; }
  .sol-section-inner  { padding: 0 28px; }
  .sol-cta-inner      { padding: 0 28px; }
  .sol-section-title  { font-size: 26px; }
  .sol-section-sub    { margin-bottom: 30px; }

  /* Services — 2 cols */
  .sol-svc-grid { grid-template-columns: repeat(2, 1fr); }

  /* Process — 2×2 grid, no connector line */
  .sol-process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .sol-process-steps::before { display: none; }
  .sol-step { padding: 0 10px; }

  /* Why ECOG — stack */
  .sol-why-grid { grid-template-columns: 1fr; gap: 28px; }

  /* Industries — 3 cols */
  .sol-ind-grid { grid-template-columns: repeat(3, 1fr); }

  /* CTA — stack */
  .sol-cta-inner { flex-direction: column; text-align: center; gap: 24px; }
  .sol-cta-actions { flex-direction: column; width: 100%; }
  .btn-cta, .btn-cta-outline {
    text-align: center; width: 100%; display: block;
    padding: 15px 20px; box-sizing: border-box;
  }
  .sol-cta-text h2 { font-size: 24px; }
}

/* ── Mobile ── */
@media (max-width: 580px) {
  /* Hero */
  .sol-hero { padding: 32px 0 28px; }
  .sol-hero-watermark { display: none; }
  .sol-hero-inner { padding: 0 16px; gap: 24px; }
  .sol-h1 { font-size: 27px; letter-spacing: -.4px; line-height: 1.15; }
  .sol-hero-p { font-size: 14px; margin-bottom: 22px; }
  .sol-hero-badge { font-size: 10px; padding: 6px 12px; margin-bottom: 18px; }
  .sol-hero-btns { gap: 10px; }
  .btn-primary, .btn-secondary { padding: 12px 20px; font-size: 13px; flex: 1; text-align: center; }

  /* Stats card */
  .sol-stats-card { padding: 16px; }
  .sol-stat-n { font-size: 24px; }
  .sol-stat-l { font-size: 8.5px; }
  .sol-partner-badge p { font-size: 10px; }

  /* Sections */
  .sol-section       { padding: 36px 0; }
  .sol-process       { padding: 36px 0; }
  .sol-ind           { padding: 36px 0; }
  .sol-cta           { padding: 36px 0; }
  .sol-section-inner { padding: 0 16px; }
  .sol-cta-inner     { padding: 0 16px; }
  .sol-section-title { font-size: 21px; letter-spacing: -.3px; }
  .sol-section-sub   { font-size: 13.5px; margin-bottom: 24px; }

  /* Services */
  .sol-svc-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .sol-svc-card { padding: 16px 14px 14px; }
  .sol-svc-ico  { width: 38px; height: 38px; margin-bottom: 10px; }
  .sol-svc-ico i { font-size: 17px; }
  .sol-svc-name { font-size: 12px; margin-bottom: 6px; }
  .sol-svc-desc { font-size: 10.5px; }
  .sol-app-chip { font-size: 9px; padding: 2px 6px; }

  /* Process — single column, horizontal card style */
  .sol-process-steps { grid-template-columns: 1fr; gap: 20px; }
  .sol-step {
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 16px;
    background: white;
    border: 1px solid var(--z-border);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
  }
  .sol-step-num {
    margin: 0;
    flex-shrink: 0;
    width: 44px; height: 44px;
    font-size: 17px;
  }
  .sol-step-title { font-size: 13.5px; margin-bottom: 6px; }
  .sol-step-desc  { font-size: 11.5px; }

  /* Why ECOG */
  .sol-why-item  { padding: 14px; gap: 12px; }
  .sol-why-ico   { width: 36px; height: 36px; }
  .sol-why-ico i { font-size: 15px; }
  .sol-why-title { font-size: 13px; }
  .sol-why-desc  { font-size: 11.5px; }
  .sol-why-visual { padding: 22px 18px; }
  .sol-wv-title  { font-size: 16px; margin-bottom: 16px; }
  .sol-wv-item   { font-size: 12px; margin-bottom: 10px; }

  /* Industries */
  .sol-ind-grid  { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .sol-ind-card  { padding: 16px 14px; }
  .sol-ind-ico   { width: 34px; height: 34px; margin-bottom: 10px; }
  .sol-ind-ico i { font-size: 14px; }
  .sol-ind-name  { font-size: 12px; }
  .sol-ind-apps  { font-size: 10px; }

  /* CTA */
  .sol-cta-text h2 { font-size: 20px; }
  .sol-cta-text p  { font-size: 13.5px; }
}

/* ── Very small phones (≤ 360px) ── */
@media (max-width: 360px) {
  .sol-h1 { font-size: 23px; }
  .sol-hero-btns { flex-direction: column; }
  .btn-primary, .btn-secondary { flex: none; width: 100%; }
  .sol-svc-grid { grid-template-columns: 1fr; }
  .sol-ind-grid  { grid-template-columns: 1fr; }
}
