/* ==========================================================================
   قالب الإفصاح التدريبي - Landing Page Standalone
   Full RTL Arabic Landing Page CSS
   ========================================================================== */

/* ============================================
   CSS RESET & BASE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* ==========================================================================
   DESIGN SYSTEM — CSS Custom Properties
   ========================================================================== */
:root {
  --iat-brand: #1c73ba;
  --iat-teal: #17bebc;
  --iat-gold: #ffb300;

  --iat-primary: var(--iat-brand);
  --iat-primary-hover: #155d97;
  --iat-primary-light: rgba(28, 115, 186, 0.08);
  --iat-primary-glow: rgba(28, 115, 186, 0.25);

  --iat-teal-light: rgba(23, 190, 188, 0.12);
  --iat-gold-light: rgba(255, 179, 0, 0.12);
  --iat-navy: #0f172a;
  --iat-navy-light: #1e293b;

  --bg-body: #f8fafc;
  --bg-hero: radial-gradient(at 0% 0%, rgba(28, 115, 186, 0.10) 0, transparent 55%),
    radial-gradient(at 100% 0%, rgba(23, 190, 188, 0.10) 0, transparent 55%),
    radial-gradient(at 100% 100%, rgba(255, 179, 0, 0.06) 0, transparent 50%),
    #ffffff;
  --bg-card: #ffffff;
  --bg-input: #ffffff;
  --border-color: #e2e8f0;
  --text-main: #0f172a;
  --text-muted: #475569;

  --shadow-sm: 0 4px 12px rgba(28, 115, 186, 0.05);
  --shadow-md: 0 10px 30px -4px rgba(28, 115, 186, 0.1);
  --shadow-lg: 0 20px 40px -8px rgba(15, 23, 42, 0.14);

  --radius: 18px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   GLOBAL WRAPPER
   ========================================================================== */
.iat-disclosure-wrapper {
  background-color: var(--bg-body);
  color: var(--text-main);
  direction: rtl;
  text-align: right;
  line-height: 1.6;
  width: 100%;
  font-family: 'IBM Plex Sans Arabic', 'Tajawal', 'Cairo', system-ui, sans-serif;
  font-size: 16px;
}

.iat-disclosure-wrapper * {
  box-sizing: border-box;
}

/* Container System */
.iat-disclosure-wrapper .container {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}



/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  background: linear-gradient(135deg, #090d16 0%, #0f172a 40%, #173859 100%);
  color: #ffffff;
  padding: 80px 0 90px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid var(--iat-teal);
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(23, 190, 188, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(28, 115, 186, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(23, 190, 188, 0.4);
  color: var(--iat-teal);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 20px;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background-color: var(--iat-teal);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(23, 190, 188, 0.8);
  animation: pulseGlow 1.8s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes pulseGlow {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(23, 190, 188, 0.8); }
  70% { transform: scale(1.15); box-shadow: 0 0 0 10px rgba(23, 190, 188, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(23, 190, 188, 0); }
}

.hero-title {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 18px;
  color: #ffffff;
}

.hero-title span {
  background: linear-gradient(135deg, #ffffff 0%, var(--iat-teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 16px;
  color: #cbd5e1;
  margin-bottom: 32px;
  line-height: 1.75;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Button System */
.btn-cta {
  background: linear-gradient(135deg, var(--iat-brand) 0%, var(--iat-teal) 100%);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 4px 14px var(--iat-primary-glow);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--iat-primary-glow);
  color: #ffffff;
}

.btn-cta.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  box-shadow: none;
}

.btn-cta.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.1);
}

.btn-cta svg {
  vertical-align: middle;
  flex-shrink: 0;
}

/* Hero Image */
.hero-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg-card);
  width: 100%;
  aspect-ratio: 16 / 10;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: var(--transition);
}

.hero-image-wrapper:hover img {
  transform: scale(1.02);
}

.hero-badge-overlay {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 14px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border-color);
}

.hero-badge-text {
  display: flex;
  flex-direction: column;
}

.hero-badge-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-main);
}

.hero-badge-desc {
  font-size: 11px;
  color: var(--iat-brand);
  font-weight: 700;
}

.hero-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--iat-brand) 0%, var(--iat-teal) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

/* ==========================================================================
   TRUST STATS STRIP
   ========================================================================== */
.trust-strip {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
  padding: 32px 0;
  box-shadow: var(--shadow-sm);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-card-item {
  padding: 10px;
}

.stat-number {
  font-size: 32px;
  font-weight: 900;
  color: var(--iat-brand);
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 700;
  margin-top: 4px;
}

/* ==========================================================================
   SECTION STYLING (Shared)
   ========================================================================== */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px auto;
}

.section-subtitle {
  color: var(--iat-brand);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 32px;
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.3;
}

.section-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 10px;
}

/* ==========================================================================
   CALCULATOR SECTION
   ========================================================================== */
.calculator-section {
  background: var(--bg-body);
}

.calc-layout-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.calc-box-wrapper {
  background: linear-gradient(135deg, #0f172a 0%, var(--iat-brand) 100%);
  color: #ffffff;
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  height: auto;
}

.calc-inputs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 10px;
}

.calc-field {
  display: flex;
  flex-direction: column;
}

.calc-field label {
  color: #e2e8f0;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 5px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
}

.calc-field input,
.calc-field select {
  width: 100%;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  outline: none;
  transition: var(--transition);
}

.calc-field input:focus,
.calc-field select:focus {
  border-color: var(--iat-teal);
  background: rgba(255, 255, 255, 0.18);
}

.calc-field select option {
  color: #000;
}

.calc-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.res-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 8px 10px;
  text-align: center;
}

.res-val {
  font-size: 22px;
  font-weight: 900;
  color: var(--iat-teal);
  margin: 2px 0;
}

.res-val.warning {
  color: var(--iat-gold);
}

.res-lbl {
  font-size: 11.5px;
  font-weight: 800;
  color: #cbd5e1;
}

.progress-bar-bg {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  height: 8px;
  overflow: hidden;
  margin-top: 10px;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--iat-teal) 0%, var(--iat-brand) 100%);
  width: 0%;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 20px;
}

.status-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 10px 14px;
  margin-top: 10px;
}

.calc-image-box {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  width: 100%;
  aspect-ratio: 16 / 11;
  max-height: 290px;
}

.calc-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ==========================================================================
   EXECUTIVE PILLARS
   ========================================================================== */
.section-title-exec {
  font-size: 36px;
  font-weight: 900;
  color: var(--text-main);
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle-exec {
  text-align: center;
  color: var(--iat-brand);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 50px;
}

.exec-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pillar-card-v3 {
  background: var(--bg-card);
  border: 1.5px solid var(--border-color);
  border-radius: 24px;
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pillar-card-v3:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--iat-brand);
}

.pillar-badge-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--iat-primary-light);
  color: var(--iat-brand);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
}

.pillar-icon-v3 {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--iat-brand) 0%, var(--iat-teal) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
  box-shadow: 0 6px 16px rgba(23, 190, 188, 0.35);
}

.pillar-card-v3 h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 12px;
}

.pillar-card-v3 p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.pillar-list {
  list-style: none;
  margin-bottom: 28px;
}

.pillar-list li {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pillar-list li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--iat-teal-light);
  color: var(--iat-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
}

/* ==========================================================================
   BENEFITS SECTION
   ========================================================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.benefit-card-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.benefit-card-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.benefit-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px dashed var(--border-color);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.benefit-icon.company {
  background: var(--iat-primary-light);
  color: var(--iat-brand);
}

.benefit-icon.employee {
  background: var(--iat-teal-light);
  color: var(--iat-teal);
}

.benefit-header h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-main);
}

.benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.benefit-item-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--iat-primary-light);
  color: var(--iat-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-item-text h4 {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
  margin-bottom: 2px;
}

.benefit-item-text p {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 1px;
  line-height: 1.4;
}

.benefit-img-wrapper {
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--bg-body);
  margin-top: 20px;
}

.benefit-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: var(--transition);
}

.benefit-card-box:hover .benefit-img-wrapper img {
  transform: scale(1.03);
}

/* ==========================================================================
   FEATURES GRID
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.feature-card::before,
.feature-card::after {
  display: none !important;
  content: none !important;
}

.feature-card:hover {
  border-color: var(--iat-brand);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon-box {
  width: 52px !important;
  height: 52px !important;
  background: linear-gradient(135deg, var(--iat-brand) 0%, var(--iat-teal) 100%) !important;
  color: #ffffff !important;
  border-radius: 14px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px var(--iat-primary-glow);
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-main);
}

.feature-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.faq-item.active {
  border-color: var(--iat-brand);
}

.faq-question {
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 800;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-chevron {
  transition: transform 0.3s ease;
  color: var(--text-muted);
  flex-shrink: 0;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--iat-teal);
}

.faq-answer {
  padding: 0 22px 18px 22px;
  font-size: 14px;
  color: var(--text-muted);
  display: none;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ==========================================================================
   QIWA STEPS SECTION
   ========================================================================== */
.qiwa-steps-section {
  background: var(--bg-hero);
}

.timeline-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
  width: 100%;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 24px;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--iat-teal);
}

.step-num-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--iat-brand) 0%, var(--iat-teal) 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.step-card h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.window-banner {
  background: linear-gradient(135deg, #090d16 0%, #0f172a 40%, #173859 100%);
  color: #ffffff;
  border-radius: 20px;
  padding: 32px 36px;
  margin-top: 36px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 179, 0, 0.25);
  position: relative;
  overflow: hidden;
}

/* ==========================================================================
   FORM SECTION
   ========================================================================== */
.form-section {
  background: var(--bg-card);
}

.form-container {
  max-width: 900px;
  margin: 0 auto;
}

.form-section-heading {
  padding: 16px 20px;
  border-radius: 12px;
  border-right: 4px solid var(--iat-brand);
  margin-bottom: 20px;
}

.form-section-heading h3 {
  margin: 0;
  font-size: 18px;
  color: var(--iat-brand);
  font-weight: 800;
}

.form-section-heading p {
  margin: 4px 0 0 0;
  font-size: 13px;
  color: var(--text-muted);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field.full-width {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.form-field label .required {
  color: #ef4444;
  margin-right: 2px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg-input);
  border: 1.5px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-main);
  font-size: 14px;
  font-weight: 500;
  outline: none;
  transition: var(--transition);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--iat-brand);
  box-shadow: 0 0 0 3px var(--iat-primary-light);
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #94a3b8;
}

.btn-submit {
  background: var(--iat-brand);
  color: #ffffff;
  padding: 14px 40px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.btn-submit:hover {
  background: var(--iat-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--iat-primary-glow);
}

/* ==========================================================================
   GLOBAL FIXES FOR WORDPRESS THEME OVERRIDES
   ========================================================================== */
.iat-disclosure-wrapper svg {
  max-width: 100% !important;
  height: auto;
}

.iat-disclosure-wrapper .feature-icon-box svg {
  width: 26px !important;
  height: 26px !important;
  stroke: #ffffff !important;
}

.iat-disclosure-wrapper .pillar-icon-v3 svg {
  width: 28px !important;
  height: 28px !important;
}

.iat-disclosure-wrapper .benefit-icon svg {
  width: 24px !important;
  height: 24px !important;
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, #090d16 0%, #0f172a 40%, #173859 100%);
  color: #ffffff;
  border-radius: 24px;
  padding: 50px 30px;
  text-align: center;
  margin-bottom: 60px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(23, 190, 188, 0.25);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(23, 190, 188, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(28, 115, 186, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: 30px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}

.cta-banner p {
  font-size: 15px;
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto 28px auto;
  position: relative;
  z-index: 2;
}

.exec-mini-counter {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.mini-counter-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 16px 28px;
  border-radius: 16px;
  min-width: 170px;
  text-align: center;
}

.mini-counter-card .counter-value {
  font-size: 26px;
  font-weight: 900;
}

.mini-counter-card .counter-label {
  font-size: 12px;
  color: #cbd5e1;
  font-weight: 700;
  margin-top: 2px;
}



/* ==========================================================================
   SCROLL ANIMATIONS (fade-in on scroll)
   ========================================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 36px;
  }

  .calc-layout-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .exec-pillars-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-title {
    font-size: 34px;
  }

  .section-title-exec {
    font-size: 30px;
  }


}

@media (max-width: 991px) {
  .timeline-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }


}

@media (max-width: 768px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    padding: 60px 0 50px 0;
  }

  .hero-title {
    font-size: 26px;
    line-height: 1.3;
  }

  .hero-desc {
    font-size: 14.5px;
    margin-bottom: 24px;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .hero-btns .btn-cta {
    width: 100%;
    justify-content: center;
  }

  .hero-badge-overlay {
    position: relative;
    bottom: auto;
    right: auto;
    left: auto;
    margin-top: 12px;
    border-radius: 14px;
    justify-content: center;
  }

  .hero-badge-icon {
    width: 32px;
    height: 32px;
  }

  .hero-badge-title {
    font-size: 12px;
  }

  .hero-badge-desc {
    font-size: 10px;
  }

  .section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 23px;
  }

  .section-title-exec {
    font-size: 25px;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .stat-number {
    font-size: 24px;
  }

  .stat-label {
    font-size: 11.5px;
  }

  .calc-inputs-grid {
    grid-template-columns: 1fr;
  }

  .calc-box-wrapper {
    padding: 18px 16px;
  }

  .calc-results-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .res-card {
    padding: 6px;
  }

  .res-val {
    font-size: 18px;
  }

  .res-lbl {
    font-size: 10.5px;
  }

  .benefit-card-box {
    padding: 22px 18px;
  }

  .timeline-wrapper {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .window-banner {
    padding: 24px 18px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    padding: 36px 18px;
  }

  .cta-banner h2 {
    font-size: 22px;
  }

  .exec-mini-counter {
    gap: 12px;
  }

  .mini-counter-card {
    width: 100%;
    min-width: unset;
  }


}

@media (max-width: 480px) {
  .hero-title {
    font-size: 22px;
  }

  .calc-results-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-number {
    font-size: 20px;
  }
}
