  :root {
    --blue: #1A3C8F;
    --blue-light: #2A5FD4;
    --blue-mid: #1E4DB7;
    --blue-dark: #0D1F4A;
    --blue-navy: #0B1D3A;
    --slate: #4A5568;
    --slate-light: #718096;
    --green: #28A745;
    --green-dark: #1A6B2A;
    --green-light: #38C258;
    --teal: #009688;
    --yellow: #FFD700;
    --yellow-light: #FFE44D;
    --gold: #B8860B;
    --olive: #8B7D20;
    --purple: #4A2FAA;
    --red-dark: #6B1A1A;
    --white: #FFFFFF;
    --off-white: #F0F2F7;
    --light-gray: #E2E8F0;
    --dark: #0A0F1E;
  }

  * { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
  }
  html { 
    scroll-behavior: smooth; 
  }
  body { 
    font-family: 'Open Sans', 
    sans-serif; color: var(--dark); 
    background: var(--white); 
    overflow-x: hidden; 
  }

  /* ===== HEADER ===== */
  header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(253,254,255,0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--light-gray);
    padding: 0 5%; height: 72px;
    display: flex; align-items: center; justify-content: space-between;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  }
  .logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .logo-icon {
    width: 200px; height: 56px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; flex-shrink: 0; background: transparent;
  }
  .logo-icon img { width: 100%; height: 100%; object-fit: contain; object-position: left center; }

  nav { display: flex; align-items: center; gap: 4px; }
  nav a {
    color: rgba(10,15,30,0.75); text-decoration: none;
    font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
    padding: 8px 14px; border-radius: 6px; transition: all 0.2s; text-transform: uppercase;
  }
  nav a:hover { color: var(--blue); background: rgba(26,60,143,0.06); }

  .dropdown { position: relative; }
  .dropdown-menu {
    position: absolute; top: calc(100% + 8px); left: 50%;
    transform: translateX(-50%);
    background: var(--dark); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px; padding: 8px; min-width: 220px;
    opacity: 0; visibility: hidden; transition: all 0.2s;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  }
  .dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; }
  .dropdown-menu a {
    display: block; padding: 10px 16px; border-radius: 6px;
    font-size: 13px; text-transform: none; letter-spacing: 0; color: rgba(255,255,255,0.8);
  }
  .dropdown-menu a:hover { background: rgba(42,95,212,0.3); color: var(--yellow); }

  .btn-demo {
    background: linear-gradient(135deg, var(--blue-mid), var(--blue));
    color: white !important; border-radius: 8px !important;
    padding: 10px 22px !important; font-weight: 700 !important;
    transition: all 0.2s !important; box-shadow: 0 4px 15px rgba(42,95,212,0.35);
    letter-spacing: 0.3px;
  }
  .btn-demo:hover {
    transform: translateY(-1px); box-shadow: 0 6px 20px rgba(42,95,212,0.5) !important;
    background: linear-gradient(135deg, var(--blue-light), var(--blue-mid)) !important;
  }

  /* ===== HERO ===== */
  #home {
    min-height: 100vh;
    background: linear-gradient(160deg, #0B1D3A 0%, #0D2460 45%, #0E2050 100%);
    position: relative; display: flex; align-items: center; overflow: hidden; padding-top: 72px;
  }
  .hero-grid {
    position: absolute; inset: 0; opacity: 0.03;
    background-image: linear-gradient(rgba(255,255,255,1) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px);
    background-size: 50px 50px;
  }
  .hero-content {
    position: relative; z-index: 2; max-width: 1200px; margin: 0 auto;
    padding: 80px 5%; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,215,0,0.18); border: 1.5px solid rgba(255,215,0,0.45);
    border-radius: 50px; padding: 7px 18px;
    font-size: 12px; font-weight: 700; color: var(--yellow);
    letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 28px;
  }
  .badge-dot { width: 7px; height: 7px; background: var(--yellow); border-radius: 50%; animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

  .hero-headline {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(40px, 5.5vw, 68px); font-weight: 900;
    color: white; line-height: 1.08; margin-bottom: 22px; letter-spacing: -1px;
  }
  .hero-headline .accent { color: var(--yellow); }
  .hero-sub { font-size: 15px; line-height: 1.75; color: rgba(255,255,255,0.65); margin-bottom: 36px; max-width: 460px; }
  .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 0; }

  .btn-primary {
    background: var(--yellow); color: var(--dark);
    padding: 14px 28px; border-radius: 8px; font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: 14px; text-decoration: none; letter-spacing: 0.3px;
    transition: all 0.2s; box-shadow: 0 6px 20px rgba(255,215,0,0.3);
    display: inline-flex; align-items: center; gap: 8px; border: none; cursor: pointer;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,215,0,0.45); background: var(--yellow-light); }

  /* Hero stats */
  .hero-stats { display: flex; gap: 36px; margin-top: 38px; }
  .stat { text-align: left; }
  .stat-num { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 32px; color: var(--yellow); line-height: 1; }
  .stat-label { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

  /* Hero product card */
  .cloud-card {
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px; padding: 32px; backdrop-filter: blur(12px);
  }
  .cloud-title {
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 12px;
    color: var(--yellow); letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 20px;
  }
  .product-cards-mini { display: flex; flex-direction: column; gap: 12px; }
  .product-mini {
    background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px; padding: 16px 18px; display: flex; align-items: center; gap: 16px;
    transition: all 0.2s; cursor: pointer;
  }
  .product-mini:hover { background: rgba(255,255,255,0.15); transform: translateX(4px); }
  .product-mini-icon {
    width: 44px; height: 44px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0;
  }
  .pm-green { background: rgba(40,167,69,0.25); border: 1px solid rgba(40,167,69,0.4); }
  .pm-blue  { background: rgba(42,95,212,0.25); border: 1px solid rgba(42,95,212,0.4); }
  .pm-gold  { background: rgba(184,134,11,0.25); border: 1px solid rgba(184,134,11,0.4); }
  .product-mini-info h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; color: white; }
  .product-mini-info p  { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }

  /* ===== COMMON SECTION STYLES ===== */
  section { padding: 90px 5%; }
  .section-container { max-width: 1200px; margin: 0 auto; }

  /* Pill tag — outlined style from screenshots */
  .section-tag {
    display: inline-block;
    background: transparent;
    color: var(--blue);
    border: 1.5px solid var(--blue);
    border-radius: 50px; padding: 5px 18px;
    font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px;
  }
  .section-title {
    font-family: 'Montserrat', sans-serif; font-weight: 800;
    font-size: clamp(28px, 4vw, 44px); color: var(--blue-dark); line-height: 1.15; margin-bottom: 14px;
  }
  .section-title .highlight { color: var(--blue-light); }
  .section-desc { font-size: 15px; line-height: 1.75; color: var(--slate); max-width: 620px; }

  /* ===== ABOUT ===== */
  #about { background: var(--off-white); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

  /* Left card — large "2000" with stacked highlight rows */
  .about-main-card {
    background: linear-gradient(160deg, #0A1A50 0%, #0F2575 60%, #132E8E 100%);
    border-radius: 22px; padding: 44px 40px; color: white;
    position: relative; overflow: hidden;
    box-shadow: 0 24px 60px rgba(10,26,80,0.4);
  }
  .about-main-card::after {
    content: ''; position: absolute; top: -60px; right: -60px;
    width: 220px; height: 220px; background: rgba(255,255,255,0.04); border-radius: 50%;
  }
  .about-year {
    font-family: 'Montserrat', sans-serif; font-weight: 900;
    font-size: 80px; color: var(--yellow); line-height: 1; letter-spacing: -3px;
  }
  .about-year-label { font-size: 14px; color: rgba(255,255,255,0.7); margin-top: 6px; margin-bottom: 28px; line-height: 1.5; }
  .about-highlights { display: flex; flex-direction: column; gap: 10px; }
  .highlight-row {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 12px; padding: 14px 20px;
    display: flex; align-items: center; gap: 18px;
  }
  .highlight-row h4 {
    font-family: 'Montserrat', sans-serif; font-weight: 900;
    font-size: 28px; color: var(--yellow); min-width: 80px; line-height: 1;
  }
  .highlight-row p { font-size: 13px; color: rgba(255,255,255,0.72); line-height: 1.4; }

  .about-content .section-tag { margin-bottom: 12px; }
  .about-content h2 { margin-bottom: 20px; }
  .about-content p { font-size: 15px; line-height: 1.85; color: var(--slate); margin-bottom: 16px; }
  .about-content p strong { color: var(--blue-dark); }

  /* ===== MISSION + WHY CHOOSE US (side by side) ===== */
  #mission { background: var(--off-white); padding-top: 0; }
  .mission-benefits-wrapper {
    display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start;
  }
  .mv-side-header { 
    text-align: center; 
    margin-bottom: 26px; 
  }
  .mv-side-title {
    font-family: 'Montserrat', sans-serif; font-weight: 800;
    font-size: 26px; color: var(--blue-dark); margin-bottom: 10px;
  }
  .mv-side-desc { font-size: 13px; color: var(--slate); line-height: 1.65; }

  /* Mission/Vision cards */
  .mv-stacked { display: flex; flex-direction: column; gap: 16px; }
  .mv-card {
    background: linear-gradient(145deg, #0F2270 0%, #1535A0 100%);
    border-radius: 16px; padding: 28px 26px;
    color: white; position: relative; overflow: hidden;
    transition: transform 0.25s;
  }
  .mv-card:hover { transform: translateY(-3px); }
  .mv-card::before {
    content: ''; position: absolute; top: -40px; right: -40px;
    width: 150px; height: 150px; border-radius: 50%;
    background: rgba(255,255,255,0.04);
  }
  .mv-card-top { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; position: relative; z-index: 1; }
  .mv-emoji { font-size: 28px; }
  .mv-label {
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px;
    color: var(--yellow); border-bottom: 2px solid var(--yellow); padding-bottom: 2px; display: inline-block;
  }
  .mv-card h3 {
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px;
    color: white; margin-bottom: 8px; position: relative; z-index: 1; line-height: 1.3;
  }
  .mv-card p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.68); position: relative; z-index: 1; }

  /* Why Choose Us — 2x2 benefit grid on right */
  .benefits-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .benefit-v2 {
    background: linear-gradient(145deg, #0F2270 0%, #1A3AA8 100%);
    border-radius: 16px; padding: 26px 20px; text-align: center;
    color: white; transition: transform 0.25s, box-shadow 0.25s;
  }
  .benefit-v2:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(15,34,112,0.35); }
  .benefit-circle {
    width: 58px; height: 58px;
    background: rgba(255,255,255,0.12); border: 2px solid rgba(255,255,255,0.22);
    border-radius: 50%; margin: 0 auto 14px;
    display: flex; align-items: center; justify-content: center; font-size: 22px;
  }
  .benefit-v2 h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px; color: var(--yellow); margin-bottom: 8px; }
  .benefit-v2 p { font-size: 12px; line-height: 1.65; color: rgba(255,255,255,0.65); }

  /* ===== PRODUCTS ===== */
  #products { background: var(--off-white); }
  .products-header { text-align: center; margin-bottom: 50px; }
  .products-header .section-tag { border-color: var(--blue); }
  .products-header .section-title { font-size: clamp(28px,4.5vw,48px); }
  .products-header .section-desc { margin: 0 auto; font-size: 15px; }
  .products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

  .product-card { border-radius: 20px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; background: white; border: 1px solid var(--light-gray); }
  .product-card:hover { transform: translateY(-6px); box-shadow: 0 24px 70px rgba(0,0,0,0.11); }
  .product-card-header { padding: 36px 32px 28px; position: relative; overflow: hidden; }
  .pc-green .product-card-header { background: linear-gradient(150deg, #1A6B2A 0%, #2E9140 100%); }
  .pc-blue  .product-card-header { background: linear-gradient(150deg, #0D1F50 0%, #1A3C8F 100%); }
  .pc-gold  .product-card-header { background: linear-gradient(150deg, #7A6200 0%, #B89500 100%); }
  .product-card-header::before { content:''; position:absolute; top:-40px; right:-40px; width:150px; height:150px; background:rgba(255,255,255,0.07); border-radius:50%; }
  .product-icon-wrap { font-size: 36px; margin-bottom: 14px; }
  .product-tag-label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.65); font-weight: 600; margin-bottom: 6px; }
  .product-name { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 28px; color: white; }
  .product-tagline { font-size: 13px; color: rgba(255,255,255,0.75); margin-top: 4px; font-style: italic; }
  .product-card-body { padding: 28px 32px; }
  .product-desc { font-size: 13px; line-height: 1.75; color: var(--slate); margin-bottom: 18px; font-weight: 600; }
  .product-features { list-style: none; margin-bottom: 24px; }
  .product-features li { font-size: 13px; color: var(--slate); padding: 7px 0; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--light-gray); }
  .product-features li:last-child { border-bottom: none; }
  .feat-bullet { font-size: 9px; color: var(--slate-light); }
  .btn-learn {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px;
    text-decoration: none; padding: 10px 22px; border-radius: 8px; transition: all 0.2s; border: 1.5px solid;
  }
  .btn-learn-green { color: var(--green); border-color: var(--green); }
  .btn-learn-green:hover { background: var(--green); color: white; }
  .btn-learn-blue  { color: var(--blue); border-color: var(--blue); }
  .btn-learn-blue:hover  { background: var(--blue); color: white; }
  .btn-learn-gold  { color: var(--gold); border-color: var(--gold); }
  .btn-learn-gold:hover  { background: var(--gold); color: white; }

  /* ===== PRODUCT DEEP DIVES ===== */
  .deep-dive { padding: 80px 5%; }
  .deep-dive-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1200px; margin: 0 auto; }
  .deep-dive-inner.reverse { direction: rtl; }
  .deep-dive-inner.reverse > * { direction: ltr; }

  /* eGradebook — white bg, green theme */
  #egradebook { background: white; }
  .dd-tag-green { display: inline-block; background: rgba(40,167,69,0.1); color: var(--green); border: 1.5px solid rgba(40,167,69,0.3); border-radius: 50px; padding: 5px 16px; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; }
  .dd-title-green { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(28px,3.5vw,42px); color: var(--dark); margin-bottom: 16px; line-height: 1.15; }
  .dd-title-green span { color: var(--green); }
  .dd-desc { font-size: 15px; line-height: 1.8; color: var(--slate); margin-bottom: 20px; }

  .chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
  .chip { font-size: 11px; padding: 5px 14px; border-radius: 20px; font-weight: 600; }
  .chip-green  { background: rgba(40,167,69,0.1); color: var(--green); border: 1px solid rgba(40,167,69,0.25); }
  .chip-blue   { background: rgba(26,60,143,0.08); color: var(--blue); border: 1px solid rgba(26,60,143,0.2); }
  .chip-gold   { background: rgba(184,134,11,0.1); color: var(--gold); border: 1px solid rgba(184,134,11,0.3); }
  .chip-purple { background: rgba(74,47,170,0.1); color: var(--purple); border: 1px solid rgba(74,47,170,0.25); }

  /* Green visual panel */
  .visual-panel-green {
    background: linear-gradient(145deg, #1A6020 0%, #258030 60%, #2E9540 100%);
    border-radius: 20px; padding: 32px; color: white;
  }
  .visual-panel-title { font-family:'Montserrat',sans-serif; font-weight:700; font-size:14px; color:rgba(255,255,255,0.85); margin-bottom:20px; }
  .stakeholder-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 18px; }
  .stakeholder-box {
    background: rgba(255,255,255,0.15); border-radius: 12px; padding: 20px 14px; text-align: center;
    border: 1px solid rgba(255,255,255,0.15);
  }
  .stakeholder-box .sh-icon { font-size: 28px; margin-bottom: 8px; }
  .stakeholder-box p { font-size: 13px; font-weight: 700; color: white; }
  .stat-note {
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px; padding: 14px 16px;
  }
  .stat-note p { font-size: 12px; color: rgba(255,255,255,0.85); line-height: 1.6; font-weight: 600; }

  /* HR Manager — light grey bg, indigo/purple theme */
  #hrmanager { background: var(--off-white); }
  .dd-tag-blue { display: inline-block; background: rgba(74,47,170,0.1); color: var(--purple); border: 1.5px solid rgba(74,47,170,0.3); border-radius: 50px; padding: 5px 16px; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; }
  .dd-title-blue { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(28px,3.5vw,42px); color: var(--dark); margin-bottom: 16px; line-height: 1.15; }
  .dd-title-blue span { color: var(--blue-light); }

  .visual-panel-indigo {
    background: linear-gradient(145deg, #1A1A5E 0%, #1E2070 60%, #232885 100%);
    border-radius: 20px; padding: 32px; color: white;
  }
  .flow-step-row { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
  .flow-step-item {
    background: rgba(255,255,255,0.1); border-radius: 10px; padding: 14px 18px;
    display: flex; align-items: center; gap: 14px; border: 1px solid rgba(255,255,255,0.1); font-size: 14px; font-weight: 600;
  }
  .flow-num { width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,0.18); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; }
  .flow-arrow-down { text-align: center; font-size: 14px; opacity: 0.35; margin: -2px 0; }

  /* iBRGY — white bg, golden/olive theme */
  #ibrgy { background: white; }
  .dd-tag-gold { display: inline-block; background: rgba(184,134,11,0.12); color: var(--gold); border: 1.5px solid rgba(184,134,11,0.35); border-radius: 50px; padding: 5px 16px; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; }
  .dd-title-gold { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(28px,3.5vw,42px); color: var(--dark); margin-bottom: 16px; line-height: 1.15; }
  .dd-title-gold span { color: #C8960A; }

  .visual-panel-gold {
    background: linear-gradient(145deg, #8B7200 0%, #A88800 60%, #C8A400 100%);
    border-radius: 20px; padding: 32px; color: white;
  }
  .exec-mod-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 14px 0; }
  .exec-mod-box {
    background: rgba(255,255,255,0.18); border-radius: 10px; padding: 16px 10px;
    text-align: center; border: 1px solid rgba(255,255,255,0.2);
  }
  .exec-mod-box .em-icon { font-size: 24px; margin-bottom: 6px; }
  .exec-mod-box p { font-size: 12px; font-weight: 700; color: rgba(0,0,0,0.8); }

  .ibrgy-stat-note {
    background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.3);
    border-radius: 10px; padding: 14px 16px; margin-top: 4px;
  }
  .ibrgy-stat-note p { font-size: 12px; color: rgba(0,0,0,0.75); line-height: 1.6; font-weight: 600; }

  /* ===== INDUSTRY SOLUTIONS ===== */
  #industry { background: var(--off-white); }
  .industry-header { text-align: center; margin-bottom: 50px; }
  .industry-header .section-desc { margin: 0 auto; }
  .industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .industry-card { border-radius: 20px; overflow: hidden; border: 1px solid var(--light-gray); transition: transform 0.3s, box-shadow 0.3s; background: white; }
  .industry-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
  .industry-card-header { padding: 30px 28px 26px; position: relative; overflow: hidden; }
  .ic-teal    { background: linear-gradient(135deg, #007068, #00968A); }
  .ic-blue    { background: linear-gradient(135deg, #1A2E8E, #2A45C8); }
  .ic-purple  { background: linear-gradient(135deg, #3A2296, #5432C8); }
  .industry-card-header::before { content:''; position:absolute; top:-30px; right:-30px; width:120px; height:120px; background:rgba(255,255,255,0.06); border-radius:50%; }
  .ic-icon { font-size: 34px; margin-bottom: 14px; position: relative; z-index: 1; }
  .ic-name { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 20px; color: white; position: relative; z-index: 1; line-height: 1.2; }
  .industry-card-body { padding: 26px 28px; }
  .industry-list { list-style: none; }
  .industry-list li { font-size: 13px; color: var(--slate); padding: 9px 0; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--light-gray); }
  .industry-list li:last-child { border-bottom: none; }
  .industry-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
  .id-teal   { background: var(--teal); }
  .id-blue   { background: var(--blue-light); }
  .id-purple { background: var(--purple); }

  /* ===== PORTFOLIO ===== */
  #portfolio { background: var(--off-white); }
  .portfolio-header { text-align: center; margin-bottom: 40px; }
  .portfolio-header .section-desc { margin: 0 auto; max-width: 700px; }
  .portfolio-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
  .ptab {
    background: white; border: 1.5px solid var(--light-gray);
    border-radius: 50px; padding: 10px 26px;
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px;
    color: var(--slate); cursor: pointer; transition: all 0.2s; letter-spacing: 0.3px;
  }
  .ptab.active { background: var(--blue); border-color: var(--blue); color: white; box-shadow: 0 4px 15px rgba(26,60,143,0.3); }
  .ptab:hover:not(.active) { border-color: var(--blue); color: var(--blue); }
  .portfolio-pane { display: none; }
  .portfolio-pane.active { display: block; }

  /* MID Hero Banner */
  .mid-hero {
    background: linear-gradient(150deg, #0A1840 0%, #0D2260 55%, #112880 100%);
    border-radius: 22px; padding: 50px 48px; color: white;
    position: relative; overflow: hidden; margin-bottom: 40px;
  }
  .mid-hero::before { content:''; position:absolute; top:-80px; right:-80px; width:300px; height:300px; background:rgba(42,95,212,0.18); border-radius:50%; }
  .mid-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,215,0,0.15); border: 1px solid rgba(255,215,0,0.35);
    border-radius: 8px; padding: 6px 16px;
    font-size: 11px; font-weight: 700; color: var(--yellow);
    letter-spacing: 1px; text-transform: uppercase; margin-bottom: 22px;
  }
  .mid-hero h3 { font-family:'Montserrat',sans-serif; font-weight:900; font-size:clamp(22px,2.8vw,34px); margin-bottom:14px; line-height:1.2; }
  .mid-hero h3 span { color: var(--yellow); }
  .mid-hero > p { font-size:14px; line-height:1.75; opacity:0.8; max-width:720px; margin-bottom:34px; }
  .mid-impact { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
  .mid-impact-item { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 22px 18px; text-align: center; }
  .mii-icon { font-size: 26px; margin-bottom: 10px; }
  .mid-impact-item h4 { font-family:'Montserrat',sans-serif; font-weight:700; font-size:13px; color:var(--yellow); margin-bottom:8px; }
  .mid-impact-item p { font-size:12px; opacity:0.7; line-height:1.55; }

  /* MID Capabilities */
  .mid-section-title { font-family:'Montserrat',sans-serif; font-weight:800; font-size:22px; color:var(--dark); margin-bottom:8px; }
  .mid-section-desc { font-size:14px; color:var(--slate); margin-bottom:24px; line-height:1.7; }
  .mid-caps { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-bottom: 40px; }
  .mid-cap {
    background: white; border: 1px solid var(--light-gray); border-radius: 16px; padding: 24px;
    display: flex; gap: 16px; align-items: flex-start; transition: all 0.2s;
  }
  .mid-cap:hover { border-color: var(--blue-light); box-shadow: 0 6px 20px rgba(42,95,212,0.1); transform: translateY(-2px); }
  .mid-cap-icon { width: 48px; height: 48px; background: rgba(26,60,143,0.08); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
  .mid-cap h4 { font-family:'Montserrat',sans-serif; font-weight:700; font-size:14px; color:var(--blue-dark); margin-bottom:6px; }
  .mid-cap p { font-size:13px; color:var(--slate); line-height:1.65; }

  /* Insurer section */
  .insurer-section h3 { font-family:'Montserrat',sans-serif; font-weight:800; font-size:22px; color:var(--dark); margin-bottom:8px; }
  .insurer-section > p { font-size:14px; color:var(--slate); margin-bottom:24px; line-height:1.7; }
  .insurer-groups { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
  .insurer-group { background: white; border: 1px solid var(--light-gray); border-radius: 16px; padding: 24px; }
  .insurer-group-title { font-family:'Montserrat',sans-serif; font-weight:700; font-size:11px; color:var(--blue); letter-spacing:1.2px; text-transform:uppercase; margin-bottom:14px; padding-bottom:10px; border-bottom:2px solid var(--light-gray); }
  .insurer-list { list-style:none; }
  .insurer-list li { font-size:13px; color:var(--slate); padding:7px 0; display:flex; align-items:center; gap:8px; border-bottom:1px solid rgba(0,0,0,0.04); }
  .insurer-list li:last-child { border-bottom:none; }
  .insurer-list li::before { content:''; width:6px; height:6px; background:var(--blue-light); border-radius:50%; flex-shrink:0; }

  /* Digital Platforms */
  .platform-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
  .platform-card { border-radius: 20px; overflow: hidden; border: 1px solid var(--light-gray); transition: all 0.3s; background: white; }
  .platform-card:hover { transform: translateY(-5px); box-shadow: 0 18px 50px rgba(0,0,0,0.1); }
  .pcard-header { padding: 28px 26px; position: relative; overflow: hidden; }
  .pcard-bakas  { background: linear-gradient(145deg, #0D1E60, #1A3090); }
  .pcard-hr     { background: linear-gradient(145deg, #5A0A0A, #8B1A1A); }
  .pcard-martial{ background: linear-gradient(145deg, #3A0A6E, #5820A8); }
  .pcard-header::before { content:''; position:absolute; top:-30px; right:-30px; width:120px; height:120px; background:rgba(255,255,255,0.06); border-radius:50%; }
  .pcard-icon { font-size: 32px; margin-bottom: 12px; position: relative; z-index: 1; }
  .pcard-status { display: inline-block; border-radius: 20px; padding: 3px 12px; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; position: relative; z-index: 1; }
  .ps-live { background: rgba(40,167,69,0.25); border: 1px solid rgba(40,167,69,0.5); color: #7CFC00; }
  .ps-saas { background: rgba(255,150,0,0.25); border: 1px solid rgba(255,150,0,0.5); color: #FFB830; }
  .ps-dev  { background: rgba(255,215,0,0.2); border: 1px solid rgba(255,215,0,0.4); color: var(--yellow); }
  .pcard-header h3 { font-family:'Montserrat',sans-serif; font-weight:900; font-size:22px; color:white; margin-bottom:4px; position:relative; z-index:1; }
  .pcard-header p  { font-size:12px; opacity:0.7; color:white; position:relative; z-index:1; }
  .pcard-body { padding: 22px 26px; }
  .pcard-body > p { font-size:13px; color:var(--slate); line-height:1.7; margin-bottom:16px; }
  .pcard-features { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
  .pf-item { background: var(--off-white); border: 1px solid var(--light-gray); border-radius: 8px; padding: 10px 12px; display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: var(--slate); }
  .pf-icon { font-size: 14px; }
  .pcard-clients h5 { font-family:'Montserrat',sans-serif; font-weight:700; font-size:10px; color:var(--blue); letter-spacing:1.2px; text-transform:uppercase; margin-bottom:8px; }
  .client-chips { display: flex; flex-wrap: wrap; gap: 6px; }
  .client-chip { background: rgba(26,60,143,0.07); border: 1px solid rgba(26,60,143,0.15); color: var(--blue); font-size: 11px; padding: 3px 10px; border-radius: 20px; font-weight: 600; }

  /* Core Services */
  .services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 40px; }
  .service-card { background: white; border: 1px solid var(--light-gray); border-radius: 16px; padding: 28px; transition: all 0.2s; }
  .service-card:hover { border-color: var(--blue-light); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(42,95,212,0.09); }
  .service-icon-wrap { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
  .si-blue   { background: rgba(26,60,143,0.08); }
  .si-green  { background: rgba(40,167,69,0.08); }
  .si-yellow { background: rgba(255,215,0,0.1); }
  .service-card h3 { font-family:'Montserrat',sans-serif; font-weight:700; font-size:15px; color:var(--blue-dark); margin-bottom:10px; }
  .service-card > p { font-size:13px; color:var(--slate); line-height:1.7; margin-bottom:14px; }
  .service-examples { list-style: none; }
  .service-examples li { font-size:13px; color:var(--slate-light); padding:4px 0; display:flex; align-items:center; gap:6px; }
  .service-examples li::before { content:'→'; color:var(--blue-light); font-weight:700; }

  /* ===== QUOTE FORM ===== */
  #quote { background: var(--off-white); }
  .quote-header { text-align: center; margin-bottom: 36px; }
  .quote-header .section-tag { border-color: var(--blue); }
  .quote-header h2 { font-family:'Montserrat',sans-serif; font-weight:900; font-size:clamp(28px,4vw,44px); color:var(--dark); margin-bottom:10px; line-height:1.1; }
  .quote-header h2 span { color: var(--blue-light); }
  .quote-header p { font-size:14px; color:var(--slate); }
  .quote-form-box {
    background: white; border-radius: 20px; padding: 44px 48px;
    border: 1px solid var(--light-gray); max-width: 860px; margin: 0 auto 30px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .form-group { margin-bottom: 20px; }
  .form-group label { display:block; font-size:11px; font-weight:700; color:var(--slate); letter-spacing:1px; text-transform:uppercase; margin-bottom:8px; }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%; border: 1.5px solid var(--light-gray); border-radius: 8px;
    padding: 12px 16px; font-family: 'Open Sans', sans-serif; font-size: 14px;
    color: var(--dark); transition: border-color 0.2s; outline: none; background: white;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--blue-light); box-shadow: 0 0 0 3px rgba(42,95,212,0.08);
  }
  .form-group textarea { height: 100px; resize: vertical; }
  .form-section-title {
    font-family:'Montserrat',sans-serif; font-weight:700; font-size:12px;
    color:var(--blue); letter-spacing:1px; text-transform:uppercase;
    margin: 22px 0 12px; padding-bottom:8px; border-bottom:2px solid var(--light-gray);
  }
  .checkbox-group { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 8px; }
  .checkbox-item {
    flex: 1; min-width: 200px; display: flex; align-items: center; gap: 12px;
    background: var(--off-white); border-radius: 8px; padding: 14px 16px;
    cursor: pointer; border: 1.5px solid var(--light-gray); transition: all 0.2s;
  }
  .checkbox-item:hover { border-color: var(--blue-light); background: rgba(42,95,212,0.03); }
  .checkbox-item input[type="checkbox"] { width: 18px; height: 18px; cursor: pointer; accent-color: var(--blue-light); }
  .checkbox-item label { cursor:pointer; font-size:14px; color:var(--dark); font-weight:700; }
  .checkbox-item label span { display:block; font-size:11px; color:var(--slate-light); font-weight:400; }
  .btn-submit {
    width: 100%; padding: 16px; margin-top: 10px;
    background: linear-gradient(135deg, var(--blue-light), var(--blue));
    color: white; border: none; border-radius: 10px;
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px;
    cursor: pointer; letter-spacing: 0.5px; transition: all 0.2s;
    box-shadow: 0 6px 20px rgba(42,95,212,0.35); display: flex; align-items: center; justify-content: center; gap: 10px;
  }
  .btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(42,95,212,0.45); }
  .quote-contacts { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; max-width: 860px; margin: 0 auto; }
  .qc-item {
    background: white; border: 1.5px solid var(--light-gray); border-radius: 12px;
    padding: 16px 20px; display: flex; align-items: center; gap: 12px;
    font-size: 14px; font-weight: 700; color: var(--dark);
  }
  .qc-icon { font-size: 18px; }
  .success-msg { display:none; text-align:center; padding:20px; background:rgba(40,167,69,0.1); border:1px solid rgba(40,167,69,0.3); border-radius:10px; color:var(--green); font-weight:600; margin-top:14px; }

  /* ===== CONTACT ===== */
  #contact { background: var(--off-white); }
  .contact-section-header { text-align: center; margin-bottom: 36px; }
  .contact-section-header .section-tag { border-color: var(--blue); }
  .contact-section-header h2 { font-family:'Montserrat',sans-serif; font-weight:800; font-size:clamp(26px,3.5vw,38px); color:var(--dark); }
  .contact-section-header h2 span { color: var(--blue-light); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

  /* Dark blue contact cards */
  .contact-card-blue {
    background: linear-gradient(145deg, #1A3FA8 0%, #0E2870 60%, #0A1C55 100%);
    border-radius: 20px; padding: 38px; color: white; position: relative; overflow: hidden;
    box-shadow: 0 16px 50px rgba(10,28,85,0.3);
  }
  .contact-card-blue::before { content:''; position:absolute; top:-60px; right:-60px; width:200px; height:200px; background:rgba(255,255,255,0.04); border-radius:50%; }
  .cc-icon-wrap { width: 52px; height: 52px; background: rgba(220,50,30,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 18px; position: relative; z-index: 1; }
  .contact-card-blue h3 { font-family:'Montserrat',sans-serif; font-weight:800; font-size:22px; margin-bottom:8px; position:relative; z-index:1; }
  .contact-card-blue > p { font-size:13px; color:rgba(255,255,255,0.65); margin-bottom:22px; position:relative; z-index:1; line-height:1.6; }
  .contact-links { display: flex; flex-direction: column; gap: 10px; position: relative; z-index: 1; }
  .contact-link {
    display: flex; align-items: center; gap: 14px;
    background: rgba(255,255,255,0.13); border-radius: 10px; padding: 14px 18px;
    border: 1px solid rgba(255,255,255,0.14); transition: all 0.2s; text-decoration: none;
  }
  .contact-link:hover { background: rgba(255,215,0,0.15); border-color: rgba(255,215,0,0.35); }
  .cl-label { font-size:10px; text-transform:uppercase; letter-spacing:1px; color:rgba(255,255,255,0.55); font-weight:700; }
  .cl-value { font-size:14px; font-weight:700; color:white; margin-top:2px; }

  /* ===== FOOTER ===== */
  footer { background: #07101E; padding: 54px 5% 30px; }
  .footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .footer-brand { max-width: 300px; }
  .footer-logo-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
  .footer-logo-img { width: 120px; height: 40px; object-fit: contain; object-position: left; }
  .footer-brand-name { font-family:'Montserrat',sans-serif; font-weight:700; font-size:13px; color:white; line-height:1.3; }
  .footer-brand-est { color: var(--yellow); font-size:11px; font-weight:700; letter-spacing:1px; }
  .footer-brand p { font-size:13px; color:rgba(255,255,255,0.42); line-height:1.75; }
  .footer-col h4 { font-family:'Montserrat',sans-serif; font-weight:700; font-size:11px; color:var(--yellow); letter-spacing:1.5px; text-transform:uppercase; margin-bottom:16px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .footer-col ul li a { font-size:13px; color:rgba(255,255,255,0.48); text-decoration:none; transition:color 0.2s; }
  .footer-col ul li a:hover { color: white; }
  .footer-col p { font-size:13px; color:rgba(255,255,255,0.48); margin-bottom:6px; }
  .footer-col a { color: rgba(255,255,255,0.65); text-decoration: none; }
  .footer-col a:hover { color: var(--yellow); }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size:12px; color:rgba(255,255,255,0.28); }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    .hero-content, .about-grid, .products-grid, .industry-grid,
    .mission-benefits-wrapper, .benefits-2col, .contact-grid,
    .deep-dive-inner, .mid-impact, .mid-caps, .insurer-groups,
    .platform-grid, .services-grid, .tech-categories,
    .quote-contacts, .footer-top { grid-template-columns: 1fr; }
    .deep-dive-inner.reverse { direction: ltr; }
    nav { display: none; }
    .form-row { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .logo-icon { width: 120px; height: 40px; }
    .checkbox-group { flex-direction: column; }
  }

  /* ===== ANIMATIONS ===== */
  .fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s, transform 0.6s; }
  .fade-up.visible { opacity: 1; transform: translateY(0); }
