:root {
  --dark: #0a1c33;
  --dark2: #050f1d;
  --yellow: #ff9f1c;
  --orange: #ff8f00;
  --white: #fff;
  --muted: #647084;
  --light: #f6f9fc;
  --line: #e3eaf3;
  --ink: #132036;
  --sky: #1b75bc;
  --aqua: #0066cc;
  --glass: rgba(255, 255, 255, 0.76);
  --glass-border: rgba(255, 255, 255, 0.64);
  --shadow-sm: 0 14px 34px rgba(10, 28, 51, 0.08);
  --shadow-md: 0 24px 64px rgba(10, 28, 51, 0.14);
  --shadow-lg: 0 34px 90px rgba(10, 28, 51, 0.2);
  --ease-premium: cubic-bezier(0.2, 0.8, 0.2, 1);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 2%, rgba(255, 159, 28, 0.16), transparent 24rem),
    radial-gradient(circle at 88% 12%, rgba(27, 117, 188, 0.1), transparent 26rem),
    linear-gradient(180deg, #f8fbff 0%, #fff 38%, #f7fafc 100%);
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
.container {
  width: min(1180px, 92%);
  margin: auto;
}
.topbar {
  background: var(--dark2);
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.navwrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--dark);
  font-weight: 900;
  font-size: 25px;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}
.logo:hover {
  color: var(--orange);
  transform: translateY(-1px);
}
.logo-mark {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  display: grid;
  place-items: center;
  color: var(--dark);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(255, 159, 28, 0.28);
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}
.logo:hover .logo-mark {
  box-shadow: 0 14px 34px rgba(255, 159, 28, 0.42);
  transform: rotate(-3deg) scale(1.04);
}
.navlinks {
  display: flex;
  align-items: center;
  gap: 24px;
}
.navlinks a {
  position: relative;
  text-decoration: none;
  color: #182236;
  font-weight: 700;
  font-size: 15px;
  padding: 6px 0;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}
.navlinks a:hover {
  transform: translateY(-2px);
}
.navlinks a:hover,
.navlinks a.active {
  color: var(--orange);
}
.navlinks a.active {
  font-weight: 900;
}
.navlinks a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
}
.menu-btn {
  display: none;
  background: var(--dark);
  color: #fff;
  border: 0;
  border-radius: 8px;
  padding: 10px 13px;
  font-size: 18px;
}
.btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  text-decoration: none;
  border-radius: 999px;
  padding: 13px 25px;
  font-weight: 800;
  border: 2px solid transparent;
  isolation: isolate;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.55), transparent 48%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}
.btn:hover::after {
  transform: translateX(120%);
}
.btn-primary {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--dark);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(255, 159, 28, 0.35);
}
.btn-outline {
  border-color: #fff;
  color: #fff;
}
.btn-outline:hover {
  background: #fff;
  color: var(--dark);
}
.hero {
  position: relative;
  overflow: hidden;
  min-height: 610px;
  color: #fff;
  isolation: isolate;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  z-index: 3;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.94));
  pointer-events: none;
}
.hero-slider {
  background: var(--dark2);
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition:
    opacity 1s ease,
    transform 5s ease;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
  z-index: 1;
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 23, 44, 0.95), rgba(11, 31, 58, 0.68)),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 159, 28, 0.35),
      transparent 32%
    );
}
.hero-slide-1 {
  background: url("https://images.unsplash.com/photo-1509391366360-2e959784a276?auto=format&fit=crop&w=1600&q=80")
    center/cover;
}
.hero-slide-2 {
  background: url("https://images.unsplash.com/photo-1497440001374-f26997328c1b?auto=format&fit=crop&w=1600&q=80")
    center/cover;
}
.hero-content {
  position: relative;
  z-index: 2;
  animation: heroRise 0.9s ease both;
}
.hero h1 {
  font-size: clamp(40px, 6vw, 74px);
  line-height: 1.06;
  margin-bottom: 20px;
  max-width: 900px;
}
.hero p {
  font-size: 21px;
  max-width: 710px;
  color: #eaf0f8;
}
.punchline {
  margin: 22px 0;
  color: var(--yellow) !important;
  font-weight: 900;
}
.hook-text {
  min-height: 34px;
  opacity: 1;
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}
.hook-text.fade-out {
  opacity: 0;
  transform: translateY(8px);
}
.hero-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.highlights {
  margin-top: -45px;
  position: relative;
  z-index: 2;
}
.highlight-grid {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 20px;
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(11, 31, 58, 0.18);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.highlight {
  position: relative;
  padding: 28px;
  text-align: center;
  border-right: 1px solid var(--line);
  font-weight: 900;
  color: var(--dark);
  overflow: hidden;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}
.highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 159, 28, 0.16), rgba(255, 159, 28, 0));
  opacity: 0;
  transition: opacity 0.25s ease;
}
.highlight:hover {
  transform: translateY(-4px);
}
.highlight:hover::before {
  opacity: 1;
}
.highlight span {
  display: block;
  color: var(--orange);
  font-size: 30px;
  margin-bottom: 4px;
}
.section {
  position: relative;
  padding: 85px 0;
}
.section-light {
  background: var(--light);
}
.section-dark {
  background: var(--dark);
  color: #fff;
}
.title {
  text-align: center;
  margin-bottom: 45px;
}
.title small {
  color: var(--orange);
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.title h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
  color: var(--dark);
  margin-top: 8px;
}
.section-dark .title h2 {
  color: #fff;
}
.title p {
  max-width: 760px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 18px;
}
.section-dark .title p {
  color: #d9e5f2;
}
.why-choose-section {
  background:
    radial-gradient(
      circle at 12% 16%,
      rgba(255, 159, 28, 0.18),
      transparent 30%
    ),
    linear-gradient(135deg, #07172c, #102f55 58%, #0b1f3a);
}
.why-choose-section .title h2 {
  color: #fff;
}
.why-choose-section .title p {
  color: #e7eef8;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
.card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 10px 35px rgba(8, 25, 48, 0.07);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 0%), rgba(255, 159, 28, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(255, 159, 28, 0.06));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.card:hover {
  transform: translateY(-9px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  border-color: rgba(255, 159, 28, 0.58);
  box-shadow: 0 24px 56px rgba(8, 25, 48, 0.15);
}
.card:hover::before {
  opacity: 1;
}
.icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: #ffe9d0;
  display: grid;
  place-items: center;
  font-size: 28px;
  margin-bottom: 18px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.card:hover .icon {
  box-shadow: 0 14px 28px rgba(255, 159, 28, 0.28);
  transform: translateY(-4px) rotate(-4deg);
}
.card h3 {
  color: var(--dark);
  font-size: 22px;
  margin-bottom: 10px;
}
.card p {
  color: #5d6878;
}
.accent {
  color: var(--orange);
  font-weight: 900;
}
.page-banner {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 23, 44, 0.94), rgba(11, 31, 58, 0.78)),
    url("https://images.unsplash.com/photo-1497440001374-f26997328c1b?auto=format&fit=crop&w=1600&q=80")
      center/cover;
  color: #fff;
  padding: 115px 0;
  isolation: isolate;
}
.page-banner::before,
.page-banner::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.page-banner::before {
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, transparent 0 34%, rgba(255, 159, 28, 0.16) 42%, transparent 52%),
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.16), transparent 28%);
  animation: bannerSheen 8s ease-in-out infinite;
}
.page-banner::after {
  right: min(8vw, 110px);
  bottom: -55px;
  width: 190px;
  height: 190px;
  border: 26px solid rgba(255, 159, 28, 0.18);
  border-radius: 50%;
}
.page-banner .container {
  position: relative;
  z-index: 1;
}
.page-banner h1 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.1;
  text-wrap: balance;
}
.page-banner p {
  margin-top: 14px;
  font-size: 20px;
  max-width: 780px;
  color: #e7eef8;
}
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 45px;
  align-items: center;
}
.feature-box {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  border-radius: 28px;
  padding: 38px;
  color: var(--dark);
  box-shadow: 0 20px 45px rgba(255, 159, 28, 0.27);
}
.feature-box::after {
  content: "";
  position: absolute;
  inset: -50% auto auto -20%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  animation: floatGlow 6s ease-in-out infinite;
}
.feature-box h3 {
  font-size: 30px;
  margin-bottom: 10px;
}
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 30px;
}
.value {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  font-weight: 900;
  text-align: center;
  box-shadow: 0 12px 28px rgba(8, 25, 48, 0.07);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.value:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(8, 25, 48, 0.12);
}
.why-solar-section {
  background:
    radial-gradient(
      circle at 12% 14%,
      rgba(255, 159, 28, 0.2),
      transparent 28%
    ),
    radial-gradient(
      circle at 88% 18%,
      rgba(255, 159, 28, 0.12),
      transparent 30%
    ),
    linear-gradient(135deg, var(--dark2), var(--dark));
  color: #fff;
}
.why-solar-section .title h2 {
  color: #fff;
}
.premium-grid {
  display: grid;
  gap: 24px;
}
.solar-grid {
  grid-template-columns: repeat(5, 1fr);
}
.trust-grid {
  grid-template-columns: repeat(3, 1fr);
}
.premium-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 28px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
.premium-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
}
.premium-card:hover {
  transform: translateY(-8px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  box-shadow: 0 22px 45px rgba(8, 25, 48, 0.14);
}
.premium-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--dark);
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 14px 26px rgba(255, 159, 28, 0.28);
}
.solar-card {
  min-height: 245px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 159, 28, 0.32);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}
.solar-card h3 {
  color: #fff;
  font-size: 21px;
  line-height: 1.25;
  margin-bottom: 12px;
}
.trust-card h3 {
  color: var(--dark);
  font-size: 21px;
  line-height: 1.25;
  margin-bottom: 12px;
}
.solar-card p {
  color: #e7eef8;
  font-weight: 700;
}
.trust-section {
  background:
    radial-gradient(
      circle at 86% 12%,
      rgba(255, 159, 28, 0.16),
      transparent 30%
    ),
    linear-gradient(180deg, #fffaf0, #f7fafc);
  color: #172033;
}
.trust-title h2 {
  color: var(--dark);
}
.trust-card {
  min-height: 190px;
  background: #fff;
  border: 1px solid rgba(232, 237, 245, 0.95);
  box-shadow: 0 16px 38px rgba(8, 25, 48, 0.08);
}
.trust-card:hover {
  border-color: rgba(255, 159, 28, 0.7);
}
.trust-quote {
  margin: 34px auto 0;
  max-width: 920px;
  border: 1px solid rgba(255, 159, 28, 0.42);
  border-left: 7px solid var(--yellow);
  border-radius: 24px;
  padding: 28px 32px;
  background: #fff;
  color: var(--dark);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  box-shadow: 0 20px 42px rgba(8, 25, 48, 0.1);
  animation: quotePulse 5s ease-in-out infinite;
}
.problem-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.bad,
.good {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 25px;
  box-shadow: 0 12px 26px rgba(8, 25, 48, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.bad:hover,
.good:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(8, 25, 48, 0.12);
}
.bad {
  background: #fff1f1;
  border: 1px solid #ffd0d0;
}
.good {
  background: #eefaf1;
  border: 1px solid #bde9c8;
}
.bad h3,
.good h3 {
  margin-bottom: 8px;
}
.quote {
  font-weight: 800;
  color: var(--dark);
  margin-top: 8px;
}
.blog-section {
  background:
    radial-gradient(
      circle at 12% 8%,
      rgba(255, 159, 28, 0.13),
      transparent 28%
    ),
    linear-gradient(180deg, #fff, #f7fafc);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 14px 36px rgba(8, 25, 48, 0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
.blog-card:hover {
  transform: translateY(-8px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  border-color: rgba(255, 159, 28, 0.7);
  box-shadow: 0 24px 52px rgba(8, 25, 48, 0.15);
}
.blog-media {
  min-height: 155px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(
      circle at 74% 22%,
      rgba(255, 255, 255, 0.28),
      transparent 28%
    ),
    linear-gradient(135deg, var(--dark2), var(--dark));
  color: var(--yellow);
  font-size: 42px;
  font-weight: 900;
  letter-spacing: 1px;
  transition:
    filter 0.35s ease,
    transform 0.35s ease;
}
.blog-card:hover .blog-media {
  filter: saturate(1.2) brightness(1.06);
  transform: scale(1.035);
}
.blog-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}
.blog-category {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  border-radius: 999px;
  padding: 6px 12px;
  background: #ffe9d0;
  color: var(--dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.blog-card h3 {
  color: var(--dark);
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 12px;
}
.blog-card p {
  color: #5d6878;
  margin-bottom: 18px;
}
.blog-solution {
  margin-top: auto;
  color: var(--orange);
  font-weight: 900;
}
.read-more {
  display: inline-flex;
  width: fit-content;
  margin-top: 22px;
  border-radius: 999px;
  padding: 11px 18px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--dark);
  font-weight: 900;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.blog-card:hover .read-more {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 159, 28, 0.32);
}
.blog-detail-hero {
  position: relative;
  overflow: hidden;
  padding: 95px 0 80px;
  background:
    radial-gradient(
      circle at 86% 14%,
      rgba(255, 159, 28, 0.28),
      transparent 30%
    ),
    linear-gradient(135deg, rgba(7, 23, 44, 0.98), rgba(11, 31, 58, 0.92));
  color: #fff;
}
.blog-detail-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  top: 34px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 36px solid rgba(255, 159, 28, 0.11);
  animation: slowSpin 16s linear infinite;
}
.blog-detail-hero h1 {
  max-width: 900px;
  color: #fff;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.08;
}
.blog-detail-hero .blog-category {
  margin-bottom: 18px;
}
.breadcrumb {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 28px;
  color: #d9e5f2;
  font-weight: 700;
}
.breadcrumb a {
  color: var(--yellow);
  text-decoration: none;
}
.breadcrumb a:hover {
  color: #fff;
}
.blog-detail-section {
  background: #f7fafc;
}
.blog-detail-card {
  position: relative;
  overflow: hidden;
  max-width: 980px;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(8, 25, 48, 0.08);
}
.blog-detail-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, #ef4444, var(--yellow), #22c55e);
}
.blog-detail-card .problem-row {
  margin-bottom: 26px;
}
.services-list {
  display: grid;
  gap: 30px;
}
.service-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) 1fr;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  border-color: rgba(232, 237, 245, 0.95);
  isolation: isolate;
  transform: translateY(0);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}
.service-card::before,
.service-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    transform 0.45s ease;
}
.service-card::before {
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 159, 28, 0);
  box-shadow:
    inset 0 0 0 0 rgba(255, 159, 28, 0),
    0 0 0 rgba(255, 159, 28, 0);
  z-index: 3;
}
.service-card::after {
  top: 0;
  bottom: 0;
  left: -34%;
  width: 26%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 159, 28, 0.3),
    transparent
  );
  opacity: 0;
  transform: skewX(-16deg);
  z-index: 2;
}
.service-card:hover {
  transform: translateY(-9px);
  border-color: rgba(255, 159, 28, 0.6);
  box-shadow:
    0 28px 60px rgba(8, 25, 48, 0.18),
    0 0 28px rgba(255, 159, 28, 0.13);
}
.service-card:hover::before {
  border-color: rgba(255, 159, 28, 0.72);
  box-shadow:
    inset 0 0 0 1px rgba(255, 159, 28, 0.18),
    0 0 36px rgba(255, 159, 28, 0.18);
}
.service-card:hover::after {
  opacity: 1;
  transform: translateX(560%) skewX(-16deg);
}
.service-card-reverse {
  grid-template-columns: 1fr minmax(280px, 0.92fr);
}
.service-card-reverse .service-img {
  order: 2;
}
.service-img {
  min-height: 320px;
  background-position: center;
  background-size: cover;
  transition:
    transform 0.65s ease,
    filter 0.45s ease;
}
.service-card:hover .service-img {
  transform: scale(1.075);
  filter: saturate(1.12) contrast(1.04);
}
.service-img-residential {
  background-image:
    linear-gradient(135deg, rgba(7, 23, 44, 0.2), rgba(255, 159, 28, 0.22)),
    url("https://images.unsplash.com/photo-1509391366360-2e959784a276?auto=format&fit=crop&w=1200&q=80");
}
.service-img-commercial {
  background-image:
    linear-gradient(135deg, rgba(7, 23, 44, 0.24), rgba(255, 159, 28, 0.18)),
    url("https://images.unsplash.com/photo-1497440001374-f26997328c1b?auto=format&fit=crop&w=1200&q=80");
}
.service-img-hybrid {
  background-image:
    linear-gradient(135deg, rgba(7, 23, 44, 0.26), rgba(255, 159, 28, 0.2)),
    url("https://images.unsplash.com/photo-1621905252507-b35492cc74b4?auto=format&fit=crop&w=1200&q=80");
}
.service-img-audit {
  background-image:
    linear-gradient(135deg, rgba(7, 23, 44, 0.25), rgba(255, 159, 28, 0.2)),
    url("https://images.unsplash.com/photo-1581092160607-ee22621dd758?auto=format&fit=crop&w=1200&q=80");
}
.service-card .body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
}
.service-card .body::before {
  content: "";
  width: 64px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  transform: scaleX(0.55);
  transform-origin: left;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.service-card:hover .body::before {
  transform: scaleX(1);
  box-shadow: 0 0 18px rgba(255, 159, 28, 0.42);
}
.service-card .body h3 {
  font-size: clamp(26px, 3vw, 36px);
  transition: color 0.35s ease;
}
.service-card:hover .body h3 {
  color: #102f55;
}
.case-card {
  position: relative;
  border-left: 6px solid var(--yellow);
}
.case-card::after {
  content: "";
  position: absolute;
  inset: auto 22px 22px auto;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 159, 28, 0.22), rgba(255, 159, 28, 0.1));
  transform: rotate(8deg);
}
.stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.stat {
  background: #fff;
  border-radius: 18px;
  padding: 25px;
  text-align: center;
  border: 1px solid var(--line);
  box-shadow: 0 14px 32px rgba(8, 25, 48, 0.08);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}
.stat:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 159, 28, 0.65);
}
.stat h3 {
  font-size: 28px;
  color: var(--orange);
}
.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
}
.contact-info {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 159, 28, 0.24), transparent 30%),
    var(--dark);
  color: #fff;
  border-radius: 24px;
  padding: 35px;
}
.contact-info::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 150px;
  height: 150px;
  border: 22px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}
.contact-info p {
  margin: 12px 0;
  color: #dfe8f4;
}
.form {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 35px;
  box-shadow: 0 10px 35px rgba(8, 25, 48, 0.08);
  border: 1px solid var(--line);
}
.form input,
.form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 15px;
  border: 1px solid #d6dce7;
  border-radius: 12px;
  font-size: 16px;
  outline: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}
.form input:focus,
.form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 159, 28, 0.18);
  transform: translateY(-1px);
}
.form textarea {
  min-height: 140px;
  resize: vertical;
}
.footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 159, 28, 0.13), transparent 25%),
    var(--dark2);
  color: #fff;
  padding: 55px 0 20px;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.04), transparent);
  transform: translateX(-70%);
  animation: footerSheen 9s ease-in-out infinite;
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 28px;
  margin-bottom: 35px;
}
.footer a {
  display: block;
  color: #d9e5f2;
  text-decoration: none;
  margin: 7px 0;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}
.footer a:hover {
  color: var(--yellow);
  transform: translateX(4px);
}
.copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  color: #b9c7d8;
}
.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 28px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  z-index: 200;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  animation: whatsappPulse 2.8s ease-in-out infinite;
}
.whatsapp:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.38);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease var(--reveal-delay, 0ms),
    transform 0.7s ease var(--reveal-delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body[data-page="home"] .card:nth-child(odd) {
  transform-origin: top left;
}
body[data-page="home"] .why-choose-section {
  animation: ambientShift 10s ease-in-out infinite alternate;
}
body[data-page="about"] .feature-box {
  transform: rotate(-1deg);
}
body[data-page="about"] .value:nth-child(even) {
  transform: translateY(12px);
}
body[data-page="services"] .service-card:nth-child(even) {
  --service-accent: rgba(16, 47, 85, 0.14);
}
body[data-page="services"] .service-card .body {
  background: linear-gradient(135deg, #fff, var(--service-accent, rgba(255, 159, 28, 0.08)));
}
body[data-page="problems-solutions"] .blog-card:nth-child(3n + 1) .blog-media {
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.24), transparent 26%),
    linear-gradient(135deg, #102f55, #07172c);
}
body[data-page="case-studies"] .case-card:nth-child(even) {
  border-left-color: var(--orange);
}
body[data-page="contact"] .form {
  box-shadow:
    0 24px 60px rgba(8, 25, 48, 0.12),
    0 0 0 1px rgba(255, 159, 28, 0.08);
}
body[data-page="problems-solutions"] .page-banner,
body[data-page="case-studies"] .page-banner {
  background:
    linear-gradient(90deg, rgba(7, 23, 44, 0.94), rgba(11, 31, 58, 0.72)),
    url("https://images.unsplash.com/photo-1473341304170-971dccb5ac1e?auto=format&fit=crop&w=1600&q=80")
      center/cover;
}
body[data-page="about"] .page-banner {
  background:
    linear-gradient(90deg, rgba(7, 23, 44, 0.92), rgba(11, 31, 58, 0.7)),
    url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=1600&q=80")
      center/cover;
}
body[data-page="contact"] .page-banner {
  background:
    linear-gradient(90deg, rgba(7, 23, 44, 0.93), rgba(11, 31, 58, 0.76)),
    url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1600&q=80")
      center/cover;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bannerSheen {
  0%,
  100% {
    transform: translateX(-22%);
    opacity: 0.4;
  }
  50% {
    transform: translateX(18%);
    opacity: 0.9;
  }
}
@keyframes ambientShift {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 100% 50%;
  }
}
@keyframes floatGlow {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(46px, 32px) scale(1.18);
  }
}
@keyframes quotePulse {
  0%,
  100% {
    box-shadow: 0 20px 42px rgba(8, 25, 48, 0.1);
  }
  50% {
    box-shadow: 0 24px 52px rgba(255, 159, 28, 0.18);
  }
}
@keyframes slowSpin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes footerSheen {
  0%,
  100% {
    transform: translateX(-70%);
  }
  50% {
    transform: translateX(70%);
  }
}
@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  }
  50% {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25), 0 0 0 12px rgba(37, 211, 102, 0.12);
  }
}
@media (max-width: 1100px) {
  .solar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .menu-btn {
    display: block;
  }
  .navlinks {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 25px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  }
  .navlinks a {
    width: 100%;
    padding: 9px 0;
  }
  .navlinks a:hover {
    transform: translateX(4px);
  }
  .navlinks.show {
    display: flex;
  }
  .highlight-grid,
  .grid-3,
  .grid-2,
  .blog-grid,
  .solar-grid,
  .trust-grid,
  .split,
  .values,
  .problem-row,
  .stats,
  .contact-wrap,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: 560px;
  }
  .service-card,
  .service-card-reverse {
    grid-template-columns: 1fr;
  }
  .service-card-reverse .service-img {
    order: 0;
  }
  .service-img {
    min-height: 240px;
  }
  .service-card .body {
    padding: 30px;
  }
  .highlights {
    margin-top: 25px;
  }
  .highlight {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .page-banner {
    padding: 86px 0;
  }
  .card:hover,
  .premium-card:hover,
  .blog-card:hover,
  .service-card:hover {
    transform: translateY(-6px);
  }
  body[data-page="about"] .feature-box,
  body[data-page="about"] .value:nth-child(even) {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Premium visual refresh */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(9, 32, 63, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 32, 63, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 72%);
}

body.custom-cursor-ready,
body.custom-cursor-ready a,
body.custom-cursor-ready button,
body.custom-cursor-ready input,
body.custom-cursor-ready textarea,
body.custom-cursor-ready .card,
body.custom-cursor-ready .blog-card,
body.custom-cursor-ready .service-card,
body.custom-cursor-ready .premium-card,
body.custom-cursor-ready .highlight,
body.custom-cursor-ready .value,
body.custom-cursor-ready .stat {
  cursor: none;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  transition:
    opacity 0.2s ease,
    width 0.22s var(--ease-premium),
    height 0.22s var(--ease-premium),
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 18px rgba(255, 159, 28, 0.78);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 159, 28, 0.85);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 159, 28, 0.12), transparent 58%),
    rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(2px);
  box-shadow: 0 0 26px rgba(255, 159, 28, 0.24);
}

.custom-cursor-active .cursor-dot,
.custom-cursor-active .cursor-ring {
  opacity: 1;
}

.custom-cursor-hover .cursor-dot {
  width: 5px;
  height: 5px;
  background: #fff;
}

.custom-cursor-hover .cursor-ring {
  width: 58px;
  height: 58px;
  border-color: rgba(255, 159, 28, 0.78);
  background:
    radial-gradient(circle, rgba(255, 159, 28, 0.18), transparent 62%),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 34px rgba(255, 159, 28, 0.35),
    inset 0 0 20px rgba(255, 255, 255, 0.16);
}

.navbar {
  border-bottom: 1px solid rgba(227, 234, 243, 0.72);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 40px rgba(9, 32, 63, 0.08);
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.navbar.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 159, 28, 0.22);
  box-shadow: 0 18px 48px rgba(9, 32, 63, 0.12);
}

.navwrap {
  padding: 13px 0;
}

.logo-mark {
  border: 1px solid rgba(255, 255, 255, 0.62);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.45), transparent 42%),
    linear-gradient(135deg, var(--yellow), var(--orange));
}

.navlinks {
  gap: 8px;
  border: 1px solid rgba(227, 234, 243, 0.72);
  border-radius: 999px;
  padding: 7px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.navlinks a {
  border-radius: 999px;
  padding: 8px 13px;
}

.navlinks a:hover,
.navlinks a.active {
  background: rgba(255, 159, 28, 0.12);
}

.navlinks a.active::after {
  display: none;
}

.btn {
  box-shadow: 0 12px 30px rgba(9, 32, 63, 0.1);
  transform-style: preserve-3d;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.42);
  pointer-events: none;
}

.btn-primary {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.36), transparent 42%),
    linear-gradient(135deg, var(--yellow), var(--orange));
}

.btn-primary:hover {
  box-shadow:
    0 18px 34px rgba(255, 159, 28, 0.34),
    0 0 0 8px rgba(255, 159, 28, 0.08);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero {
  min-height: 660px;
}

.hero-slide::before {
  background:
    linear-gradient(90deg, rgba(4, 19, 38, 0.96), rgba(9, 32, 63, 0.7) 48%, rgba(9, 32, 63, 0.32)),
    radial-gradient(circle at 78% 24%, rgba(255, 159, 28, 0.36), transparent 34%),
    radial-gradient(circle at 56% 72%, rgba(27, 117, 188, 0.2), transparent 32%);
}

.hero-content {
  max-width: 930px;
}

.hero h1,
.page-banner h1,
.blog-detail-hero h1,
.title h2 {
  letter-spacing: 0;
  text-wrap: balance;
}

.hero p,
.page-banner p,
.title p {
  text-wrap: pretty;
}

.punchline,
.accent {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}

.highlight-grid,
.card,
.premium-card,
.blog-card,
.blog-detail-card,
.form,
.value,
.stat {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72)),
    var(--glass);
  border: 1px solid rgba(227, 234, 243, 0.86);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
}

.highlight-grid {
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.highlight {
  min-height: 128px;
  display: grid;
  align-content: center;
}

.highlight span {
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1;
}

.section {
  padding: 96px 0;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 8% 18%, rgba(255, 159, 28, 0.07), transparent 24rem);
}

.section-light {
  background:
    radial-gradient(circle at 84% 14%, rgba(27, 117, 188, 0.08), transparent 24rem),
    linear-gradient(180deg, #f8fbff, #eef5fb);
}

.title small {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 159, 28, 0.28);
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(255, 159, 28, 0.09);
  color: #cc5a00;
  letter-spacing: 1.3px;
}

.title small::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 14px rgba(255, 159, 28, 0.8);
}

.card,
.premium-card,
.blog-card,
.service-card {
  transform-style: preserve-3d;
  will-change: transform;
}

.card:hover,
.premium-card:hover,
.blog-card:hover {
  box-shadow: var(--shadow-md);
}

.card:not(.service-card)::after,
.premium-card::after,
.blog-card::after,
.stat::after,
.value::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.44), transparent 38%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.card:not(.service-card):hover::after,
.premium-card:hover::after,
.blog-card:hover::after,
.stat:hover::after,
.value:hover::after {
  opacity: 1;
}

.icon,
.premium-icon {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 42%),
    linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--dark);
}

.page-banner {
  padding: 132px 0 122px;
  background:
    linear-gradient(90deg, rgba(4, 19, 38, 0.96), rgba(9, 32, 63, 0.72)),
    url("https://images.unsplash.com/photo-1497440001374-f26997328c1b?auto=format&fit=crop&w=1600&q=80")
      center/cover;
}

.page-banner .container,
.blog-detail-hero .container {
  max-width: 980px;
  margin-left: max(4%, calc((100vw - 1180px) / 2));
}

.page-banner .container::before,
.blog-detail-hero .container::before {
  content: "";
  display: block;
  width: 82px;
  height: 5px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  box-shadow: 0 0 24px rgba(255, 159, 28, 0.36);
}

.feature-box,
.contact-info {
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: var(--shadow-lg);
}

.why-solar-section,
.why-choose-section,
.footer {
  background:
    radial-gradient(circle at 14% 10%, rgba(255, 159, 28, 0.2), transparent 28rem),
    radial-gradient(circle at 84% 24%, rgba(27, 117, 188, 0.14), transparent 24rem),
    linear-gradient(135deg, #041326, #0d2d52 58%, #09203f);
}

.solar-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.14);
}

.trust-section,
.blog-section {
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 159, 28, 0.14), transparent 28rem),
    radial-gradient(circle at 8% 84%, rgba(27, 117, 188, 0.08), transparent 24rem),
    linear-gradient(180deg, #fffaf0, #f8fbff 55%, #eef5fb);
}

.blog-card {
  position: relative;
}

.blog-media {
  min-height: 172px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 34%),
    radial-gradient(circle at 74% 22%, rgba(255, 159, 28, 0.26), transparent 30%),
    linear-gradient(135deg, #041326, #123966);
}

.read-more {
  box-shadow: 0 12px 26px rgba(255, 159, 28, 0.22);
}

.blog-detail-hero {
  padding: 112px 0 96px;
  background:
    linear-gradient(90deg, rgba(4, 19, 38, 0.96), rgba(9, 32, 63, 0.72)),
    url("https://images.unsplash.com/photo-1473341304170-971dccb5ac1e?auto=format&fit=crop&w=1600&q=80")
      center/cover;
}

.blog-detail-card {
  margin-top: -46px;
}

.bad {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 241, 241, 0.86)),
    #fff1f1;
}

.good {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(238, 250, 241, 0.88)),
    #eefaf1;
}

.service-card {
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

.service-card .body {
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 159, 28, 0.12), transparent 13rem),
    linear-gradient(135deg, #fff, rgba(247, 250, 252, 0.82));
}

.service-img {
  position: relative;
  min-height: 350px;
}

.case-card {
  min-height: 260px;
}

.stats .stat,
.values .value {
  position: relative;
  overflow: hidden;
}

.contact-info {
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 159, 28, 0.28), transparent 30%),
    radial-gradient(circle at 12% 86%, rgba(27, 117, 188, 0.16), transparent 28%),
    linear-gradient(135deg, #041326, #0d2d52);
}

.form {
  overflow: hidden;
}

.form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--yellow), var(--orange), var(--aqua));
}

.form input,
.form textarea {
  background: rgba(248, 251, 255, 0.78);
}

.whatsapp {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 42%),
    #25d366;
}

body[data-page="home"] .hero::before {
  content: "";
  position: absolute;
  right: 6vw;
  bottom: 92px;
  z-index: 2;
  width: clamp(180px, 18vw, 310px);
  aspect-ratio: 1;
  border: 34px solid rgba(255, 159, 28, 0.12);
  border-radius: 50%;
  pointer-events: none;
  animation: slowSpin 18s linear infinite;
}

body[data-page="services"] .page-banner {
  background:
    linear-gradient(90deg, rgba(4, 19, 38, 0.95), rgba(9, 32, 63, 0.66)),
    url("https://images.unsplash.com/photo-1508514177221-188b1cf16e9d?auto=format&fit=crop&w=1600&q=80")
      center/cover;
}

body[data-page="case-studies"] .page-banner {
  background:
    linear-gradient(90deg, rgba(4, 19, 38, 0.94), rgba(9, 32, 63, 0.67)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1600&q=80")
      center/cover;
}

body[data-page="about"] .page-banner {
  background:
    linear-gradient(90deg, rgba(4, 19, 38, 0.93), rgba(9, 32, 63, 0.66)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=80")
      center/cover;
}

body[data-page="contact"] .page-banner {
  background:
    linear-gradient(90deg, rgba(4, 19, 38, 0.94), rgba(9, 32, 63, 0.68)),
    url("https://images.unsplash.com/photo-1556761175-4b46a572b786?auto=format&fit=crop&w=1600&q=80")
      center/cover;
}

body[data-page="problems-solutions"] .page-banner {
  background:
    linear-gradient(90deg, rgba(4, 19, 38, 0.95), rgba(9, 32, 63, 0.68)),
    url("https://images.unsplash.com/photo-1473341304170-971dccb5ac1e?auto=format&fit=crop&w=1600&q=80")
      center/cover;
}

@media (max-width: 900px) {
  body.custom-cursor-ready,
  body.custom-cursor-ready a,
  body.custom-cursor-ready button,
  body.custom-cursor-ready input,
  body.custom-cursor-ready textarea,
  body.custom-cursor-ready .card,
  body.custom-cursor-ready .blog-card,
  body.custom-cursor-ready .service-card,
  body.custom-cursor-ready .premium-card,
  body.custom-cursor-ready .highlight,
  body.custom-cursor-ready .value,
  body.custom-cursor-ready .stat {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .navlinks {
    top: 72px;
    gap: 8px;
    border-radius: 0 0 24px 24px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
  }

  .navlinks a {
    border-radius: 14px;
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    min-height: 610px;
  }

  .page-banner {
    padding: 96px 0 88px;
  }

  .page-banner .container,
  .blog-detail-hero .container {
    margin-left: auto;
  }

  .highlight-grid {
    border-radius: 24px;
  }

  .service-card {
    border-radius: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="home"] .hero::before {
    animation: none;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  body.custom-cursor-ready,
  body.custom-cursor-ready a,
  body.custom-cursor-ready button,
  body.custom-cursor-ready input,
  body.custom-cursor-ready textarea,
  body.custom-cursor-ready .card,
  body.custom-cursor-ready .blog-card,
  body.custom-cursor-ready .service-card,
  body.custom-cursor-ready .premium-card,
  body.custom-cursor-ready .highlight,
  body.custom-cursor-ready .value,
  body.custom-cursor-ready .stat {
    cursor: auto;
  }
}

/* Value Icons Styling */
.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  display: grid;
  place-items: center;
  margin: 0 auto 14px auto;
  box-shadow: 0 8px 20px rgba(255, 159, 28, 0.24);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease;
}

.value:hover .value-icon {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 12px 24px rgba(255, 159, 28, 0.38);
}

.value-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--dark);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Active Footer link styling */
.footer a.active {
  color: var(--yellow) !important;
  font-weight: 900 !important;
  transform: translateX(6px);
}
