/* ================================================== VARIABLES & RESET ================================================== */ 
:root { --primary: #0056d2; --primary-dark: #002d62; --accent: #0ea5e9; --bg-light: #f8fafc; --bg-soft: #f1f5f9; --text-dark: #0b1f38; --text-muted: #475569; --border: #e2e8f0; --white: #ffffff; } * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Inter', sans-serif; background: var(--bg-light); color: var(--text-dark); line-height: 1.7; } 
/* ================================================== CONTAINER ================================================== */
 .container { width: 92%; max-width: 1240px; margin: auto; }
 /* ================================================== BUTTONS ================================================== */
 .btn { padding: 14px 30px; border-radius: 10px; font-weight: 600; text-decoration: none; display: inline-block; transition: all 0.3s ease; } .btn.primary { background: linear-gradient(135deg, var(--primary), var(--accent)); color: var(--white); box-shadow: 0 14px 32px rgba(0, 86, 210, 0.35); } .btn.primary:hover { transform: translateY(-2px); box-shadow: 0 20px 42px rgba(0, 86, 210, 0.45); } .btn.large { padding: 16px 38px; font-size: 17px; } 
/* ============================================================================ HEADER – Clean, Compact, Responsive ============================================================================ */
 .header { width: 100%; padding: 10px 5%; display: flex; align-items: center; justify-content: space-between; background: #ffffff; height: 75px; position: fixed; top: 0; left: 0; z-index: 9999; box-shadow: 0 2px 10px rgba(0,0,0,0.05); } .logo-area { display: flex; align-items: center; } .logo-img { height: 55px; }
 /* ============================================================================ NAVIGATION MENU ============================================================================ */
 .navbar .nav-links { display: flex; list-style: none; gap: 36px; align-items: center; } .navbar ul li { position: relative; } .navbar ul li a { text-decoration: none; font-size: 16px; font-weight: 600; color: #002D62; padding: 8px 0; transition: 0.25s; } .navbar ul li a:hover { color: #0096FF; }
 /* ============================================================================ STABLE DROPDOWN (DESKTOP) ============================================================================ */
 .dropdown { position: relative; } .mega-menu { position: absolute; top: 55px; left: 0; width: 250px; padding: 20px 25px; background: #fff; border-radius: 14px; box-shadow: 0 12px 35px rgba(0,0,0,0.15); opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease; pointer-events: none; } .dropdown:hover .mega-menu, .dropdown.hover-active .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; } .dropdown::after { content: ""; position: absolute; top: 100%; left: 0; width: 250px; height: 25px; } .mega-col h4 { font-size: 15px; font-weight: 700; color: #002D62; margin-bottom: 10px; } .mega-menu a { display: block; margin-bottom: 10px; font-size: 15px; font-weight: 600; color: #002D62; text-decoration: none; transition: 0.2s ease; } .mega-menu a:hover { color: #0096FF; padding-left: 5px; } 
/* ============================================================================ MOBILE MENU ICON ============================================================================ */
 .mobile-menu-icon { display: none; font-size: 32px; cursor: pointer; } /* ============================================================================ MOBILE RESPONSIVE ============================================================================ */ @media (max-width: 900px) { .mobile-menu-icon { display: block; } .navbar .nav-links { position: absolute; top: 75px; left: 0; width: 100%; flex-direction: column; background: #ffffff; padding: 20px 0; max-height: 0; overflow: hidden; opacity: 0; pointer-events: none; transition: all 0.35s ease; } .nav-links.nav-active { max-height: 700px; opacity: 1; pointer-events: auto; border-bottom: 1px solid #eee; } .dropdown:hover .mega-menu { display: none; } .dropdown.open .mega-menu { display: block !important; position: static; opacity: 1 !important; visibility: visible !important; transform: none !important; pointer-events: auto; padding: 12px 20px; background: #f4f8ff; border-radius: 10px; box-shadow: none; } } /* ================================================== SPLIT HERO (TEXT LEFT – IMAGE RIGHT) ================================================== */ .hero-split { background: linear-gradient(135deg, #002d62, #0056b3); padding: 160px 0 120px; color: #ffffff; } .hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; } /* LEFT CONTENT */ .hero-content { max-width: 620px; } .hero-content h1 { font-size: 52px; font-weight: 900; line-height: 1.15; margin: 22px 0; } .hero-content p { font-size: 19px; line-height: 1.7; opacity: 0.95; } /* BADGE */ .badge { display: inline-block; background: rgba(255,255,255,0.15); padding: 8px 22px; border-radius: 40px; font-size: 13px; letter-spacing: 1.2px; font-weight: 600; } /* CTA */ .hero-cta { margin-top: 40px; display: flex; gap: 18px; } /* FORCE BOTH CTA BLUE */ .hero-cta .btn { background: linear-gradient(135deg, #0b84ff, #0056d2); color: #ffffff; padding: 16px 34px; border-radius: 10px; font-weight: 700; text-decoration: none; box-shadow: 0 12px 28px rgba(11,132,255,0.35); transition: all 0.3s ease; } .hero-cta .btn:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(11,132,255,0.45); } /* RIGHT IMAGE */ .hero-media img { width: 100%; border-radius: 22px; box-shadow: 0 30px 70px rgba(0,0,0,0.35); } /* ================================================== MOBILE RESPONSIVE ================================================== */ @media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 50px; text-align: center; } .hero-content { max-width: 100%; } .hero-content h1 { font-size: 36px; } .hero-content p { font-size: 16px; } .hero-cta { justify-content: center; flex-direction: column; } .hero-cta .btn { width: 100%; } } /* ================================================== INTRO ================================================== */ .frameworks-intro { padding: 100px 0 80px; background: var(--white); text-align: center; } .frameworks-intro h2 { font-size: 34px; font-weight: 800; margin-bottom: 14px; } .frameworks-intro p { max-width: 860px; margin: auto; color: var(--text-muted); } /* ================================================== FRAMEWORK GRID ================================================== */ .frameworks-grid-section { padding: 110px 0; } .frameworks-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 34px; } .framework-card { background: var(--white); border-radius: 18px; padding: 34px; border: 1px solid var(--border); box-shadow: 0 20px 40px rgba(2, 8, 23, 0.08); transition: all 0.35s ease; } .framework-card:hover { transform: translateY(-8px); box-shadow: 0 32px 64px rgba(2, 8, 23, 0.12); } .framework-card h3 { font-size: 21px; font-weight: 700; color: var(--primary-dark); margin-bottom: 10px; } .framework-card .flow { display: block; font-size: 13px; font-weight: 600; letter-spacing: 0.02em; color: var(--accent); margin-bottom: 12px; } .framework-card p { font-size: 15.5px; color: #334155; } /* ================================================== USAGE ================================================== */ .frameworks-usage { background: linear-gradient(180deg, var(--white), var(--bg-soft)); padding: 110px 0; text-align: center; } .frameworks-usage h2 { font-size: 34px; font-weight: 800; margin-bottom: 50px; } .usage-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; } .usage-box { background: var(--white); padding: 26px; border-radius: 14px; font-weight: 600; border: 1px solid var(--border); box-shadow: 0 14px 30px rgba(2, 8, 23, 0.08); } /* ================================================== CTA ================================================== */ .frameworks-final-cta { background: linear-gradient(135deg, var(--primary-dark), #001a3a); padding: 120px 0; color: var(--white); text-align: center; } .frameworks-final-cta h2 { font-size: 38px; font-weight: 800; margin-bottom: 14px; } .frameworks-final-cta p { max-width: 760px; margin: auto auto 36px; opacity: 0.9; } /* ================================================== RESPONSIVE ================================================== */ @media (max-width: 768px) { .frameworks-hero h1 { font-size: 32px; } .frameworks-intro h2, .frameworks-usage h2, .frameworks-final-cta h2 { font-size: 28px; } } #responsible-tech { padding: 100px 0 60px; background: #ffffff; } #responsible-tech h2 { font-size: 36px; font-weight: 800; color: #002d62; margin-bottom: 14px; } #responsible-tech p { max-width: 900px; color: #475569; font-size: 17px; } .framework-includes h3, .framework-audience h3, .framework-steps h3, .framework-download h3 { font-size: 28px; font-weight: 800; margin: 60px 0 30px; color: #002d62; } .framework-includes ul { list-style: none; padding: 0; margin: 0; } .framework-includes li { padding: 18px 0; border-bottom: 1px solid #e2e8f0; } .framework-includes li strong { color: #002d62; font-weight: 700; } .framework-audience { margin-top: 40px; } .framework-audience p, .framework-audience span { display: inline-block; margin: 8px 12px 0 0; padding: 10px 16px; background: #f1f5f9; border-radius: 20px; font-weight: 600; font-size: 14px; } .framework-steps ol { padding-left: 18px; } .framework-steps li { margin-bottom: 20px; } .framework-steps li strong { display: block; font-size: 17px; color: #002d62; margin-bottom: 6px; } .framework-download { margin-top: 60px; padding: 60px; background: linear-gradient(135deg, #002d62, #0056b3); border-radius: 20px; color: #ffffff; } .framework-download p { margin-bottom: 24px; opacity: 0.95; } .framework-download form { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; } .framework-download input, .framework-download select { padding: 12px; border-radius: 8px; border: none; font-size: 14px; } .framework-download button { grid-column: span 6; padding: 14px; font-weight: 700; border-radius: 10px; background: #0b84ff; color: #ffffff; border: none; cursor: pointer; } @media (max-width: 768px) { .framework-download form { grid-template-columns: 1fr; } #responsible-tech h2 { font-size: 30px; } .framework-includes h3, .framework-audience h3, .framework-steps h3, .framework-download h3 { font-size: 24px; } } .framework-download h3 { color: #ffffff !important; } /* ============================== PREMIUM DOWNLOAD FORM DESIGN ============================== */ .framework-download { padding: 90px 70px; background: linear-gradient(135deg, #002d62, #0056b3); border-radius: 26px; color: #ffffff; margin: 120px auto; } .framework-download h3 { font-size: 36px; font-weight: 800; margin-bottom: 12px; color: #ffffff; } .framework-download p { font-size: 17px; max-width: 720px; margin-bottom: 38px; opacity: 0.92; } /* FORM GRID */ .gated-form { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; } /* INPUTS */ .gated-form input, .gated-form select { height: 54px; padding: 0 18px; border-radius: 14px; border: none; font-size: 15px; font-weight: 500; background: #ffffff; color: #0b1f38; box-shadow: 0 10px 22px rgba(0,0,0,0.12); transition: all 0.25s ease; } .gated-form input::placeholder { color: #64748b; } /* FOCUS STATE */ .gated-form input:focus, .gated-form select:focus { outline: none; box-shadow: 0 0 0 3px rgba(11,132,255,0.35); } /* CTA BUTTON */ .gated-form button { grid-column: span 6; height: 58px; margin-top: 14px; border-radius: 16px; border: none; background: linear-gradient(135deg, #0b84ff, #22c1ff); color: #ffffff; font-size: 17px; font-weight: 700; cursor: pointer; letter-spacing: 0.3px; box-shadow: 0 20px 40px rgba(11,132,255,0.45); transition: all 0.3s ease; } .gated-form button:hover { transform: translateY(-2px); box-shadow: 0 28px 52px rgba(11,132,255,0.6); } /* ============================== MOBILE OPTIMIZATION ============================== */ @media (max-width: 900px) { .framework-download { padding: 70px 26px; } .framework-download h3 { font-size: 28px; } .gated-form { grid-template-columns: 1fr; } .gated-form button { grid-column: span 1; } } /* ================= REQUEST CALLBACK CTA ================= */ .callback-cta { background: linear-gradient(135deg, #002d62, #0056b3); padding: 90px 0; text-align: center; color: #ffffff; margin-top: 120px; } .callback-cta h2 { font-size: 36px; font-weight: 800; margin-bottom: 10px; } .callback-cta p { font-size: 17px; opacity: 0.9; margin-bottom: 28px; } /* ================= CALLBACK FORM ================= */ .callback-form { padding: 110px 0; background: #ffffff; text-align: center; } .callback-form h2 { font-size: 34px; font-weight: 800; margin-bottom: 10px; color: #002d62; } .callback-form p { margin-bottom: 40px; color: #475569; } .callback-form-grid { max-width: 620px; margin: auto; display: grid; gap: 18px; } .callback-form-grid input { height: 54px; padding: 0 18px; border-radius: 12px; border: 1px solid #cbd5f5; font-size: 15px; } .callback-form-grid input:focus { outline: none; border-color: #0b84ff; box-shadow: 0 0 0 3px rgba(11,132,255,0.25); } .callback-form-grid button { margin-top: 12px; }

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #003b8f, #0056d2);
  padding: 90px 0;
  color: #ffffff;
}

/* GRID LAYOUT */
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

/* LEFT CONTENT */
.hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content p {
  max-width: 520px;
  font-size: 17px;
  color: #e5efff;
  margin-bottom: 32px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* BUTTONS */
.hero-actions {
  display: flex;
  gap: 16px;
}

.btn {
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
}

.btn.primary {
  background: #0ea5e9;
  color: #fff;
}

.btn.secondary {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

/* RIGHT IMAGE */
.hero-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-image {
    margin-top: 40px;
  }
}
