:root {
  --dark: #4d5ca4;
  --mid: #1b70b9;
  --green: #00a98f;
  --teal: #0abdc6;
  --light: #f8f9fc;
  --text: #222;
  --radius: 16px;
  --transition: all 0.35s ease;
  --shadow: 0 8px 28px rgba(0,0,0,0.08);
}

/* ==========================================
   GLOBAL STRUCTURE
========================================== */
#oeuk-budget2025 {
  font-family: "Inter", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background: #fff;
}

#oeuk-budget2025 .section {
  padding: 90px 5% 100px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* ==========================================
   PROGRESS BAR
========================================== */
#oeuk-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 5px;
  width: 0;
  background: linear-gradient(90deg, var(--dark), var(--mid));
  z-index: 9999;
  transition: width 0.25s ease;
}

/* ==========================================
   HERO SECTION
========================================== */
#oeuk-budget2025 .hero {
  background: linear-gradient(135deg, var(--dark), var(--mid));
  color: #fff;
  text-align: center;
  padding: 160px 20px 140px;
  border-radius: 0 0 var(--radius) var(--radius);
  position: relative;
  box-shadow: var(--shadow);
}
#oeuk-budget2025 .hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 16px;
}
#oeuk-budget2025 .hero p {
  max-width: 720px;
  margin: 0 auto 25px;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
}
#oeuk-budget2025 .scroll-btn {
  display: inline-block;
  background: #fff;
  color: var(--dark);
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: var(--transition);
}
#oeuk-budget2025 .scroll-btn:hover {
  background: var(--green);
  color: #fff;
}

/* ==========================================
   HEADINGS
========================================== */
#oeuk-budget2025 h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 50px;
}
#oeuk-budget2025 p.summary {
  text-align: center;
  max-width: 850px;
  margin: 25px auto 0;
  color: #444;
}

/* ==========================================
   THE CHALLENGE
========================================== */
#oeuk-budget2025 .challenge {
  background: var(--light);
}
#oeuk-budget2025 .facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin-top: 20px;
}
#oeuk-budget2025 .fact {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}
#oeuk-budget2025 .fact:hover {
  transform: translateY(-6px);
  background: #f0f2fa;
}
#oeuk-budget2025 .fact h3 {
  font-size: 1.9rem;
  color: var(--mid);
  font-weight: 700;
  margin-bottom: 10px;
}
#oeuk-budget2025 .fact p {
  color: #444;
  font-size: 15px;
}

/* ==========================================
   THE PROPOSAL
========================================== */
#oeuk-budget2025 .proposal {
  background: linear-gradient(180deg, #fff 0%, #f6f8fc 100%);
}
#oeuk-budget2025 .impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin-top: 30px;
}
#oeuk-budget2025 .impact-card {
  background: #fff;
  border-top: 5px solid var(--mid);
  border-radius: var(--radius);
  padding: 25px 18px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
#oeuk-budget2025 .impact-card:hover {
  transform: translateY(-6px);
  border-top-color: var(--green);
}
#oeuk-budget2025 .impact-card h3 {
  font-size: 1.6rem;
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 8px;
}
#oeuk-budget2025 .impact-card p {
  color: #555;
  font-size: 15px;
}

/* ==========================================
   REGIONAL IMPACT
========================================== */
#oeuk-budget2025 .regions {
  background: #fff;
}
#oeuk-budget2025 .region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}
#oeuk-budget2025 .region {
  background: var(--light);
  border-radius: var(--radius);
  padding: 22px 18px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
#oeuk-budget2025 .region:hover {
  transform: translateY(-6px);
  background: #eef1f9;
}
#oeuk-budget2025 .region h4 {
  color: var(--dark);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
#oeuk-budget2025 .region p {
  color: #444;
  font-size: 15px;
}

/* ==========================================
   ENERGY FUTURE
========================================== */
#oeuk-budget2025 .energy {
  background: linear-gradient(135deg, #edf8f6, #ffffff);
}
#oeuk-budget2025 .energy p {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 30px;
  color: #333;
  font-size: 1.05rem;
}
#oeuk-budget2025 .mission-list {
  list-style: none;
  max-width: 650px;
  margin: 0 auto;
  padding: 0;
}
#oeuk-budget2025 .mission-list li {
  background: #fff;
  margin-bottom: 14px;
  padding: 14px 20px;
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-size: 15.5px;
  transition: var(--transition);
}
#oeuk-budget2025 .mission-list li:hover {
  transform: translateX(5px);
}

/* ==========================================
   SUPPORT CTA
========================================== */
#oeuk-budget2025 .support {
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: #fff;
  text-align: center;
}
#oeuk-budget2025 .support h2 {
  color: #fff;
}
#oeuk-budget2025 .support p {
  max-width: 700px;
  margin: 0 auto 35px;
  color: rgba(255,255,255,0.95);
}
#oeuk-budget2025 .form-container {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 650px;
  margin: 0 auto 30px;
  padding: 25px;
}
#oeuk-budget2025 .download-link {
  display: inline-block;
  color: #fff;
  text-decoration: underline;
  font-weight: 500;
  transition: var(--transition);
}
#oeuk-budget2025 .download-link:hover {
  color: #dffaf4;
}

/* ==========================================
   GRAVITY FORM FIXES
========================================== */
#oeuk-budget2025 .gform_wrapper label,
#oeuk-budget2025 .gform_wrapper .gfield_label {
  color: #222 !important;
  font-weight: 500;
}

#oeuk-budget2025 .gform_wrapper input,
#oeuk-budget2025 .gform_wrapper textarea,
#oeuk-budget2025 .gform_wrapper select {
  color: #222 !important;
  background: #fff !important;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
}

#oeuk-budget2025 .gform_wrapper input[type="submit"],
#oeuk-budget2025 .gform_wrapper button {
  background: var(--green) !important;
  color: #fff !important;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  padding: 12px 25px;
  transition: var(--transition);
  cursor: pointer;
}
#oeuk-budget2025 .gform_wrapper input[type="submit"]:hover,
#oeuk-budget2025 .gform_wrapper button:hover {
  background: var(--teal) !important;
}

/* ==========================================
   ANIMATIONS
========================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 900px) {
  #oeuk-budget2025 .hero h1 {
    font-size: 2.2rem;
  }
  #oeuk-budget2025 .section {
    padding: 70px 6%;
  }
}
@media (max-width: 600px) {
  #oeuk-budget2025 .hero {
    padding: 120px 25px;
  }
  #oeuk-budget2025 .impact-grid,
  #oeuk-budget2025 .facts-grid,
  #oeuk-budget2025 .region-grid {
    grid-template-columns: 1fr;
  }
}