/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:        #C8922A;
  --gold-light:  #f5e6c8;
  --gold-dark:   #a8780f;
  --purple:      #9B72B0;
  --purple-light:#f0e8f5;
  --green:       #1B6B3A;
  --green-dark:  #144f2a;
  --green-light: #e4f0e9;
  --sage:        #6BAF8A;
  --lavender:    #C4A0C4;
  --logo-gray:   #6E6E6E;

  --dark:        #111a14;
  --dark2:       #1a2a1e;
  --white:       #ffffff;
  --off-white:   #f7faf8;
  --text:        #1a2a1e;
  --text-muted:  #5a6e60;
  --border:      #dde8e2;

  /* Icon color vars */
  --ic-red-bg:    rgba(185,0,70,0.08);
  --ic-red-fg:    #b0004a;
  --ic-purple-bg: rgba(155,114,176,0.1);
  --ic-purple-fg: #7a52a0;
  --ic-green-bg:  rgba(27,107,58,0.1);
  --ic-green-fg:  #1B6B3A;
  --ic-gold-bg:   rgba(200,146,42,0.1);
  --ic-gold-fg:   #a8780f;
  --ic-teal-bg:   rgba(107,175,138,0.12);
  --ic-teal-fg:   #3d8f68;
  --ic-blue-bg:   rgba(0,100,200,0.1);
  --ic-blue-fg:   #0050a0;

  --radius:    12px;
  --radius-sm: 8px;
  --shadow:    0 4px 24px rgba(27,107,58,0.07);
  --shadow-lg: 0 8px 48px rgba(27,107,58,0.13);
  --transition: 0.2s ease;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.95rem; cursor: pointer; border: 2px solid transparent; transition: all var(--transition); white-space: nowrap; }
.btn-primary { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(27,107,58,0.3); }
.btn-gold    { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-white   { background: var(--white); color: var(--green); border-color: var(--white); }
.btn-white:hover { background: var(--green-light); }
.btn-lg      { padding: 14px 32px; font-size: 1rem; }
.btn-full    { width: 100%; }
.btn-success { background: #16a34a !important; border-color: #16a34a !important; }

/* ===== LAYOUT HELPERS ===== */
.section    { padding: 96px 0; }
.bg-light   { background: var(--off-white); }
.bg-dark    { background: var(--dark); }

/* Shared section header (centered, for non-service sections) */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-tag { display: inline-block; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 12px; }
.section-tag.light { color: var(--sage); }
.section-title { font-size: clamp(1.75rem, 3vw, 2.4rem); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.section-title.light { color: var(--white); }
.section-sub { color: var(--text-muted); font-size: 1.02rem; }

/* ===== NAVBAR ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(17,26,20,0.96); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,0.06); transition: box-shadow var(--transition); }
.navbar.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.3); }
.nav-inner { display: flex; align-items: center; gap: 24px; height: 70px; }

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-circles { position: relative; width: 36px; height: 36px; flex-shrink: 0; }
.logo-circles svg { width: 36px; height: 36px; }
.logo-wordmark { display: flex; flex-direction: column; line-height: 1; }
.logo-it4b    { font-size: 1.5rem; font-weight: 900; color: var(--white); letter-spacing: -0.5px; }
.logo-tagline { font-size: 0.5rem; color: rgba(255,255,255,0.4); letter-spacing: 0.04em; text-transform: uppercase; margin-top: 2px; }

.nav-links { display: flex; align-items: center; gap: 2px; flex: 1; }
.nav-link, .nav-btn { color: rgba(255,255,255,0.75); font-size: 0.88rem; font-weight: 500; padding: 8px 12px; border-radius: var(--radius-sm); transition: all var(--transition); background: none; border: none; cursor: pointer; font-family: var(--font); display: flex; align-items: center; gap: 4px; }
.nav-link:hover, .nav-btn:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.chevron { font-size: 0.65rem; transition: transform var(--transition); }
.nav-dropdown { position: relative; }
.nav-dropdown:hover .chevron { transform: rotate(180deg); }
.dropdown-menu { position: absolute; top: calc(100% + 8px); left: 0; background: var(--dark2); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 8px; min-width: 230px; box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all var(--transition); z-index: 100; }
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 9px 14px; color: rgba(255,255,255,0.7); font-size: 0.875rem; border-radius: var(--radius-sm); transition: all var(--transition); }
.dropdown-menu a:hover { background: rgba(107,175,138,0.15); color: var(--white); }
.nav-cta { margin-left: auto; flex-shrink: 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }

/* ===== HERO ===== */
.hero { min-height: 100vh; background: linear-gradient(135deg, var(--dark) 0%, #0e1f12 55%, #0a1a0d 100%); display: flex; align-items: center; padding: 120px 0 80px; position: relative; overflow: hidden; }
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape { position: absolute; border-radius: 50%; filter: blur(90px); }
.shape-1 { width: 550px; height: 550px; background: var(--green);   opacity: 0.12; top: -150px; right: -100px; }
.shape-2 { width: 380px; height: 380px; background: var(--gold);    opacity: 0.08; bottom: -80px; left: -80px; }
.shape-3 { width: 320px; height: 320px; background: var(--purple);  opacity: 0.06; top: 40%; right: 25%; }
.shape-4 { width: 200px; height: 200px; background: var(--sage);    opacity: 0.07; bottom: 20%; left: 30%; }
.hero-content { position: relative; z-index: 1; max-width: 820px; }

.hero-badge   { display: inline-flex; align-items: center; gap: 8px; background: rgba(200,146,42,0.12); border: 1px solid rgba(200,146,42,0.3); color: var(--gold); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em; padding: 6px 14px; border-radius: 999px; }
.hero-badge-2 { display: inline-flex; align-items: center; gap: 8px; background: rgba(107,175,138,0.12); border: 1px solid rgba(107,175,138,0.25); color: var(--sage); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; padding: 5px 12px; border-radius: 999px; margin-left: 10px; }

.hero-title { font-size: clamp(2.1rem, 4.8vw, 3.4rem); font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 24px; }
.highlight-gold  { color: var(--gold); }
.highlight-green { color: var(--sage); }
.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.68); max-width: 640px; margin-bottom: 16px; line-height: 1.7; }

.hero-focus-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.focus-pill { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); font-size: 0.8rem; font-weight: 500; padding: 5px 12px; border-radius: 999px; }
.focus-pill.fp-green  { border-color: rgba(107,175,138,0.4); color: var(--sage); }
.focus-pill.fp-gold   { border-color: rgba(200,146,42,0.4);  color: var(--gold); }
.focus-pill.fp-purple { border-color: rgba(155,114,176,0.4); color: var(--lavender); }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats { display: flex; align-items: center; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius); padding: 24px 32px; backdrop-filter: blur(8px); flex-wrap: wrap; }
.stat { text-align: center; padding: 0 32px; }
.stat:first-child { padding-left: 0; }
.stat-number { display: block; font-size: 2.2rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat-plus   { color: var(--gold); }
.stat-label  { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 4px; display: block; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.08); }

/* ===== BRANCH STRIP ===== */
.branch-strip { background: var(--green); padding: 13px 0; }
.branch-strip-inner { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.branch-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.9); font-size: 0.875rem; font-weight: 500; }
.branch-flag { font-size: 1.1rem; }
.branch-sep  { width: 1px; height: 18px; background: rgba(255,255,255,0.2); }

/* ===== COMPLIANCE STRIP ===== */
.compliance-strip { background: var(--off-white); border-bottom: 1px solid var(--border); padding: 16px 0; }
.compliance-inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: center; }
.compliance-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); white-space: nowrap; }
.compliance-badges { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.comp-badge { display: flex; align-items: center; gap: 7px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 6px 12px; font-size: 0.8rem; font-weight: 600; color: var(--text); }
.cb-dot  { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.cb-green  { background: var(--green); }
.cb-gold   { background: var(--gold); }
.cb-purple { background: var(--purple); }
.cb-sage   { background: var(--sage); }

/* =========================================================
   UNIFIED SERVICE SECTION STYLES
   ========================================================= */

/* Section wrapper */
.svc-section { padding: 96px 0; }

/* Section header — same structure for all 4 service sections */
.svc-section-header { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.svc-section-header h2 { font-size: clamp(1.65rem, 2.8vw, 2.2rem); font-weight: 800; margin-bottom: 14px; line-height: 1.2; color: var(--text); }
.svc-section-header p  { color: var(--text-muted); font-size: 1rem; line-height: 1.7; }

/* Category pill — color coded per section */
.svc-cat-pill { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; margin-bottom: 14px; }
.pill-sec   { background: var(--ic-red-bg);    color: var(--ic-red-fg); }
.pill-mw    { background: var(--ic-green-bg);  color: var(--green-dark); }
.pill-cloud { background: var(--ic-gold-bg);   color: var(--gold-dark); }
.pill-onp   { background: var(--ic-teal-bg);   color: var(--ic-teal-fg); }

/* ===== FOCUS ROW (3 highlight cards at top of Cybersecurity) ===== */
.focus-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.focus-card { border-radius: var(--radius); padding: 32px 28px; color: var(--white); position: relative; }
.fc-green  { background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%); }
.fc-gold   { background: linear-gradient(135deg, var(--gold)  0%, var(--gold-dark)  100%); }
.fc-purple { background: linear-gradient(135deg, var(--purple) 0%, #7a52a0 100%); }
.fc-num { font-size: 2.5rem; font-weight: 900; opacity: 0.2; line-height: 1; margin-bottom: 12px; }
.focus-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.focus-card p  { font-size: 0.875rem; opacity: 0.82; line-height: 1.6; }

/* ===== UNIFIED SERVICE CARD ===== */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.svc-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--sage));
  opacity: 0;
  transition: opacity var(--transition);
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-card:hover::after { opacity: 1; }

/* Icon */
.svc-icon { width: 46px; height: 46px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; flex-shrink: 0; }
.svc-icon svg { width: 22px; height: 22px; }

/* Icon color variants */
.ic-red    { background: var(--ic-red-bg);    color: var(--ic-red-fg); }
.ic-purple { background: var(--ic-purple-bg); color: var(--ic-purple-fg); }
.ic-green  { background: var(--ic-green-bg);  color: var(--ic-green-fg); }
.ic-gold   { background: var(--ic-gold-bg);   color: var(--ic-gold-fg); }
.ic-teal   { background: var(--ic-teal-bg);   color: var(--ic-teal-fg); }
.ic-blue   { background: var(--ic-blue-bg);   color: var(--ic-blue-fg); }

/* Card heading */
.svc-card h3 { font-size: 0.98rem; font-weight: 700; color: var(--text); margin-bottom: 10px; line-height: 1.35; }

/* Card description */
.svc-card > p { font-size: 0.855rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }

/* Card bullet list */
.svc-card ul { display: flex; flex-direction: column; gap: 6px; margin-top: auto; }
.svc-card li { font-size: 0.83rem; color: var(--text-muted); padding-left: 14px; position: relative; line-height: 1.5; }
.svc-card li::before { content: '▸'; position: absolute; left: 0; color: var(--green); font-size: 0.68rem; top: 3px; }

/* Cybersecurity section — red accent on hover */
#cybersecurity .svc-card:hover::after { background: linear-gradient(90deg, var(--ic-red-fg), var(--purple)); }
/* Cloud section — gold accent on hover */
#azure .svc-card:hover::after { background: linear-gradient(90deg, var(--gold), var(--gold-dark)); }
/* On-prem section — teal accent on hover */
#onprem .svc-card:hover::after { background: linear-gradient(90deg, var(--sage), var(--green)); }

/* ===== MULTI-CLOUD ===== */
.multicloud-platforms { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 28px; }
.mcp-tile { display: flex; flex-direction: column; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 22px; min-width: 140px; text-align: center; transition: all var(--transition); }
.mcp-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.mcp-azure   { border-color: rgba(0,120,212,0.25); }
.mcp-oci     { border-color: rgba(199,70,52,0.25);  }
.mcp-gcp     { border-color: rgba(66,133,244,0.25); }
.mcp-aws     { border-color: rgba(255,153,0,0.25);  }
.mcp-local   { border-color: rgba(27,107,58,0.25);  }
.mcp-private { border-color: rgba(155,114,176,0.25);}
.mcp-logo    { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; }
.mcp-name    { font-size: 0.8rem; font-weight: 700; color: var(--text); }
.mcp-tag     { font-size: 0.7rem; color: var(--text-muted); background: var(--off-white); padding: 2px 8px; border-radius: 999px; }

.multicloud-capabilities { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 8px; }
.mcc-card { border-radius: var(--radius); padding: 28px; transition: all var(--transition); border: 1px solid transparent; }
.mcc-secure    { background: var(--green-light); border-color: rgba(27,107,58,0.12); }
.mcc-integrate { background: rgba(200,146,42,0.07); border-color: rgba(200,146,42,0.12); }
.mcc-manage    { background: var(--purple-light);   border-color: rgba(155,114,176,0.12); }
.mcc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.mcc-icon { font-size: 1.8rem; margin-bottom: 12px; }
.mcc-card h4 { font-size: 1rem; font-weight: 800; margin-bottom: 14px; }
.mcc-secure h4    { color: var(--green-dark); }
.mcc-integrate h4 { color: var(--gold-dark); }
.mcc-manage h4    { color: var(--purple); }
.mcc-card ul { display: flex; flex-direction: column; gap: 6px; }
.mcc-card li { font-size: 0.84rem; color: var(--text-muted); padding-left: 14px; position: relative; }
.mcc-card li::before { content: '✓'; position: absolute; left: 0; font-size: 0.75rem; font-weight: 700; }
.mcc-secure li::before    { color: var(--green); }
.mcc-integrate li::before { color: var(--gold); }
.mcc-manage li::before    { color: var(--purple); }

/* ===== OFFERINGS ===== */
.offering-types { display: flex; flex-direction: column; gap: 20px; margin-bottom: 56px; }
.offering-type { display: flex; gap: 32px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; align-items: flex-start; transition: all var(--transition); }
.offering-type:hover { box-shadow: var(--shadow-lg); border-color: var(--green); }
.offering-num  { font-size: 2.8rem; font-weight: 900; color: var(--green); opacity: 0.15; line-height: 1; flex-shrink: 0; min-width: 60px; }
.offering-body h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: 8px; }
.offering-body p  { color: var(--text-muted); margin-bottom: 18px; font-size: 0.92rem; line-height: 1.6; }
.offering-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.offering-tags span { background: var(--green-light); color: var(--green-dark); font-size: 0.78rem; font-weight: 600; padding: 4px 11px; border-radius: 999px; border: 1px solid rgba(27,107,58,0.12); }

/* ===== SUPPORT TABLE ===== */
.support-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 24px; text-align: center; }
.support-table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.support-table { width: 100%; border-collapse: collapse; background: var(--white); font-size: 0.875rem; }
.support-table th, .support-table td { padding: 13px 16px; text-align: center; border-bottom: 1px solid var(--border); }
.support-table th { font-weight: 700; font-size: 0.8rem; background: var(--dark); color: var(--white); }
.support-table th:first-child, .support-table td:first-child { text-align: left; }
.support-table tbody tr:hover { background: var(--off-white); }
.support-table tbody tr:last-child td { border-bottom: none; }
.feature-name { color: var(--text); font-weight: 500; }

.tier-badge { display: inline-block; padding: 5px 14px; border-radius: 999px; font-size: 0.79rem; font-weight: 700; }
.tier-badge.gold   { background: rgba(200,146,42,0.12); color: var(--gold-dark); border: 1px solid rgba(200,146,42,0.3); }
.tier-badge.silver { background: #f1f5f9; color: #475569; border: 1px solid #cbd5e1; }
.tier-badge.bronze { background: var(--ic-teal-bg); color: var(--ic-teal-fg); border: 1px solid rgba(107,175,138,0.3); }
.tier-badge.payg   { background: var(--purple-light); color: var(--purple); border: 1px solid rgba(155,114,176,0.3); }
.tier-gold   { background: rgba(200,146,42,0.04); }
.tier-silver { background: rgba(241,245,249,0.5); }
.tier-bronze { background: rgba(107,175,138,0.04); }
.tier-payg   { background: rgba(155,114,176,0.04); }
.tr-group-label td { background: var(--dark2); color: rgba(255,255,255,0.5); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 7px 16px; }
.cta-row td { padding: 24px 16px; background: var(--off-white); }

/* ===== INDUSTRIES ===== */
.industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.industry-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; text-align: center; transition: all var(--transition); }
.industry-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--green); }
.industry-icon { font-size: 2.2rem; margin-bottom: 14px; }
.industry-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.industry-card p  { font-size: 0.855rem; color: var(--text-muted); line-height: 1.6; }

/* ===== CUSTOMER REFERENCES ===== */
.ref-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ref-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; display: flex; flex-direction: column; gap: 10px; transition: all var(--transition); }
.ref-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--green); }
.ref-industry-badge { display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; padding: 3px 10px; border-radius: 999px; align-self: flex-start; }
.badge-gov         { background: var(--ic-green-bg);   color: var(--green-dark); }
.badge-aviation    { background: var(--ic-gold-bg);    color: var(--gold-dark); }
.badge-healthcare  { background: rgba(196,0,96,0.07);  color: #900050; }
.badge-edu         { background: var(--ic-purple-bg);  color: var(--ic-purple-fg); }
.badge-energy      { background: var(--ic-blue-bg);    color: var(--ic-blue-fg); }
.badge-entertainment{ background: rgba(220,50,140,0.08);color: #a0005a; }
.badge-industrial  { background: var(--ic-teal-bg);    color: var(--ic-teal-fg); }
.badge-tourism     { background: var(--ic-gold-bg);    color: var(--gold-dark); }
.badge-hr          { background: var(--ic-purple-bg);  color: var(--ic-purple-fg); }
.ref-card h4   { font-size: 0.9rem; font-weight: 700; color: var(--text); line-height: 1.3; }
.ref-tags      { display: flex; flex-wrap: wrap; gap: 5px; }
.ref-tags span { font-size: 0.7rem; background: var(--off-white); color: var(--text-muted); border: 1px solid var(--border); padding: 2px 7px; border-radius: 999px; }
.ref-link { font-size: 0.74rem; color: var(--green); font-weight: 600; margin-top: auto; transition: color var(--transition); }
.ref-link:hover { color: var(--green-dark); text-decoration: underline; }
.ref-note { text-align: center; margin-top: 28px; font-size: 0.8rem; color: var(--text-muted); font-style: italic; }

/* ===== ABOUT / WHY ===== */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-text .section-header { text-align: left; margin-bottom: 24px; }
.why-desc { color: rgba(255,255,255,0.6); margin-bottom: 18px; line-height: 1.7; font-size: 0.95rem; }
.why-points { display: flex; flex-direction: column; gap: 20px; }
.why-point { display: flex; gap: 14px; align-items: flex-start; }
.why-check { width: 26px; height: 26px; border-radius: 50%; background: rgba(107,175,138,0.2); color: var(--sage); display: flex; align-items: center; justify-content: center; font-size: 0.82rem; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.why-point strong { color: var(--white); display: block; margin-bottom: 3px; font-size: 0.92rem; }
.why-point p { color: rgba(255,255,255,0.5); font-size: 0.855rem; }
.why-stats-block { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.big-stat { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); padding: 40px 28px; display: flex; flex-direction: column; align-items: center; text-align: center; transition: background var(--transition); }
.big-stat:hover { background: rgba(107,175,138,0.08); }
.big-num  { font-size: 2.8rem; font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 8px; }
.big-num span { color: var(--gold); }
.big-label { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

/* ===== PARTNERS ===== */
.partners-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.partner-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 16px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; text-align: center; transition: all var(--transition); min-height: 100px; }
.partner-card:hover { border-color: var(--green); box-shadow: var(--shadow); transform: translateY(-2px); }
.partner-logo-svg { width: 48px; height: 32px; display: flex; align-items: center; justify-content: center; }
.partner-logo-svg svg { max-width: 48px; max-height: 32px; }
.partner-name { font-size: 0.76rem; font-weight: 700; color: var(--text-muted); }

/* ===== CTA BANNER ===== */
.cta-banner { background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%); padding: 80px 0; }
.cta-inner  { text-align: center; }
.cta-banner h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 800; color: var(--white); margin-bottom: 12px; }
.cta-banner p  { color: rgba(255,255,255,0.72); margin-bottom: 32px; font-size: 1.02rem; }
.cta-sub { font-size: 0.8rem !important; color: rgba(255,255,255,0.45) !important; margin-top: 16px !important; margin-bottom: 0 !important; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.contact-info .section-title { margin-bottom: 14px; }
.contact-info > p { color: var(--text-muted); margin-bottom: 32px; line-height: 1.7; }
.contact-details { display: flex; flex-direction: column; gap: 18px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon { font-size: 1.1rem; flex-shrink: 0; width: 40px; height: 40px; background: var(--green-light); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; }
.contact-item strong { display: block; font-weight: 600; margin-bottom: 3px; font-size: 0.875rem; }
.contact-item p { color: var(--text-muted); font-size: 0.855rem; line-height: 1.5; }
.contact-item a { color: var(--green); }
.contact-item a:hover { text-decoration: underline; }
.contact-form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 0.83rem; font-weight: 600; color: var(--text); }
.form-group input, .form-group select, .form-group textarea { padding: 11px 13px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: var(--font); font-size: 0.875rem; color: var(--text); background: var(--white); transition: border-color var(--transition), box-shadow var(--transition); outline: none; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(27,107,58,0.1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: #b0bec5; }
.form-note { font-size: 0.77rem; color: var(--text-muted); text-align: center; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); padding: 64px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-brand .logo { margin-bottom: 14px; display: inline-flex; }
.footer-brand p { color: rgba(255,255,255,0.42); font-size: 0.84rem; line-height: 1.6; margin-bottom: 16px; }
.footer-offices { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.footer-office { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.5); font-size: 0.83rem; }
.footer-office-flag { font-size: 1rem; }
.footer-social { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: rgba(255,255,255,0.06); border-radius: 8px; color: rgba(255,255,255,0.5); transition: all var(--transition); }
.footer-social:hover { background: var(--green); color: var(--white); }
.footer-col h5 { color: var(--white); font-size: 0.82rem; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.07em; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a  { color: rgba(255,255,255,0.42); font-size: 0.84rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--sage); }
.footer-bottom { padding: 18px 0; }
.footer-bottom p { color: rgba(255,255,255,0.22); font-size: 0.76rem; text-align: center; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .svc-grid            { grid-template-columns: repeat(2, 1fr); }
  .focus-row           { grid-template-columns: repeat(2, 1fr); }
  .multicloud-capabilities { grid-template-columns: repeat(2, 1fr); }
  .why-grid            { grid-template-columns: 1fr; gap: 48px; }
  .why-stats-block     { grid-template-columns: repeat(4, 1fr); }
  .partners-grid       { grid-template-columns: repeat(4, 1fr); }
  .footer-inner        { grid-template-columns: 1fr 1fr; }
  .ref-grid            { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .section, .svc-section { padding: 64px 0; }
  .nav-links:not(.open) { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 70px; left: 0; right: 0; background: var(--dark); padding: 20px; border-bottom: 1px solid rgba(255,255,255,0.06); gap: 6px; z-index: 999; }
  .nav-links.open .nav-cta { display: flex; margin-top: 8px; margin-left: 0; }
  .hamburger { display: flex; }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: rgba(255,255,255,0.03); margin-top: 4px; }
  .svc-grid            { grid-template-columns: 1fr; }
  .focus-row           { grid-template-columns: 1fr; }
  .multicloud-capabilities { grid-template-columns: 1fr; }
  .industries-grid     { grid-template-columns: repeat(2, 1fr); }
  .ref-grid            { grid-template-columns: repeat(2, 1fr); }
  .partners-grid       { grid-template-columns: repeat(3, 1fr); }
  .contact-grid        { grid-template-columns: 1fr; gap: 48px; }
  .form-row            { grid-template-columns: 1fr; }
  .contact-form-wrap   { padding: 28px; }
  .why-stats-block     { grid-template-columns: repeat(2, 1fr); }
  .footer-inner        { grid-template-columns: 1fr 1fr; }
  .hero-stats          { gap: 16px; padding: 20px; }
  .stat                { padding: 0 16px; }
  .stat-divider        { display: none; }
  .offering-type       { flex-direction: column; gap: 10px; padding: 24px; }
  .offering-num        { font-size: 2rem; }
  .support-table th, .support-table td { padding: 9px 8px; font-size: 0.76rem; }
  .branch-strip-inner  { gap: 20px; }
  .multicloud-platforms { gap: 8px; }
  .mcp-tile            { min-width: 120px; padding: 14px 16px; }
}

@media (max-width: 480px) {
  .hero-title          { font-size: 2rem; }
  .industries-grid     { grid-template-columns: 1fr; }
  .ref-grid            { grid-template-columns: 1fr; }
  .partners-grid       { grid-template-columns: repeat(2, 1fr); }
  .hero-stats          { flex-direction: column; }
  .footer-inner        { grid-template-columns: 1fr; }
}
