:root {
  --dl-layout-size-large: 144px;
  --dl-layout-size-small: 48px;
  --dl-layout-space-unit: 16px;
  --dl-layout-size-medium: 96px;
  --dl-layout-size-xlarge: 192px;
  --dl-layout-size-xsmall: 16px;
  --dl-color-theme-accent1: #FFFFFF;
  --dl-color-theme-accent2: #a4ffe2ff;
  --dl-layout-radius-round: 50%;
  --dl-layout-size-xxlarge: 288px;
  --dl-color-theme-primary1: #079c6dff;
  --dl-color-theme-primary2: #3fd59e;
  --dl-layout-size-maxwidth: 1400px;
  --dl-layout-radius-radius2: 2px;
  --dl-layout-radius-radius4: 4px;
  --dl-layout-radius-radius8: 8px;
  --dl-layout-space-halfunit: 8px;
  --dl-layout-space-sixunits: 96px;
  --dl-layout-space-twounits: 32px;
  --dl-color-theme-secondary1: #FFFFFF;
  --dl-color-theme-secondary2: #effff9ff;
  --dl-layout-space-fiveunits: 80px;
  --dl-layout-space-fourunits: 64px;
  --dl-layout-space-threeunits: 48px;
  --dl-color-theme-neutral-dark: #191818;
  --dl-layout-radius-cardradius: 8px;
  --dl-color-theme-neutral-light: #f6fffeff;
  --dl-layout-radius-imageradius: 8px;
  --dl-layout-radius-inputradius: 24px;
  --dl-layout-radius-buttonradius: 24px;
  --dl-layout-space-oneandhalfunits: 24px;
}
 
.button {
  color: var(--dl-color-theme-neutral-dark);
  display: inline-block;
  padding: 0.5rem 1rem;
  border-color: var(--dl-color-theme-neutral-dark);
  border-width: 1px;
  border-radius: 4px;
  background-color: var(--dl-color-theme-neutral-light);
}
 
.input {
  color: var(--dl-color-theme-neutral-dark);
  cursor: auto;
  padding: 0.5rem 1rem;
  border-color: var(--dl-color-theme-neutral-dark);
  border-width: 1px;
  border-radius: 4px;
  background-color: var(--dl-color-theme-neutral-light);
}
 
.textarea {
  color: var(--dl-color-theme-neutral-dark);
  cursor: auto;
  padding: 0.5rem;
  border-color: var(--dl-color-theme-neutral-dark);
  border-width: 1px;
  border-radius: 4px;
  background-color: var(--dl-color-theme-neutral-light);
}
 
.list {
  width: 100%;
  margin: 1em 0px 1em 0px;
  display: block;
  padding: 0px 0px 0px 1.5rem;
  list-style-type: none;
  list-style-position: outside;
}
 
.list-item {
  display: list-item;
}
 
.teleport-show {
  display: flex !important;
  transform: none !important;
}
 
.thq-input {
  color: var(--dl-color-theme-neutral-dark);
  cursor: auto;
  outline: none;
  padding: 0.5rem 1rem;
  align-self: stretch;
  text-align: center;
  border-color: var(--dl-color-theme-neutral-dark);
  border-width: 1px;
  border-radius: var(--dl-layout-radius-inputradius);
  background-color: var(--dl-color-theme-neutral-light);
}
 
.thq-input:focus {
  outline: 1px solid var(--dl-color-theme-primary1);
}
 
.thq-button-filled {
  gap: var(--dl-layout-space-halfunit);
  fill: var(--dl-color-theme-secondary1);
  color: var(--dl-color-theme-secondary1);
  cursor: pointer;
  display: flex;
  transition: 0.3s;
  align-items: center;
  font-weight: bold;
  padding-top: var(--dl-layout-space-halfunit);
  white-space: nowrap;
  border-color: var(--dl-color-theme-primary1);
  border-width: 1px;
  padding-left: var(--dl-layout-space-oneandhalfunits);
  border-radius: var(--dl-layout-radius-buttonradius);
  padding-right: var(--dl-layout-space-oneandhalfunits);
  padding-bottom: var(--dl-layout-space-halfunit);
  justify-content: center;
  background-color: var(--dl-color-theme-primary1);
}
 
.thq-button-filled:hover {
  fill: var(--dl-color-theme-secondary2);
  color: var(--dl-color-theme-secondary2);
  border-color: var(--dl-color-theme-primary2);
  background-color: var(--dl-color-theme-primary2);
}
 
.thq-button-outline {
  gap: var(--dl-layout-space-halfunit);
  fill: var(--dl-color-theme-primary1);
  color: var(--dl-color-theme-primary1);
  border: 1px solid;
  cursor: pointer;
  display: flex;
  transition: 0.3s;
  align-items: center;
  font-weight: bold;
  padding-top: var(--dl-layout-space-halfunit);
  white-space: nowrap;
  border-color: var(--dl-color-theme-primary1);
  padding-left: var(--dl-layout-space-oneandhalfunits);
  border-radius: var(--dl-layout-radius-buttonradius);
  padding-right: var(--dl-layout-space-oneandhalfunits);
  padding-bottom: var(--dl-layout-space-halfunit);
  justify-content: center;
}
 
.thq-button-outline:hover {
  fill: var(--dl-color-theme-secondary2);
  color: var(--dl-color-theme-secondary2);
  border-color: var(--dl-color-theme-primary2);
  background-color: var(--dl-color-theme-primary2);
}
 
.thq-button-flat {
  gap: var(--dl-layout-space-halfunit);
  fill: var(--dl-color-theme-primary1);
  color: var(--dl-color-theme-primary1);
  cursor: pointer;
  display: flex;
  transition: 0.3s;
  align-items: center;
  font-weight: bold;
  padding-top: var(--dl-layout-space-halfunit);
  white-space: nowrap;
  border-color: transparent;
  border-width: 1px;
  padding-left: var(--dl-layout-space-oneandhalfunits);
  border-radius: var(--dl-layout-radius-buttonradius);
  padding-right: var(--dl-layout-space-oneandhalfunits);
  padding-bottom: var(--dl-layout-space-halfunit);
  justify-content: center;
}
 
.thq-button-flat:hover {
  fill: var(--dl-color-theme-secondary1);
  color: var(--dl-color-theme-secondary1);
  border-color: var(--dl-color-theme-primary2);
  background-color: var(--dl-color-theme-primary2);
}
 
.thq-heading-1 {
  font-size: 48px;
  font-family: STIX Two Text;
  font-weight: 700;
  line-height: 1.5;
}
 
.thq-heading-2 {
  font-size: 35px;
  font-family: STIX Two Text;
  font-weight: 600;
  line-height: 1.5;
}
 
.thq-heading-3 {
  font-size: 26px;
  font-family: STIX Two Text;
  font-weight: 600;
  line-height: 1.5;
}
 
.thq-body-large {
  font-size: 18px;
  font-family: Noto Sans;
  line-height: 1.5;
}
 
.thq-body-small {
  font-size: 16px;
  font-family: Noto Sans;
  line-height: 1.5;
}
 
.thq-team-image-round {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
}
 
.thq-section-padding {
  width: 100%;
  display: flex;
  padding: var(--dl-layout-space-fiveunits);
  position: relative;
  align-items: center;
  flex-direction: column;
}
 
.thq-section-max-width {
  width: 100%;
  max-width: var(--dl-layout-size-maxwidth);
}
 
.thq-img-ratio-1-1 {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
  border-radius: var(--dl-layout-radius-imageradius);
}
 
.thq-img-ratio-16-9 {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
  border-radius: var(--dl-layout-radius-imageradius);
}
 
.thq-img-ratio-4-3 {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  border-radius: var(--dl-layout-radius-imageradius);
}
 
.thq-img-ratio-4-6 {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/6;
  border-radius: var(--dl-layout-radius-imageradius);
}
 
.thq-img-round {
  width: 100%;
  border-radius: var(--dl-layout-radius-round);
}
 
.thq-flex-column {
  gap: var(--dl-layout-space-twounits);
  display: flex;
  overflow: hidden;
  position: relative;
  align-items: center;
  flex-direction: column;
}
 
.thq-flex-row {
  gap: var(--dl-layout-space-twounits);
  display: flex;
  overflow: hidden;
  position: relative;
  align-items: center;
}
 
.thq-grid-6 {
  display: grid;
  grid-gap: var(--dl-layout-space-twounits);
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}
 
.thq-grid-5 {
  display: grid;
  grid-gap: var(--dl-layout-space-twounits);
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
 
.thq-card {
  gap: var(--dl-layout-space-oneandhalfunits);
  display: flex;
  padding: var(--dl-layout-space-twounits);
  align-items: stretch;
  border-radius: var(--dl-layout-radius-cardradius);
  flex-direction: column;
}
 
.thq-box-shadow {
  box-shadow: 0px 0px 5px -2px var(--dl-color-theme-neutral-dark);
}
 
.thq-grid-3 {
  display: grid;
  grid-gap: var(--dl-layout-space-twounits);
  grid-template-columns: 1fr 1fr 1fr;
}
 
.thq-grid-4 {
  display: grid;
  grid-gap: var(--dl-layout-space-twounits);
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
 
.thq-grid-2 {
  width: 100%;
  display: grid;
  grid-gap: var(--dl-layout-space-twounits);
  grid-template-columns: 1fr 1fr;
}
 
.thq-checkbox {
  width: var(--dl-layout-size-xsmall);
  height: var(--dl-layout-size-xsmall);
}
 
.thq-select {
  cursor: pointer;
  appearance: none;
  padding-top: var(--dl-layout-space-halfunit);
  padding-left: var(--dl-layout-space-unit);
  border-radius: var(--dl-layout-radius-inputradius);
  padding-right: var(--dl-layout-space-twounits);
  padding-bottom: var(--dl-layout-space-halfunit);
  background-color: var(--dl-color-theme-neutral-light);
  background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg width%3D%2220%22 height%3D%2220%22 xmlns%3D%22http%3A//www.w3.org/2000/svg%22 viewBox%3D%220 0 20 20%22 fill%3D%22%23000%22%3E%3Cpath d%3D%22M4.293 7.293a1 1 0 011.414 0L10 11.586l4.293-4.293a1 1 0 111.414 1.414l-5 5a1 1 0 01-1.414 0l-5-5a1 1 0 010-1.414z%22/%3E%3C/svg%3E');
  background-repeat: no-repeat;
  background-position: right 8px center;
}
 
.thq-divider-horizontal {
  width: 100%;
  height: 1px;
  background-color: var(--dl-color-theme-neutral-dark);
}
 
.thq-icon-small {
  width: 24px;
  height: 24px;
}
 
.thq-button-icon {
  fill: var(--dl-color-theme-secondary1);
  padding: 3px;
  transition: 0.3s;
  border-radius: var(--dl-layout-radius-round);
}
 
.thq-button-icon:hover {
  fill: var(--dl-color-theme-secondary2);
}
 
.thq-icon-medium {
  width: var(--dl-layout-size-small);
  height: var(--dl-layout-size-small);
}
 
.thq-icon-x-small {
  width: var(--dl-layout-size-xsmall);
  height: var(--dl-layout-size-xsmall);
}
 
.thq-link {
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  background: linear-gradient(to right, var(--dl-color-theme-primary1) 50%, var(--dl-color-theme-neutral-dark) 50%);
  transition: background-position 300ms ease;
  font-weight: 600;
  background-clip: text;
  background-size: 200% 100%;
  background-position: 100%;
  -webkit-text-fill-color: transparent;
}
 
.thq-link:hover {
  background-position: 0 100%;
}
 
.thq-grid-auto-300 {
  display: grid;
  grid-gap: var(--dl-layout-space-oneandhalfunits);
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
 
.thq-animated-group-vertical-reverse {
  gap: var(--dl-layout-space-unit);
  width: 100%;
  display: flex;
  animation: scroll-y 20s linear infinite;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-around;
  animation-direction: reverse;
}
 
.thq-animated-group-horizontal-reverse {
  gap: var(--dl-layout-space-unit);
  display: flex;
  animation: scroll-x 20s linear infinite;
  min-width: 100%;
  align-items: center;
  flex-shrink: 0;
  justify-content: space-around;
  animation-direction: reverse;
}
 
.thq-animated-group-vertical {
  gap: var(--dl-layout-space-unit);
  width: 100%;
  display: flex;
  animation: scroll-y 20s linear infinite;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-around;
}
 
.thq-animated-group-horizontal {
  gap: var(--dl-layout-space-unit);
  display: flex;
  animation: scroll-x 20s linear infinite;
  min-width: 100%;
  align-items: center;
  flex-shrink: 0;
  justify-content: space-around;
}
 
.thq-animated-group-container-vertical {
  gap: var(--dl-layout-space-unit);
  display: flex;
  overflow: hidden;
  flex-direction: column;
}
 
.thq-animated-group-container-horizontal {
  gap: var(--dl-layout-space-unit);
  display: flex;
  overflow: hidden;
}
 
.thq-mask-image-vertical {
  mask-image: linear-gradient(to bottom, transparent, black 1%, black 99%, transparent);
}
 
.thq-mask-image-horizontal {
  mask-image: linear-gradient(to right, transparent, black 1%, black 99%, transparent);
}
 
.thq-img-scale {
  transition: 0.3s;
}
 
.thq-img-scale:hover {
  scale: 1.05;
}
 
.thq-animated-card-bg-1 {
  width: 100%;
  height: 100%;
  transition: transform 0.3s;
  border-radius: var(--dl-layout-radius-cardradius);
  background-color: var(--dl-color-theme-accent1);
}
 
.thq-animated-card-bg-2 {
  transition: transform 0.3s;
  border-radius: var(--dl-layout-radius-cardradius);
  background-color: var(--dl-color-theme-accent2);
}
 
.thq-button-animated {
  outline: none;
  z-index: 1;
  overflow: hidden;
  position: relative;
  border-width: 2px;
}
 
.thq-input::placeholder {
  text-align: center;
  vertical-align: middle;
}
 
.thq-animated-group-container-vertical:hover div {
  animation-play-state: paused;
}
 
.thq-animated-group-container-horizontal:hover div {
  animation-play-state: paused;
}
 
.thq-animated-card-bg-2:has([data-animated="true"]:hover) {
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(3deg) skew(0deg, 0deg);
}
 
.thq-animated-card-bg-1:has([data-animated="true"]:hover) {
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(-6deg) skew(0deg, 0deg);
}
 
.thq-button-animated:before {
  top: 0;
  left: -20%;
  color: var(--dl-color-theme-neutral-light);
  width: 200%;
  height: 101%;
  content: "";
  z-index: 1;
  position: absolute;
  transform: scaleX(0);
  transition: transform 0.5s;
  border-radius: var(--dl-layout-radius-buttonradius);
  background-color: var(--dl-color-theme-neutral-dark);
  transform-origin: 0 0;
  transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
}
 
.thq-button-animated:hover::before {
  color: var(--dl-color-theme-neutral-light);
  z-index: -1;
  transform: scaleX(1);
}
 
.v4volt-hero {
  display: flex;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  min-height: 100vh;
  align-items: center;
  font-family: "Inter", sans-serif;
  justify-content: center;
}
 
.hero-background-layer {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
}
 
.hero-content-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 120px 40px 80px;
  z-index: 3;
  position: relative;
  max-width: 1400px;
}
 
.hero-bg-image {
  width: 100%;
  filter: brightness(0.6) saturate(1.3);
  height: 100%;
  opacity: 0.15;
  object-fit: cover;
}
 
.hero-overlay {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  position: absolute;
  background: linear-gradient(
      135deg,
      rgba(16, 185, 129, 0.12) 0%,
      rgba(6, 78, 59, 0.25) 50%,
      rgba(5, 46, 22, 0.35) 100%
    );
}
 
.hero-content {
  margin: 0 auto;
  z-index: 3;
  position: relative;
  max-width: 900px;
  text-align: center;
}
 
.hero-decorative-elements {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
  pointer-events: none;
}
 
.hero-badge {
  gap: 8px;
  color: #10b981;
  border: 1.5px solid rgba(16, 185, 129, 0.4);
  display: inline-flex;
  padding: 10px 20px;
  animation: fadeInDown 0.8s ease-out;
  font-size: 14px;
  background: rgba(16, 185, 129, 0.15);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.15);
  align-items: center;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 32px;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
}
 
.hero-headline {
  color: #ffffff;
  margin: 0 0 28px 0;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  font-size: 72px;
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 0 2px 30px rgba(16, 185, 129, 0.2);
  letter-spacing: -1.5px;
}
 
.hero-subtitle {
  color: #cbd5e1;
  margin: 0 auto 48px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
  font-size: 20px;
  max-width: 700px;
  font-weight: 400;
  line-height: 1.7;
}
 
.hero-cta-wrapper {
  gap: 20px;
  display: flex;
  animation: fadeInUp 0.8s ease-out 0.6s both;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 64px;
  justify-content: center;
}
 
.hero-trust-section {
  gap: 20px;
  display: flex;
  animation: fadeIn 0.8s ease-out 0.8s both;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  align-items: center;
  padding-top: 40px;
  flex-direction: column;
}
 
.decorative-circle {
  filter: blur(40px);
  position: absolute;
  animation: float 20s ease-in-out infinite;
  background: radial-gradient(
      circle,
      rgba(16, 185, 129, 0.15) 0%,
      transparent 70%
    );
  border-radius: 50%;
}
 
.decorative-circle-1 {
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  animation-delay: 0s;
}
 
.decorative-circle-2 {
  left: -50px;
  width: 400px;
  bottom: -50px;
  height: 400px;
  animation-delay: 5s;
}
 
.decorative-line {
  width: 2px;
  height: 150px;
  opacity: 0.3;
  position: absolute;
  animation: lineGlow 4s ease-in-out infinite;
  background: linear-gradient(180deg, transparent, #10b981, transparent);
}
 
.decorative-line-1 {
  top: 20%;
  right: 15%;
  transform: rotate(15deg);
}
 
.decorative-line-2 {
  left: 10%;
  bottom: 25%;
  transform: rotate(-15deg);
  animation-delay: 2s;
}
 
.headline-highlight {
  display: inline-block;
  position: relative;
  background: linear-gradient(135deg, #10b981 0%, #34d399 50%, #6ee7b7 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
 
.cta-button {
  gap: 12px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  padding: 18px 36px;
  overflow: hidden;
  position: relative;
  font-size: 17px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  align-items: center;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  border-radius: 12px;
}
 
.cta-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 10px 40px rgba(16, 185, 129, 0.4),
      0 4px 12px rgba(16, 185, 129, 0.2);
}
 
.cta-secondary {
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  backdrop-filter: blur(10px);
}
 
.trust-headline {
  gap: 10px;
  color: #94a3b8;
  margin: 0;
  display: flex;
  font-size: 15px;
  align-items: center;
  font-weight: 500;
}
 
.trust-badges {
  gap: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
 
.trust-badge {
  gap: 6px;
  color: #e2e8f0;
  display: flex;
  font-size: 14px;
  align-items: center;
  font-weight: 500;
}
 
.trust-badge-divider {
  color: #475569;
  font-size: 18px;
  font-weight: 300;
}
 
.hero-badge  svg {
  animation: pulse 2s ease-in-out infinite;
}
 
.headline-highlight::after {
  left: 0;
  width: 100%;
  bottom: -8px;
  filter: blur(4px);
  height: 6px;
  content: "";
  opacity: 0.6;
  position: absolute;
  background: linear-gradient(90deg, transparent, #10b981, transparent);
  border-radius: 3px;
}
 
.cta-button::before {
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  content: "";
  position: absolute;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.2);
  transition: width 0.6s, height 0.6s;
  border-radius: 50%;
}
 
.cta-button:hover::before {
  width: 300px;
  height: 300px;
}
 
.cta-button  svg {
  z-index: 1;
  position: relative;
  transition: transform 0.3s ease;
}
 
.cta-button  span {
  z-index: 1;
  position: relative;
}
 
.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(16, 185, 129, 0.5),
      0 8px 20px rgba(16, 185, 129, 0.3);
}
 
.cta-primary:hover svg {
  transform: translateY(-2px);
}
 
.cta-primary:active {
  transform: translateY(-1px);
}
 
.cta-secondary:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}
 
.cta-secondary:hover svg {
  transform: rotate(12deg);
}
 
.trust-headline  svg {
  color: #10b981;
  flex-shrink: 0;
}
 
.trust-badge  svg {
  color: #10b981;
  flex-shrink: 0;
}
 
.how-it-works-section {
  padding: 100px 20px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  font-family: "Inter", sans-serif;
}
 
.how-container {
  margin: 0 auto;
  z-index: 1;
  position: relative;
  max-width: 1200px;
}
 
.header-content {
  animation: fadeInUp 0.8s ease-out;
  text-align: center;
  margin-bottom: 80px;
}
 
.steps-wrapper {
  position: relative;
  margin-bottom: 80px;
}
 
.cta-container {
  animation: fadeInUp 0.8s ease-out 0.6s backwards;
  text-align: center;
}
 
.section-title {
  color: #0f172a;
  margin: 0 0 24px 0;
  font-size: 3.5rem;
  background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
 
.section-description {
  color: #475569;
  margin: 0 auto;
  font-size: 1.25rem;
  max-width: 700px;
  font-weight: 400;
  line-height: 1.8;
}
 
.steps-grid {
  gap: 32px;
  display: grid;
  position: relative;
  grid-template-columns: 1fr;
}
 
.flow-line-decoration {
  display: none;
}
 
.home-cta-button {
  gap: 12px;
  color: white;
  border: none;
  cursor: pointer;
  display: inline-flex;
  padding: 20px 48px;
  overflow: hidden;
  position: relative;
  font-size: 1.25rem;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  align-items: center;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  border-radius: 16px;
}
 
.cta-subtext {
  color: #64748b;
  font-size: 0.95rem;
  margin-top: 20px;
  font-weight: 500;
}
 
.step-card {
  gap: 32px;
  border: 2px solid transparent;
  display: grid;
  opacity: 0;
  padding: 40px;
  position: relative;
  animation: fadeInUp 0.6s ease-out forwards;
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02), 0 12px 24px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  align-items: center;
  border-radius: 24px;
  grid-template-columns: auto 1fr;
}
 
.button-text {
  z-index: 1;
  position: relative;
}
 
.button-icon {
  display: flex;
  z-index: 1;
  position: relative;
  transition: transform 0.3s ease;
  align-items: center;
}
 
.step-number-badge {
  top: -16px;
  left: 40px;
  color: white;
  width: 56px;
  height: 56px;
  display: flex;
  z-index: 2;
  position: absolute;
  font-size: 1.25rem;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
  align-items: center;
  font-weight: 700;
  border-radius: 16px;
  justify-content: center;
}
 
.step-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.step-content {
  padding-top: 8px;
}
 
.step-connector {
  display: none;
}
 
.step-num {
  transform: translateY(1px);
}
 
.icon-circle {
  color: #3b82f6;
  width: 80px;
  height: 80px;
  display: flex;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  transition: all 0.4s ease;
  align-items: center;
  border-radius: 20px;
  justify-content: center;
}
 
.step-title {
  color: #0f172a;
  margin: 0 0 12px 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}
 
.step-text {
  color: #64748b;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
}
 
.how-it-works-section::before {
  top: 0;
  left: 0;
  right: 0;
  height: 400px;
  content: "";
  position: absolute;
  background: linear-gradient(
      180deg,
      rgba(59, 130, 246, 0.05) 0%,
      transparent 100%
    );
  pointer-events: none;
}
 
.step-card[data-step="1"] {
  animation-delay: 0.1s;
}
 
.step-card[data-step="2"] {
  animation-delay: 0.2s;
}
 
.step-card[data-step="3"] {
  animation-delay: 0.3s;
}
 
.step-card[data-step="4"] {
  animation-delay: 0.4s;
}
 
.step-card[data-step="5"] {
  animation-delay: 0.5s;
}
 
.step-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.2);
}
 
.step-card:hover .icon-circle {
  color: white;
  transform: rotate(5deg) scale(1.1);
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.3);
}
 
.home-cta-button::before {
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent
    );
  transition: left 0.5s ease;
}
 
.home-cta-button:hover::before {
  left: 100%;
}
 
.home-cta-button:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.4);
}
 
.home-cta-button:active {
  transform: translateY(-2px) scale(1.02);
}
 
.home-cta-button:hover .button-icon {
  transform: translateY(-4px);
}
 

 
.home-how-it-works-section {
  width: 100%;
  padding: 100px 20px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #f0fdf7 0%, #d1fae5 100%);
  font-family: "Inter", sans-serif;
}
 
.home-section-title {
  color: #0f172a;
  margin: 0 0 24px 0;
  font-size: 3.5rem;
  background: linear-gradient(135deg, #065f46 0%, #047857 100%);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
 
.home-home-cta-button {
  gap: 12px;
  color: white;
  border: none;
  cursor: pointer;
  display: inline-flex;
  padding: 20px 48px;
  overflow: hidden;
  position: relative;
  font-size: 1.25rem;
  background: linear-gradient(135deg, #079c6d 0%, #047857 100%);
  box-shadow: 0 10px 30px rgba(7, 156, 109, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  align-items: center;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  border-radius: 16px;
}
 
.step-number-badge1 {
  display: flex;
}
 
.home-step-number-badge {
  top: -16px;
  left: 40px;
  color: white;
  width: 56px;
  height: 56px;
  display: flex;
  z-index: 2;
  position: absolute;
  font-size: 1.25rem;
  background: linear-gradient(135deg, #079c6d 0%, #047857 100%);
  box-shadow: 0 8px 16px rgba(7, 156, 109, 0.3);
  align-items: center;
  font-weight: 700;
  border-radius: 16px;
  justify-content: center;
}
 
.home-icon-circle {
  color: #079c6d;
  width: 80px;
  height: 80px;
  display: flex;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  transition: all 0.4s ease;
  align-items: center;
  border-radius: 20px;
  justify-content: center;
}
 
.renovables-section {
  padding: 120px 20px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #f8feff 0%, #f0f9ff 50%, #f8fffe 100%);
}
 
.renovables-container {
  margin: 0 auto;
  z-index: 3;
  position: relative;
  max-width: 1400px;
}
 
.renovables-bg-accent {
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  z-index: 1;
  position: absolute;
  background: radial-gradient(
      circle,
      rgba(16, 185, 129, 0.08) 0%,
      transparent 70%
    );
  border-radius: 50%;
  pointer-events: none;
}
 
.renovables-bg-gradient {
  left: -150px;
  width: 700px;
  bottom: -150px;
  height: 700px;
  z-index: 1;
  position: absolute;
  background: radial-gradient(
      circle,
      rgba(59, 130, 246, 0.06) 0%,
      transparent 70%
    );
  border-radius: 50%;
  pointer-events: none;
}
 
.renovables-label-wrapper {
  margin-bottom: 40px;
}
 
.renovables-content-grid {
  gap: 80px;
  display: grid;
  align-items: start;
  grid-template-columns: 1fr 1fr;
}
 
.renovables-label {
  color: #10b981;
  display: inline-block;
  position: relative;
  font-size: 12px;
  background: linear-gradient(90deg, #10b981 0%, #3b82f6 100%);
  font-weight: 700;
  letter-spacing: 3px;
  padding-bottom: 12px;
  text-transform: uppercase;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
 
.renovables-text-column {
  position: relative;
}
 
.renovables-services-column {
  position: relative;
}
 
.renovables-text-content {
  z-index: 2;
  position: relative;
}
 
.renovables-image-accent {
  left: -40px;
  width: 280px;
  bottom: -80px;
  height: 180px;
  z-index: 1;
  overflow: hidden;
  position: absolute;
  transform: rotate(-5deg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
}
 
.renovables-services-card {
  border: 1px solid rgba(16, 185, 129, 0.1);
  padding: 50px 40px;
  overflow: hidden;
  position: relative;
  background: white;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border-radius: 24px;
}
 
.renovables-main-title {
  color: #0f172a;
  margin: 0 0 30px 0;
  font-size: 56px;
  font-family: Inter, sans-serif;
  font-weight: 800;
  line-height: 1.15;
}
 
.renovables-subtitle {
  color: #475569;
  margin: 0 0 40px 0;
  font-size: 20px;
  max-width: 540px;
  line-height: 1.7;
}
 
.renovables-cta-btn {
  gap: 12px;
  color: white;
  border: none;
  cursor: pointer;
  display: inline-flex;
  padding: 18px 40px;
  overflow: hidden;
  position: relative;
  font-size: 16px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  align-items: center;
  font-weight: 600;
  border-radius: 12px;
}
 
.renovables-accent-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
 
.renovables-card-glow {
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  position: absolute;
  animation: renovablesGlowSlide 3s ease-in-out infinite;
  background: linear-gradient(90deg, #10b981 0%, #3b82f6 50%, #10b981 100%);
  background-size: 200% 100%;
}
 
.renovables-services-list {
  gap: 32px;
  margin: 0;
  display: flex;
  padding: 0;
  list-style: none;
  flex-direction: column;
}
 
.renovables-highlight {
  display: inline-block;
  position: relative;
  background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
 
.renovables-btn-text {
  z-index: 2;
  position: relative;
}
 
.renovables-btn-icon {
  width: 24px;
  height: 24px;
  display: flex;
  transform: rotate(90deg);
  transition: transform 0.3s ease;
  align-items: center;
  justify-content: center;
}
 
.renovables-service-item {
  gap: 20px;
  display: flex;
  transition: transform 0.3s ease;
  align-items: flex-start;
}
 
.renovables-service-icon {
  color: white;
  width: 56px;
  height: 56px;
  display: flex;
  background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
  transition: all 0.3s ease;
  align-items: center;
  flex-shrink: 0;
  border-radius: 16px;
  justify-content: center;
}
 
.renovables-service-content {
  flex: 1;
  padding-top: 8px;
}
 
.renovables-service-title {
  color: #0f172a;
  margin: 0 0 12px 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}
 
.renovables-service-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #e2e8f0 0%, transparent 100%);
  border-radius: 1px;
}
 
.renovables-badge {
  color: #10b981;
  display: inline-block;
  padding: 4px 10px;
  font-size: 14px;
  background: rgba(16, 185, 129, 0.1);
  font-weight: 500;
  margin-left: 6px;
  border-radius: 6px;
}
 
.renovables-label::after {
  left: 0;
  width: 60px;
  bottom: 0;
  height: 3px;
  content: "";
  position: absolute;
  background: linear-gradient(90deg, #10b981 0%, #3b82f6 100%);
  border-radius: 2px;
}
 
.renovables-cta-btn::before {
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent
    );
  transition: left 0.5s ease;
}
 
.renovables-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}
 
.renovables-cta-btn:hover::before {
  left: 100%;
}
 
.renovables-cta-btn:hover .renovables-btn-icon {
  transform: rotate(90deg) translateX(-3px);
}
 
.renovables-image-accent:hover .renovables-accent-img {
  transform: scale(1.1);
}
 
.renovables-service-item:hover {
  transform: translateX(8px);
}
 
.renovables-service-item:hover .renovables-service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.35);
}
 
.home-renovables-section {
  padding: 120px 20px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}
 
.home-renovables-bg-accent {
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  z-index: 1;
  position: absolute;
  background: radial-gradient(
      circle,
      rgba(16, 185, 129, 0.15) 0%,
      transparent 70%
    );
  border-radius: 50%;
  pointer-events: none;
}
 
.home-renovables-bg-gradient {
  left: -150px;
  width: 700px;
  bottom: -150px;
  height: 700px;
  z-index: 1;
  position: absolute;
  background: radial-gradient(
      circle,
      rgba(59, 130, 246, 0.12) 0%,
      transparent 70%
    );
  border-radius: 50%;
  pointer-events: none;
}
 
.home-renovables-image-accent {
  left: -40px;
  width: 280px;
  border: 2px solid rgba(16, 185, 129, 0.2);
  bottom: -80px;
  height: 180px;
  z-index: 1;
  overflow: hidden;
  position: absolute;
  transform: rotate(-5deg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border-radius: 20px;
}
 
.home-renovables-services-card {
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 50px 40px;
  overflow: hidden;
  position: relative;
  background: rgba(30, 41, 59, 0.6);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border-radius: 24px;
  backdrop-filter: blur(10px);
}
 
.home-renovables-main-title {
  color: #ffffff;
  margin: 0 0 30px 0;
  font-size: 56px;
  font-family: Inter, sans-serif;
  font-weight: 800;
  line-height: 1.15;
}
 
.home-renovables-subtitle {
  color: #cbd5e1;
  margin: 0 0 40px 0;
  font-size: 20px;
  max-width: 540px;
  line-height: 1.7;
}
 
.home-renovables-cta-btn {
  gap: 12px;
  color: white;
  border: none;
  cursor: pointer;
  display: inline-flex;
  padding: 18px 40px;
  overflow: hidden;
  position: relative;
  font-size: 16px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  align-items: center;
  font-weight: 600;
  border-radius: 12px;
}
 
.renovables-highlight1 {
  display: inline-block;
  position: relative;
  background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
 
.renovables-highlight2 {
  display: inline-block;
  position: relative;
  background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
 
.renovables-highlight3 {
  display: inline-block;
  position: relative;
  background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
 
.home-renovables-service-icon {
  color: white;
  width: 56px;
  height: 56px;
  display: flex;
  background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
  transition: all 0.3s ease;
  align-items: center;
  flex-shrink: 0;
  border-radius: 16px;
  justify-content: center;
}
 
.home-renovables-service-title {
  color: #f1f5f9;
  margin: 0 0 12px 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}
 
.home-renovables-service-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(
      90deg,
      rgba(148, 163, 184, 0.3) 0%,
      transparent 100%
    );
  border-radius: 1px;
}
 
.home-renovables-badge {
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: inline-block;
  padding: 4px 10px;
  font-size: 14px;
  background: rgba(16, 185, 129, 0.15);
  font-weight: 500;
  margin-left: 6px;
  border-radius: 6px;
}
 
.home-renovables-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
}
 
.home-renovables-service-icon:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}
 
.why-v4volt-section {
  width: 100%;
  padding: 120px 24px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
}
 
.why-v4volt-container {
  margin: 0 auto;
  z-index: 3;
  position: relative;
  max-width: 1200px;
}
 
.why-bg-gradient-orb {
  filter: blur(120px);
  opacity: 0.15;
  z-index: 1;
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
 
.why-bg-orb-1 {
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  animation: why-float-orb 20s ease-in-out infinite;
  background: radial-gradient(circle, #10b981 0%, transparent 70%);
}
 
.why-bg-orb-2 {
  left: -100px;
  width: 500px;
  bottom: -150px;
  height: 500px;
  animation: why-float-orb 25s ease-in-out infinite reverse;
  background: radial-gradient(circle, #34d399 0%, transparent 70%);
}
 
.why-bg-grid-pattern {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  position: absolute;
  pointer-events: none;
  background-size: 50px 50px;
  background-image: linear-gradient(
        rgba(16, 185, 129, 0.03) 1px,
        transparent 1px
      ),linear-gradient(90deg, rgba(16, 185, 129, 0.03) 1px, transparent 1px);
}
 
.why-header-wrapper {
  position: relative;
  text-align: center;
  margin-bottom: 80px;
}
 
.why-feature-card {
  margin: 0 auto;
  padding: 56px 48px;
  position: relative;
  max-width: 700px;
  background: rgba(10, 10, 10, 0.8);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 24px;
  backdrop-filter: blur(20px);
}
 
.why-float-element {
  color: #10b981;
  opacity: 0.15;
  z-index: 2;
  position: absolute;
  pointer-events: none;
}
 
.why-float-1 {
  top: 15%;
  left: 10%;
  animation: why-float-sparkle 8s ease-in-out infinite;
}
 
.why-float-2 {
  top: 70%;
  right: 8%;
  animation: why-float-sparkle 10s ease-in-out infinite 1s;
}
 
.why-float-3 {
  left: 15%;
  bottom: 20%;
  animation: why-float-sparkle 12s ease-in-out infinite 2s;
}
 
.why-title-decorator {
  width: 80px;
  height: 4px;
  margin: 0 auto 32px;
  animation: why-pulse-glow 2s ease-in-out infinite;
  background: linear-gradient(90deg, transparent, #10b981, transparent);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
  border-radius: 2px;
}
 
.why-main-title {
  color: #ffffff;
  margin: 0 0 24px;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
 
.why-subtitle {
  color: #cbd5e1;
  margin: 0 auto;
  font-size: 20px;
  max-width: 600px;
  font-weight: 400;
  line-height: 1.6;
}
 
.why-card-glow-effect {
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  filter: blur(20px);
  opacity: 0.3;
  z-index: 1;
  position: absolute;
  background: linear-gradient(135deg, #10b981, #34d399, #6ee7b7);
  transition: opacity 0.5s ease;
  border-radius: 24px;
  pointer-events: none;
}
 
.why-card-border-gradient {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.6;
  padding: 2px;
  z-index: 2;
  position: absolute;
  background: linear-gradient(135deg, #10b981, #34d399, #6ee7b7);
  transition: opacity 0.5s ease;
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
  border-radius: 24px;
  mask-composite: exclude;
  pointer-events: none;
  -webkit-mask-composite: xor;
}
 
.why-card-content {
  gap: 32px;
  display: flex;
  z-index: 3;
  position: relative;
  align-items: center;
  flex-direction: column;
}
 
.why-card-corner {
  width: 20px;
  border: 2px solid #10b981;
  height: 20px;
  opacity: 0.6;
  z-index: 4;
  position: absolute;
  transition: all 0.4s ease;
}
 
.why-corner-tl {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none;
  border-top-left-radius: 24px;
}
 
.why-corner-tr {
  top: -1px;
  right: -1px;
  border-left: none;
  border-bottom: none;
  border-top-right-radius: 24px;
}
 
.why-corner-bl {
  left: -1px;
  bottom: -1px;
  border-top: none;
  border-right: none;
  border-bottom-left-radius: 24px;
}
 
.why-corner-br {
  right: -1px;
  bottom: -1px;
  border-top: none;
  border-left: none;
  border-bottom-right-radius: 24px;
}
 
.why-title-highlight {
  display: inline-block;
  position: relative;
  background: linear-gradient(135deg, #10b981 0%, #34d399 50%, #6ee7b7 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
 
.why-icon-wrapper {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
}
 
.why-text-content {
  text-align: center;
}
 
.why-accent-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #10b981, transparent);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
  border-radius: 1px;
}
 
.why-icon-glow {
  width: 120px;
  height: 120px;
  z-index: 1;
  position: absolute;
  animation: why-pulse-icon 3s ease-in-out infinite;
  background: radial-gradient(
      circle,
      rgba(16, 185, 129, 0.4) 0%,
      transparent 70%
    );
  border-radius: 50%;
}
 
.why-icon-container {
  color: #10b981;
  width: 80px;
  border: 2px solid rgba(16, 185, 129, 0.4);
  height: 80px;
  display: flex;
  z-index: 2;
  position: relative;
  background: linear-gradient(
      135deg,
      rgba(16, 185, 129, 0.2),
      rgba(52, 211, 153, 0.1)
    );
  transition: all 0.4s ease;
  align-items: center;
  border-radius: 50%;
  justify-content: center;
}
 
.why-feature-title {
  color: #ffffff;
  margin: 0 0 16px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
 
.why-feature-description {
  color: #94a3b8;
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}
 
.why-feature-card:hover {
  transform: translateY(-8px);
  background: rgba(15, 15, 15, 0.9);
}
 
.why-feature-card:hover .why-card-glow-effect {
  filter: blur(30px);
  opacity: 0.6;
}
 
.why-feature-card:hover .why-card-border-gradient {
  opacity: 1;
}
 
.why-feature-card:hover .why-icon-container {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 40px rgba(16, 185, 129, 0.6);
  border-color: #10b981;
}
 
.why-feature-card:hover .why-card-corner {
  opacity: 1;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.8);
  border-color: #34d399;
}
 
.why-icon-container  svg {
  width: 40px;
  height: 40px;
}
 
.contact-section {
  display: flex;
  padding: 120px 20px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  min-height: 100vh;
  align-items: center;
}
 
.contact-bg-glow {
  filter: blur(100px);
  opacity: 0.3;
  z-index: 1;
  position: absolute;
  animation: float-glow 8s ease-in-out infinite;
  border-radius: 50%;
  pointer-events: none;
}
 
.contact-bg-glow-1 {
  top: -100px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
      circle,
      rgba(16, 185, 129, 0.4) 0%,
      transparent 70%
    );
  animation-delay: 0s;
}
 
.contact-bg-glow-2 {
  right: -50px;
  width: 500px;
  bottom: -50px;
  height: 500px;
  background: radial-gradient(
      circle,
      rgba(52, 211, 153, 0.3) 0%,
      transparent 70%
    );
  animation-delay: 2s;
}
 
.contact-bg-glow-3 {
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  transform: translate(-50%, -50%);
  background: radial-gradient(
      circle,
      rgba(110, 231, 183, 0.2) 0%,
      transparent 70%
    );
  animation-delay: 4s;
}
 
.contact-grid-overlay {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  position: absolute;
  animation: grid-flow 20s linear infinite;
  background-size: 50px 50px;
  background-image: linear-gradient(
        rgba(16, 185, 129, 0.03) 1px,
        transparent 1px
      ),linear-gradient(90deg, rgba(16, 185, 129, 0.03) 1px, transparent 1px);
}
 
.contact-container {
  width: 100%;
  margin: 0 auto;
  z-index: 2;
  position: relative;
  max-width: 900px;
}
 
.contact-header {
  text-align: center;
  margin-bottom: 60px;
}
 
.contact-form-wrapper {
  border: 1px solid rgba(16, 185, 129, 0.2);
  position: relative;
  background: rgba(30, 41, 59, 0.6);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 0 1px rgba(16, 185, 129, 0.1);
  transition: all 0.4s ease;
  padding-top: 60px;
  border-radius: 24px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  backdrop-filter: blur(20px);
}
 
.contact-info-grid {
  gap: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
 
.contact-label {
  gap: 8px;
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: inline-flex;
  padding: 8px 20px;
  background: rgba(16, 185, 129, 0.1);
  align-items: center;
  border-radius: 30px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
 
.contact-title {
  color: #ffffff;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
 
.contact-description {
  color: #cbd5e1;
  margin: 0 auto;
  font-size: 18px;
  max-width: 700px;
  line-height: 1.8;
}
 
.form-corner-accent {
  width: 40px;
  border: 2px solid #10b981;
  height: 40px;
  opacity: 0.6;
  position: absolute;
}
 
.form-corner-top-left {
  top: -2px;
  left: -2px;
  border-right: none;
  border-bottom: none;
  border-radius: 24px 0 0 0;
}
 
.form-corner-top-right {
  top: -2px;
  right: -2px;
  border-left: none;
  border-bottom: none;
  border-radius: 0 24px 0 0;
}
 
.form-corner-bottom-left {
  left: -2px;
  bottom: -2px;
  border-top: none;
  border-right: none;
  border-radius: 0 0 0 24px;
}
 
.form-corner-bottom-right {
  right: -2px;
  bottom: -2px;
  border-top: none;
  border-left: none;
  border-radius: 0 0 24px 0;
}
 
.contact-form {
  gap: 32px;
  display: flex;
  flex-direction: column;
}
 
.success-message {
  display: none;
  padding: 40px;
  animation: fade-in-up 0.6s ease;
  text-align: center;
}
 
.info-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px 24px;
  position: relative;
  background: rgba(30, 41, 59, 0.4);
  text-align: center;
  transition: all 0.3s ease;
  border-radius: 16px;
  backdrop-filter: blur(10px);
}
 
.contact-label-dot {
  width: 8px;
  height: 8px;
  animation: pulse-dot 2s ease-in-out infinite;
  background: #10b981;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.8);
  border-radius: 50%;
}
 
.contact-label-text {
  color: #10b981;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
 
.contact-title-accent {
  display: inline-block;
  position: relative;
  background: linear-gradient(135deg, #10b981 0%, #34d399 50%, #6ee7b7 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
 
.form-group {
  gap: 10px;
  display: flex;
  flex-direction: column;
}
 
.contact-submit-btn {
  width: 100%;
  border: none;
  cursor: pointer;
  padding: 18px 32px;
  overflow: hidden;
  position: relative;
  background: transparent;
  margin-top: 12px;
  transition: all 0.3s ease;
  border-radius: 12px;
}
 
.success-icon {
  color: #ffffff;
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  animation: scale-bounce 0.6s ease;
  background: linear-gradient(135deg, #10b981, #34d399);
  box-shadow: 0 10px 40px rgba(16, 185, 129, 0.4);
  align-items: center;
  border-radius: 50%;
  justify-content: center;
}
 
.success-title {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}
 
.success-text {
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.6;
}
 
.info-card-icon {
  color: #10b981;
  width: 56px;
  border: 2px solid rgba(16, 185, 129, 0.3);
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  background: rgba(16, 185, 129, 0.1);
  transition: all 0.3s ease;
  align-items: center;
  border-radius: 50%;
  justify-content: center;
}
 
.info-card-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
 
.info-card-text {
  color: #94a3b8;
  font-size: 16px;
}
 
.form-label {
  gap: 8px;
  color: #e2e8f0;
  display: flex;
  font-size: 14px;
  align-items: center;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
 
.input-wrapper {
  position: relative;
}
 
.form-error {
  gap: 6px;
  color: #ef4444;
  display: flex;
  opacity: 0;
  font-size: 13px;
  transform: translateY(-5px);
  min-height: 20px;
  transition: all 0.3s ease;
  align-items: center;
}
 
.submit-btn-bg {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  position: absolute;
  background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
  transition: all 0.3s ease;
}
 
.submit-btn-content {
  gap: 12px;
  display: flex;
  z-index: 3;
  position: relative;
  align-items: center;
  justify-content: center;
}
 
.form-icon {
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.form-input {
  color: #ffffff;
  width: 100%;
  border: 2px solid rgba(16, 185, 129, 0.3);
  outline: none;
  padding: 16px 20px;
  font-size: 16px;
  background: rgba(15, 23, 42, 0.6);
  transition: all 0.3s ease;
  font-family: Inter, sans-serif;
  border-radius: 12px;
}
 
.input-border-glow {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  filter: blur(15px);
  opacity: 0;
  z-index: -1;
  position: absolute;
  background: linear-gradient(135deg, #10b981, #34d399);
  transition: opacity 0.3s ease;
  border-radius: 12px;
  pointer-events: none;
}
 
.form-textarea {
  resize: vertical;
  min-height: 140px;
}
 
.submit-btn-text {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
 
.submit-btn-icon {
  color: #ffffff;
  display: flex;
  transition: transform 0.3s ease;
  align-items: center;
}
 
.contact-title-accent::after {
  left: 0;
  width: 100%;
  bottom: -10px;
  height: 4px;
  content: "";
  position: absolute;
  background: linear-gradient(90deg, #10b981, #34d399, #6ee7b7);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
  border-radius: 2px;
}
 
.contact-form-wrapper:hover {
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 0 40px rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.4);
}
 
.form-input::placeholder {
  color: #64748b;
}
 
.form-input:focus {
  background: rgba(15, 23, 42, 0.8);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1),
      0 0 30px rgba(16, 185, 129, 0.2);
  border-color: #10b981;
}
 
.form-input.error {
  border-color: #ef4444;
}
 
.form-input.error:focus {
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1),
      0 0 30px rgba(239, 68, 68, 0.2);
}
 
.form-input.success {
  border-color: #10b981;
}
 
.form-input:focus + .input-border-glow {
  opacity: 0.3;
}
 
.form-error.show {
  opacity: 1;
  transform: translateY(0);
}
 
.form-error::before {
  content: "⚠";
  font-size: 14px;
}
 
.contact-submit-btn::before {
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 2;
  position: absolute;
  background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent
    );
  transition: left 0.5s ease;
}
 
.contact-submit-btn:hover::before {
  left: 100%;
}
 
.contact-submit-btn:hover .submit-btn-bg {
  background: linear-gradient(135deg, #047857 0%, #059669 50%, #10b981 100%);
}
 
.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4),
      0 0 60px rgba(16, 185, 129, 0.3);
}
 
.contact-submit-btn:active {
  transform: translateY(0);
}
 
.contact-submit-btn:hover .submit-btn-icon {
  transform: translateX(5px) rotate(-10deg);
}
 
.success-message.show {
  display: block;
}
 
.info-card::before {
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  content: "";
  opacity: 0;
  position: absolute;
  background: linear-gradient(90deg, #10b981, #34d399, #6ee7b7);
  transition: opacity 0.3s ease;
  border-radius: 16px 16px 0 0;
}
 
.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
}
 
.info-card:hover::before {
  opacity: 1;
}
 
.info-card:hover .info-card-icon {
  transform: rotate(360deg) scale(1.1);
  background: rgba(16, 185, 129, 0.2);
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
  border-color: #10b981;
}
 
.home-why-v4volt-section {
  padding: 120px 0;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
}
 
.why-v4volt-bg-orb {
  filter: blur(120px);
  opacity: 0.15;
  z-index: 1;
  position: absolute;
  animation: why-v4volt-float 20s ease-in-out infinite;
  border-radius: 50%;
  pointer-events: none;
}
 
.why-v4volt-bg-orb-1 {
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, #10b981, #34d399);
}
 
.why-v4volt-bg-orb-2 {
  left: -100px;
  width: 500px;
  bottom: -150px;
  height: 500px;
  background: linear-gradient(135deg, #6ee7b7, #34d399);
  animation-delay: -10s;
}
 
.why-v4volt-grid-pattern {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
  pointer-events: none;
  background-size: 50px 50px;
  background-image: linear-gradient(
        rgba(16, 185, 129, 0.03) 1px,
        transparent 1px
      ),linear-gradient(90deg, rgba(16, 185, 129, 0.03) 1px, transparent 1px);
}
 
.home-renovables-container {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1200px;
}
 
.why-v4volt-header {
  z-index: 2;
  position: relative;
  text-align: center;
  margin-bottom: 80px;
}
 
.why-v4volt-story-wrapper {
  z-index: 2;
  position: relative;
  margin-bottom: 80px;
}
 
.why-v4volt-features-grid {
  gap: 32px;
  display: grid;
  z-index: 2;
  position: relative;
  grid-template-columns: repeat(3, 1fr);
}
 
.why-v4volt-decorative-line {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  justify-content: center;
}
 
.why-v4volt-title {
  color: #ffffff;
  margin: 0 0 24px 0;
  font-size: 56px;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
 
.why-v4volt-subtitle {
  color: #cbd5e1;
  margin: 0 auto;
  font-size: 20px;
  max-width: 700px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.6;
}
 
.why-v4volt-story-card {
  border: 1px solid rgba(16, 185, 129, 0.1);
  padding: 48px;
  overflow: hidden;
  position: relative;
  background: rgba(10, 10, 10, 0.8);
  transition: all 0.3s ease;
  border-radius: 24px;
  backdrop-filter: blur(10px);
}
 
.why-v4volt-feature-card {
  padding: 48px 32px;
  overflow: hidden;
  position: relative;
  background: rgba(10, 10, 10, 0.8);
  text-align: center;
  transition: all 0.3s ease;
  border-radius: 24px;
  backdrop-filter: blur(10px);
}
 
.why-v4volt-line-dot {
  width: 8px;
  height: 8px;
  margin: 0 16px;
  animation: why-v4volt-pulse 2s ease-in-out infinite;
  background: linear-gradient(135deg, #10b981, #6ee7b7);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
  border-radius: 50%;
}
 
.why-v4volt-highlight {
  position: relative;
  background: linear-gradient(135deg, #10b981, #34d399, #6ee7b7);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
 
.why-v4volt-story-glow {
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  filter: blur(20px);
  opacity: 0;
  z-index: 1;
  position: absolute;
  background: linear-gradient(135deg, #10b981, #34d399, #6ee7b7);
  transition: opacity 0.3s ease;
  border-radius: 24px;
}
 
.why-v4volt-story-content {
  z-index: 2;
  position: relative;
}
 
.why-v4volt-card-glow {
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  opacity: 0;
  z-index: 1;
  position: absolute;
  background: radial-gradient(
      circle,
      rgba(16, 185, 129, 0.15) 0%,
      transparent 70%
    );
  transition: opacity 0.3s ease;
}
 
.why-v4volt-card-border {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.5;
  padding: 1px;
  z-index: 1;
  position: absolute;
  background: linear-gradient(
      135deg,
      rgba(16, 185, 129, 0.2),
      rgba(110, 231, 183, 0.2)
    );
  transition: opacity 0.3s ease;
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
  border-radius: 24px;
  mask-composite: exclude;
  -webkit-mask-composite: xor;
}
 
.why-v4volt-icon-container {
  width: 80px;
  height: 80px;
  margin: 0 auto 32px;
  display: flex;
  z-index: 2;
  position: relative;
  align-items: center;
  justify-content: center;
}
 
.why-v4volt-card-title {
  color: #ffffff;
  margin: 0 0 16px 0;
  z-index: 2;
  position: relative;
  font-size: 32px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}
 
.why-v4volt-card-description {
  color: #94a3b8;
  margin: 0;
  z-index: 2;
  position: relative;
  font-size: 18px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.6;
}
 
.why-v4volt-story-text {
  color: #94a3b8;
  margin: 0 0 24px 0;
  font-size: 18px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.8;
}
 
.why-v4volt-icon-glow {
  width: 100%;
  filter: blur(20px);
  height: 100%;
  opacity: 0.3;
  z-index: 1;
  position: absolute;
  background: linear-gradient(135deg, #10b981, #6ee7b7);
  transition: all 0.3s ease;
  border-radius: 50%;
}
 
.why-v4volt-icon {
  color: #10b981;
  filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.5));
  z-index: 2;
  position: relative;
  transition: all 0.3s ease;
}
 
.why-v4volt-decorative-line::before {
  width: 60px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, #10b981, transparent);
}
 
.why-v4volt-decorative-line::after {
  width: 60px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, #10b981, transparent);
}
 
.why-v4volt-story-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.3);
}
 
.why-v4volt-story-card::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0;
  z-index: 1;
  position: absolute;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), transparent);
  transition: opacity 0.3s ease;
}
 
.why-v4volt-story-card:hover::before {
  opacity: 1;
}
 
.why-v4volt-story-card:hover .why-v4volt-story-glow {
  opacity: 0.3;
}
 
.why-v4volt-story-text:last-child {
  margin-bottom: 0;
}
 
.why-v4volt-story-text  strong {
  color: #cbd5e1;
  background: linear-gradient(135deg, #10b981, #6ee7b7);
  font-weight: 600;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
 
.why-v4volt-feature-card:hover {
  transform: translateY(-8px);
}
 
.why-v4volt-feature-card:hover .why-v4volt-card-border {
  opacity: 1;
}
 
.why-v4volt-feature-card:hover .why-v4volt-card-glow {
  opacity: 1;
  animation: why-v4volt-rotate 10s linear infinite;
}
 
.why-v4volt-feature-card:hover .why-v4volt-icon-glow {
  opacity: 0.6;
  transform: scale(1.2);
}
 
.why-v4volt-feature-card:hover .why-v4volt-icon {
  color: #6ee7b7;
  transform: scale(1.1) rotateY(360deg);
}
 
.file-upload-wrapper {
  width: 100%;
  position: relative;
}
 
.file-success {
  gap: 6px;
  color: #10b981;
  display: flex;
  opacity: 0;
  font-size: 13px;
  transform: translateY(-5px);
  min-height: 20px;
  transition: all 0.3s ease;
  align-items: center;
}
 
.form-icon4 {
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.file-input-hidden {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  z-index: -1;
  overflow: hidden;
  position: absolute;
}
 
.file-upload-area {
  width: 100%;
  border: 2px dashed rgba(16, 185, 129, 0.3);
  cursor: pointer;
  padding: 32px 24px;
  overflow: hidden;
  position: relative;
  background: rgba(15, 23, 42, 0.6);
  transition: all 0.3s ease;
  border-radius: 12px;
}
 
.file-preview {
  width: 100%;
  border: 2px solid rgba(16, 185, 129, 0.4);
  display: none;
  padding: 16px;
  overflow: hidden;
  position: relative;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 12px;
}
 
.file-upload-content {
  gap: 12px;
  display: flex;
  z-index: 2;
  position: relative;
  align-items: center;
  flex-direction: column;
}
 
.file-upload-border-glow {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  filter: blur(15px);
  opacity: 0;
  z-index: 1;
  position: absolute;
  background: linear-gradient(135deg, #10b981, #34d399);
  transition: opacity 0.3s ease;
  border-radius: 12px;
  pointer-events: none;
}
 
.file-preview-content {
  gap: 16px;
  display: flex;
  z-index: 2;
  position: relative;
  align-items: center;
}
 
.file-preview-progress {
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  overflow: hidden;
  position: absolute;
  background: rgba(16, 185, 129, 0.2);
}
 
.file-upload-icon {
  color: #10b981;
  display: flex;
  animation: float 3s ease-in-out infinite;
  align-items: center;
  justify-content: center;
}
 
.file-upload-text {
  gap: 4px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
 
.file-upload-hint {
  color: #64748b;
  font-size: 12px;
  margin-top: 4px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
 
.file-preview-icon {
  color: #10b981;
  width: 48px;
  height: 48px;
  display: flex;
  background: rgba(16, 185, 129, 0.2);
  align-items: center;
  flex-shrink: 0;
  border-radius: 10px;
  justify-content: center;
}
 
.file-preview-info {
  gap: 4px;
  flex: 1;
  display: flex;
  min-width: 0;
  flex-direction: column;
}
 
.file-preview-remove {
  color: #ef4444;
  width: 36px;
  border: 1px solid rgba(239, 68, 68, 0.3);
  cursor: pointer;
  height: 36px;
  display: flex;
  padding: 0;
  background: rgba(239, 68, 68, 0.1);
  transition: all 0.2s ease;
  align-items: center;
  flex-shrink: 0;
  border-radius: 8px;
  justify-content: center;
}
 
.file-progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #10b981, #34d399);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
  transition: width 0.3s ease;
}
 
.file-upload-primary {
  color: #e2e8f0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
 
.file-upload-secondary {
  color: #94a3b8;
  font-size: 14px;
  font-weight: 400;
}
 
.file-preview-name {
  color: #e2e8f0;
  overflow: hidden;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
}
 
.file-preview-size {
  color: #94a3b8;
  font-size: 13px;
  font-weight: 500;
}
 
.file-upload-area:hover {
  background: rgba(15, 23, 42, 0.8);
  border-color: rgba(16, 185, 129, 0.6);
}
 
.file-upload-area.drag-over {
  transform: scale(1.02);
  background: rgba(16, 185, 129, 0.1);
  border-color: #10b981;
}
 
.file-upload-area:hover .file-upload-border-glow {
  opacity: 0.3;
}
 
.file-preview.active {
  display: block;
  animation: slideIn 0.3s ease-out;
}
 
.file-preview-remove:hover {
  transform: scale(1.1);
  background: rgba(239, 68, 68, 0.2);
  border-color: #ef4444;
}
 
.file-success.show {
  opacity: 1;
  transform: translateY(0);
}
 

 
.file-upload-section {
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  max-width: 600px;
}
 
.file-upload-container {
  width: 100%;
  position: relative;
}
 
.file-upload-label {
  gap: 4px;
  display: flex;
  margin-bottom: 16px;
  flex-direction: column;
}
 
.file-dropzone {
  width: 100%;
  border: 2px dashed #34d399;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #f8fdf9 0%, #e8f9ed 100%);
  min-height: 280px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 16px;
}
 
.file-error-message {
  gap: 8px;
  border: 1px solid #fecaca;
  display: flex;
  padding: 12px 16px;
  animation: slideIn 0.3s ease;
  background: #fef2f2;
  margin-top: 12px;
  align-items: center;
  border-radius: 8px;
}
 
.label-text {
  color: #1a1a1a;
  font-size: 14px;
  font-family: Inter, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
 
.label-subtitle {
  color: #666;
  font-size: 12px;
  font-family: Inter, sans-serif;
  font-weight: 500;
}
 
.dropzone-content {
  gap: 16px;
  display: flex;
  padding: 40px 24px;
  z-index: 2;
  position: relative;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
 
.home-file-preview {
  width: 100%;
  padding: 24px;
  z-index: 2;
  position: relative;
  animation: slideIn 0.4s ease;
}
 
.error-icon {
  color: #ef4444;
  flex-shrink: 0;
}
 
.upload-icon-wrapper {
  width: 80px;
  height: 80px;
  display: flex;
  animation: float 3s ease-in-out infinite;
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3),
      0 0 0 8px rgba(16, 185, 129, 0.1),
      inset 0 2px 8px rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease;
  align-items: center;
  border-radius: 50%;
  justify-content: center;
}
 
.dropzone-title {
  color: #1a1a1a;
  margin: 0;
  font-size: 20px;
  text-align: center;
  font-family: Inter, sans-serif;
  font-weight: 700;
}
 
.dropzone-text {
  color: #666;
  margin: 0;
  font-size: 14px;
  text-align: center;
  font-family: Inter, sans-serif;
  font-weight: 500;
}
 
.file-upload-btn {
  gap: 8px;
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  padding: 12px 28px;
  font-size: 14px;
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3),
      inset 0 1px 2px rgba(255, 255, 255, 0.3);
  margin-top: 8px;
  transition: all 0.3s ease;
  align-items: center;
  font-family: Inter, sans-serif;
  font-weight: 600;
  border-radius: 12px;
}
 
.preview-content {
  gap: 16px;
  display: flex;
  padding: 16px;
  position: relative;
  background: white;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.1),
      0 0 0 1px rgba(16, 185, 129, 0.1);
  align-items: center;
  border-radius: 12px;
}
 
.preview-thumbnail {
  width: 100%;
  display: none;
  overflow: hidden;
  margin-top: 12px;
  max-height: 200px;
  border-radius: 8px;
}
 
.upload-icon {
  color: white;
  width: 48px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  height: 48px;
}
 
.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.btn-text {
  font-family: Inter, sans-serif;
  font-weight: 600;
  letter-spacing: 0.3px;
}
 
.file-icon-wrapper {
  width: 56px;
  height: 56px;
  display: flex;
  position: relative;
  background: linear-gradient(135deg, #e8f9ed 0%, #d1f4e0 100%);
  align-items: center;
  flex-shrink: 0;
  border-radius: 12px;
  justify-content: center;
}
 
.file-info {
  flex: 1;
  min-width: 0;
}
 
.remove-file-btn {
  width: 36px;
  border: none;
  cursor: pointer;
  height: 36px;
  display: flex;
  background: #fee2e2;
  transition: all 0.3s ease;
  align-items: center;
  flex-shrink: 0;
  border-radius: 8px;
  justify-content: center;
}
 
.file-icon {
  color: #10b981;
  width: 32px;
  height: 32px;
}
 
.success-badge {
  top: -6px;
  right: -6px;
  width: 24px;
  border: 2px solid white;
  height: 24px;
  display: flex;
  position: absolute;
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
  align-items: center;
  border-radius: 50%;
  justify-content: center;
}
 
.file-name {
  color: #1a1a1a;
  margin: 0 0 4px 0;
  overflow: hidden;
  font-size: 14px;
  font-family: Inter, sans-serif;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
}
 
.file-size {
  color: #10b981;
  margin: 0;
  font-size: 12px;
  font-family: Inter, sans-serif;
  font-weight: 500;
}
 
.file-dropzone::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  opacity: 0;
  z-index: 1;
  position: absolute;
  background: linear-gradient(
      135deg,
      rgba(16, 185, 129, 0.1) 0%,
      rgba(52, 211, 153, 0.15) 50%,
      rgba(16, 185, 129, 0.1) 100%
    );
  transition: opacity 0.4s ease;
}
 
.file-dropzone:hover::before {
  opacity: 1;
}
 
.file-dropzone:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.1),
      0 8px 32px rgba(16, 185, 129, 0.15),
      inset 0 0 60px rgba(52, 211, 153, 0.08);
  border-color: #10b981;
}
 
.file-dropzone.drag-over {
  transform: scale(1.02);
  background: linear-gradient(135deg, #e8f9ed 0%, #d1f4e0 100%);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15),
      0 12px 48px rgba(16, 185, 129, 0.25),
      inset 0 0 80px rgba(52, 211, 153, 0.15);
  border-color: #10b981;
}
 
.file-dropzone.has-error {
  animation: shake 0.5s ease;
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border-color: #ef4444;
}
 
.file-dropzone:hover .upload-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}
 
.file-upload-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4),
      inset 0 1px 2px rgba(255, 255, 255, 0.3);
}
 
.file-upload-btn:active {
  transform: translateY(0);
}
 
.success-badge  svg {
  color: white;
  width: 16px;
  height: 16px;
}
 
.remove-file-btn:hover {
  transform: rotate(90deg) scale(1.1);
  background: #ef4444;
}
 
.remove-file-btn:hover svg {
  color: white;
}
 
.remove-file-btn  svg {
  color: #ef4444;
  width: 20px;
  height: 20px;
  transition: color 0.3s ease;
}
 
.preview-thumbnail  img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
 
.file-error-message  span {
  color: #dc2626;
  font-size: 13px;
  font-family: Inter, sans-serif;
  font-weight: 500;
  line-height: 1.4;
}
 
.v4volt-hero-section {
  width: 100%;
  display: flex;
  padding: 120px 0 80px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #0a1628 0%, #0d2847 50%, #0f3460 100%);
  min-height: 100vh;
  align-items: center;
}
 
.hero-bg-pattern {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
  background-size: 100% 100%;
  background-image: radial-gradient(
        circle at 20% 30%,
        rgba(16, 185, 129, 0.08) 0%,
        transparent 50%
      ),radial-gradient(
        circle at 80% 70%,
        rgba(59, 130, 246, 0.08) 0%,
        transparent 50%
      ),radial-gradient(
        circle at 50% 50%,
        rgba(245, 158, 11, 0.05) 0%,
        transparent 50%
      );
}
 
.hero-floating-orb {
  filter: blur(60px);
  opacity: 0.4;
  z-index: 1;
  position: absolute;
  animation: heroFloatOrb 20s ease-in-out infinite;
  border-radius: 50%;
}
 
.hero-orb-1 {
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  animation-delay: 0s;
}
 
.hero-orb-2 {
  top: 50%;
  right: -50px;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  animation-delay: 7s;
}
 
.hero-orb-3 {
  left: 30%;
  width: 250px;
  bottom: 10%;
  height: 250px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  animation-delay: 14s;
}
 
.hero-main-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  z-index: 3;
  position: relative;
  max-width: 1400px;
}
 
.home-hero-content-wrapper {
  gap: 80px;
  display: grid;
  align-items: center;
  grid-template-columns: 1.1fr 1fr;
}
 
.hero-text-column {
  gap: 32px;
  display: flex;
  flex-direction: column;
}
 
.hero-visual-column {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
}
 
.home-hero-badge {
  gap: 10px;
  width: fit-content;
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: inline-flex;
  padding: 10px 20px;
  background: linear-gradient(
      135deg,
      rgba(16, 185, 129, 0.15) 0%,
      rgba(59, 130, 246, 0.15) 100%
    );
  transition: all 0.3s ease;
  align-items: center;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}
 
.hero-main-title {
  color: #ffffff;
  margin: 0;
  font-size: 64px;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
}
 
.hero-description {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 18px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.7;
}
 
.hero-invitation-box {
  gap: 16px;
  display: flex;
  padding: 24px;
  background: linear-gradient(
      135deg,
      rgba(16, 185, 129, 0.1) 0%,
      rgba(59, 130, 246, 0.1) 100%
    );
  transition: all 0.3s ease;
  border-left: 4px solid #10b981;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}
 
.hero-cta-button {
  gap: 12px;
  width: fit-content;
  border: none;
  cursor: pointer;
  display: inline-flex;
  padding: 18px 40px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3),
      0 0 0 0 rgba(245, 158, 11, 0.5);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  align-items: center;
  border-radius: 50px;
}
 
.hero-trust-row {
  gap: 24px;
  display: flex;
  padding: 24px 0;
  align-items: center;
}
 
.hero-image-container {
  width: 100%;
  height: 600px;
  position: relative;
}
 
.hero-badge-icon {
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.hero-badge-text {
  color: #10b981;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: 0.3px;
}
 
.hero-brand-highlight {
  display: inline-block;
  position: relative;
  animation: heroGradientShift 5s ease infinite;
  background: linear-gradient(135deg, #10b981 0%, #3b82f6 50%, #f59e0b 100%);
  background-clip: text;
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
 
.hero-invitation-icon {
  color: #ffffff;
  width: 40px;
  height: 40px;
  display: flex;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  align-items: center;
  flex-shrink: 0;
  border-radius: 10px;
  justify-content: center;
}
 
.hero-invitation-text {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  line-height: 1.6;
}
 
.hero-cta-text {
  color: #ffffff;
  z-index: 2;
  position: relative;
  font-size: 18px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}
 
.hero-cta-icon {
  color: #ffffff;
  width: 30px;
  height: 30px;
  display: flex;
  z-index: 2;
  position: relative;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  align-items: center;
  border-radius: 50%;
  justify-content: center;
}
 
.hero-cta-glow {
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  position: absolute;
  transform: translate(-50%, -50%);
  background: radial-gradient(
      circle,
      rgba(255, 255, 255, 0.3) 0%,
      transparent 70%
    );
  transition: opacity 0.4s ease;
}
 
.hero-trust-item {
  gap: 4px;
  display: flex;
  flex-direction: column;
}
 
.hero-trust-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(255, 255, 255, 0.2) 50%,
      transparent 100%
    );
}
 
.hero-main-image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  transform: perspective(1000px) rotateY(-5deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4),
      0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 30px;
}
 
.hero-floating-card {
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  padding: 16px 20px;
  z-index: 3;
  position: absolute;
  background: rgba(10, 22, 40, 0.9);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  align-items: center;
  border-radius: 16px;
  backdrop-filter: blur(20px);
}
 
.hero-card-1 {
  top: 10%;
  right: -30px;
  animation: heroCardFloat 6s ease-in-out infinite;
}
 
.hero-card-2 {
  top: 45%;
  left: -40px;
  animation: heroCardFloat 6s ease-in-out infinite 2s;
}
 
.hero-card-3 {
  right: -20px;
  bottom: 15%;
  animation: heroCardFloat 6s ease-in-out infinite 4s;
}
 
.hero-energy-grid {
  left: -80px;
  width: 250px;
  bottom: -80px;
  height: 250px;
  z-index: 2;
  overflow: hidden;
  position: absolute;
  transform: rotate(-12deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
      0 0 0 1px rgba(16, 185, 129, 0.3);
  transition: all 0.4s ease;
  border-radius: 20px;
}
 
.hero-trust-number {
  font-size: 32px;
  background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
  font-family: "Inter", sans-serif;
  font-weight: 800;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
 
.hero-trust-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
 
.hero-image-glow {
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  z-index: 2;
  position: absolute;
  animation: heroRotateGlow 10s linear infinite;
  background: radial-gradient(
      circle,
      rgba(16, 185, 129, 0.3) 0%,
      transparent 70%
    );
  pointer-events: none;
}
 
.hero-main-image {
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
  position: relative;
  object-fit: cover;
}
 
.hero-card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  border-radius: 12px;
  justify-content: center;
}
 
.hero-card-icon-green {
  color: #ffffff;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}
 
.hero-card-content {
  gap: 2px;
  display: flex;
  flex-direction: column;
}
 
.hero-card-icon-blue {
  color: #ffffff;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}
 
.hero-card-icon-orange {
  color: #ffffff;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}
 
.hero-energy-image {
  width: 100%;
  filter: saturate(1.2) brightness(1.1);
  height: 100%;
  object-fit: cover;
}
 
.hero-card-title {
  color: #ffffff;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}
 
.hero-card-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}
 
.home-hero-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
  border-color: rgba(16, 185, 129, 0.6);
}
 
.hero-brand-highlight::after {
  left: 0;
  width: 100%;
  bottom: -5px;
  height: 4px;
  content: "";
  opacity: 0.6;
  position: absolute;
  background: linear-gradient(90deg, #10b981 0%, #3b82f6 50%, #f59e0b 100%);
  border-radius: 2px;
}
 
.hero-invitation-box:hover {
  transform: translateX(5px);
  background: linear-gradient(
      135deg,
      rgba(16, 185, 129, 0.15) 0%,
      rgba(59, 130, 246, 0.15) 100%
    );
  border-left-color: #3b82f6;
}
 
.hero-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.4),
      0 0 0 8px rgba(245, 158, 11, 0.1);
}
 
.hero-cta-button:active {
  transform: translateY(-1px);
}
 
.hero-cta-button:hover .hero-cta-icon {
  transform: rotate(45deg) scale(1.1);
  background: rgba(255, 255, 255, 0.3);
}
 
.hero-cta-button:hover .hero-cta-glow {
  opacity: 1;
  animation: heroPulseGlow 2s ease-in-out infinite;
}
 
.hero-main-image-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(255, 255, 255, 0.2);
}
 
.hero-floating-card:hover {
  transform: translateY(-5px) scale(1.05);
  border-color: rgba(16, 185, 129, 0.5);
}
 
.hero-energy-grid:hover {
  transform: rotate(0deg) scale(1.05);
}
 
.Content {
  font-size: 16px;
  font-family: Inter;
  font-weight: 400;
  line-height: 1.15;
  text-transform: none;
  text-decoration: none;
}
 
@media(max-width: 1200px) {
  .home-hero-content-wrapper {
    gap: 60px;
  }
  .hero-main-title {
    font-size: 52px;
  }
  .hero-description {
    font-size: 16px;
  }
  .hero-image-container {
    height: 500px;
  }
  .hero-floating-card {
    padding: 12px 16px;
  }
  .hero-card-title {
    font-size: 13px;
  }
  .hero-card-text {
    font-size: 11px;
  }
}
 
@media(max-width: 991px) {
  .thq-grid-4 {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .hero-content-wrapper {
    padding: 100px 30px 60px;
  }
  .hero-headline {
    font-size: 56px;
  }
  .hero-subtitle {
    font-size: 18px;
  }
  .decorative-circle-1 {
    width: 300px;
    height: 300px;
  }
  .decorative-circle-2 {
    width: 300px;
    height: 300px;
  }
  .how-it-works-section {
    padding: 70px 20px;
  }
  .section-title {
    font-size: 2.5rem;
  }
  .section-description {
    font-size: 1.125rem;
  }
  .step-card {
    gap: 24px;
    padding: 32px 24px;
  }
  .icon-circle {
    width: 70px;
    height: 70px;
  }
  .step-title {
    font-size: 1.25rem;
  }
  .step-text {
    font-size: 1rem;
  }
  .home-how-it-works-section {
    padding: 70px 20px;
  }
  .home-section-title {
    font-size: 2.5rem;
  }
  .home-icon-circle {
    width: 70px;
    height: 70px;
  }
  .renovables-content-grid {
    gap: 60px;
    grid-template-columns: 1fr;
  }
  .renovables-image-accent {
    left: auto;
    width: 100%;
    bottom: auto;
    height: 240px;
    position: relative;
    max-width: 400px;
    margin-top: 40px;
  }
  .renovables-main-title {
    font-size: 44px;
  }
  .home-renovables-image-accent {
    left: auto;
    width: 100%;
    bottom: auto;
    height: 240px;
    position: relative;
    max-width: 400px;
    margin-top: 40px;
  }
  .home-renovables-main-title {
    font-size: 44px;
  }
  .why-v4volt-section {
    padding: 80px 24px;
  }
  .why-bg-orb-1 {
    width: 400px;
    height: 400px;
  }
  .why-bg-orb-2 {
    width: 350px;
    height: 350px;
  }
  .why-header-wrapper {
    margin-bottom: 60px;
  }
  .why-feature-card {
    padding: 48px 36px;
  }
  .why-main-title {
    font-size: 44px;
  }
  .why-subtitle {
    font-size: 18px;
  }
  .why-feature-title {
    font-size: 28px;
  }
  .contact-section {
    padding: 80px 20px;
  }
  .contact-form-wrapper {
    padding: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .contact-info-grid {
    gap: 16px;
    grid-template-columns: 1fr;
  }
  .contact-title {
    font-size: 42px;
  }
  .info-card {
    padding: 24px;
  }
  .home-why-v4volt-section {
    padding: 80px 0;
  }
  .why-v4volt-header {
    margin-bottom: 60px;
  }
  .why-v4volt-story-wrapper {
    margin-bottom: 60px;
  }
  .why-v4volt-features-grid {
    gap: 24px;
    grid-template-columns: 1fr;
  }
  .why-v4volt-title {
    font-size: 42px;
  }
  .why-v4volt-subtitle {
    font-size: 18px;
  }
  .why-v4volt-story-card {
    padding: 36px;
  }
  .why-v4volt-card-title {
    font-size: 28px;
  }
  .why-v4volt-card-description {
    font-size: 16px;
  }
  .v4volt-hero-section {
    padding: 100px 0 60px;
  }
  .hero-main-container {
    padding: 0 30px;
  }
  .home-hero-content-wrapper {
    gap: 60px;
    grid-template-columns: 1fr;
  }
  .hero-visual-column {
    order: -1;
  }
  .hero-main-title {
    font-size: 48px;
  }
  .hero-trust-row {
    justify-content: space-between;
  }
  .hero-image-container {
    height: 450px;
  }
  .hero-main-image-wrapper {
    transform: perspective(1000px) rotateY(0deg);
  }
}
 
@media(max-width: 767px) {
  .thq-section-padding {
    padding: var(--dl-layout-space-threeunits);
  }
  .thq-flex-column {
    gap: var(--dl-layout-space-oneandhalfunits);
  }
  .thq-flex-row {
    gap: var(--dl-layout-space-oneandhalfunits);
  }
  .thq-grid-6 {
    grid-gap: var(--dl-layout-space-oneandhalfunits);
    grid-template-columns: 1fr 1fr 1fr;
  }
  .thq-grid-5 {
    grid-gap: var(--dl-layout-space-oneandhalfunits);
    grid-template-columns: 1fr 1fr 1fr;
  }
  .thq-card {
    padding: var(--dl-layout-space-oneandhalfunits);
  }
  .thq-grid-3 {
    grid-gap: var(--dl-layout-space-oneandhalfunits);
    grid-template-columns: 1fr 1fr;
  }
  .thq-grid-4 {
    grid-gap: var(--dl-layout-space-oneandhalfunits);
    flex-direction: row;
    grid-template-columns: 1fr 1fr;
  }
  .thq-grid-2 {
    grid-gap: var(--dl-layout-space-oneandhalfunits);
    grid-template-columns: 1fr;
  }
  .thq-img-scale {
    width: 100%;
  }
  .hero-content-wrapper {
    padding: 80px 24px 50px;
  }
  .hero-headline {
    font-size: 42px;
    margin-bottom: 24px;
    letter-spacing: -1px;
  }
  .hero-subtitle {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 40px;
  }
  .hero-cta-wrapper {
    gap: 16px;
    margin-bottom: 50px;
    flex-direction: column;
  }
  .decorative-line {
    display: none;
  }
  .cta-button {
    width: 100%;
    padding: 16px 32px;
    font-size: 16px;
    max-width: 400px;
    justify-content: center;
  }
  .trust-badges {
    gap: 12px;
    flex-direction: column;
  }
  .trust-badge-divider {
    display: none;
  }
  .how-it-works-section {
    padding: 60px 16px;
  }
  .header-content {
    margin-bottom: 50px;
  }
  .section-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .section-description {
    font-size: 1rem;
  }
  .steps-grid {
    gap: 24px;
  }
  .home-cta-button {
    width: 100%;
    padding: 18px 36px;
    font-size: 1.125rem;
    max-width: 360px;
    justify-content: center;
  }
  .cta-subtext {
    font-size: 0.875rem;
  }
  .step-card {
    gap: 20px;
    padding: 32px 20px 24px;
    text-align: center;
    grid-template-columns: 1fr;
  }
  .step-number-badge {
    left: 50%;
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
    transform: translateX(-50%);
  }
  .icon-circle {
    width: 64px;
    height: 64px;
    margin: 0 auto;
  }
  .icon-circle  svg {
    width: 28px;
    height: 28px;
  }
  .step-title {
    font-size: 1.125rem;
  }
  .step-text {
    font-size: 0.95rem;
  }
  .home-how-it-works-section {
    padding: 60px 16px;
  }
  .home-section-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .home-home-cta-button {
    width: 100%;
    padding: 18px 36px;
    font-size: 1.125rem;
    max-width: 360px;
    justify-content: center;
  }
  .home-step-number-badge {
    left: 50%;
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
    transform: translateX(-50%);
  }
  .home-icon-circle {
    width: 64px;
    height: 64px;
    margin: 0 auto;
  }
  .renovables-section {
    padding: 80px 20px;
  }
  .renovables-bg-accent {
    width: 400px;
    height: 400px;
  }
  .renovables-bg-gradient {
    width: 400px;
    height: 400px;
  }
  .renovables-services-card {
    padding: 40px 30px;
  }
  .renovables-main-title {
    font-size: 36px;
  }
  .renovables-subtitle {
    font-size: 18px;
  }
  .renovables-service-icon {
    width: 48px;
    height: 48px;
  }
  .renovables-service-title {
    font-size: 16px;
  }
  .home-renovables-section {
    padding: 80px 20px;
  }
  .home-renovables-bg-accent {
    width: 400px;
    height: 400px;
  }
  .home-renovables-bg-gradient {
    width: 400px;
    height: 400px;
  }
  .home-renovables-services-card {
    padding: 40px 30px;
  }
  .home-renovables-main-title {
    font-size: 36px;
  }
  .home-renovables-subtitle {
    font-size: 18px;
  }
  .home-renovables-service-icon {
    width: 48px;
    height: 48px;
  }
  .home-renovables-service-title {
    font-size: 16px;
  }
  .why-v4volt-section {
    padding: 60px 20px;
  }
  .why-bg-orb-1 {
    width: 300px;
    height: 300px;
  }
  .why-bg-orb-2 {
    width: 250px;
    height: 250px;
  }
  .why-header-wrapper {
    margin-bottom: 48px;
  }
  .why-feature-card {
    padding: 40px 28px;
    border-radius: 20px;
  }
  .why-main-title {
    font-size: 36px;
  }
  .why-subtitle {
    font-size: 16px;
  }
  .why-card-border-gradient {
    border-radius: 20px;
  }
  .why-card-content {
    gap: 24px;
  }
  .why-icon-glow {
    width: 100px;
    height: 100px;
  }
  .why-icon-container {
    width: 70px;
    height: 70px;
  }
  .why-feature-title {
    font-size: 24px;
  }
  .why-feature-description {
    font-size: 16px;
  }
  .contact-section {
    padding: 60px 16px;
  }
  .contact-bg-glow-1 {
    width: 400px;
    height: 400px;
  }
  .contact-bg-glow-2 {
    width: 400px;
    height: 400px;
  }
  .contact-bg-glow-3 {
    width: 300px;
    height: 300px;
  }
  .contact-form-wrapper {
    padding: 30px 20px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .contact-title {
    font-size: 36px;
  }
  .contact-description {
    font-size: 16px;
  }
  .form-corner-accent {
    width: 30px;
    height: 30px;
  }
  .contact-form {
    gap: 24px;
  }
  .success-icon {
    width: 60px;
    height: 60px;
  }
  .success-title {
    font-size: 24px;
  }
  .success-text {
    font-size: 16px;
  }
  .form-input {
    padding: 14px 16px;
    font-size: 15px;
  }
  .submit-btn-text {
    font-size: 14px;
  }
  .home-why-v4volt-section {
    padding: 60px 0;
  }
  .why-v4volt-bg-orb-1 {
    width: 300px;
    height: 300px;
  }
  .why-v4volt-bg-orb-2 {
    width: 300px;
    height: 300px;
  }
  .why-v4volt-header {
    margin-bottom: 48px;
  }
  .why-v4volt-title {
    font-size: 36px;
  }
  .why-v4volt-subtitle {
    font-size: 16px;
  }
  .why-v4volt-story-card {
    padding: 28px;
  }
  .why-v4volt-feature-card {
    padding: 36px 24px;
  }
  .why-v4volt-icon-container {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
  }
  .why-v4volt-card-title {
    font-size: 24px;
  }
  .why-v4volt-story-text {
    font-size: 16px;
  }
  .why-v4volt-icon {
    width: 40px;
    height: 40px;
  }
  .file-upload-area {
    padding: 24px 16px;
  }
  .file-preview {
    padding: 12px;
  }
  .file-preview-icon {
    width: 40px;
    height: 40px;
  }
  .file-upload-primary {
    font-size: 15px;
  }
  .file-upload-secondary {
    font-size: 13px;
  }
  .file-preview-name {
    font-size: 14px;
  }
  .file-upload-section {
    padding: 16px;
  }
  .dropzone-content {
    padding: 32px 16px;
  }
  .upload-icon-wrapper {
    width: 64px;
    height: 64px;
  }
  .dropzone-title {
    font-size: 18px;
  }
  .dropzone-text {
    font-size: 13px;
  }
  .file-upload-btn {
    padding: 10px 24px;
    font-size: 13px;
  }
  .preview-content {
    gap: 12px;
    align-items: flex-start;
    flex-direction: column;
  }
  .upload-icon {
    width: 36px;
    height: 36px;
  }
  .remove-file-btn {
    top: 12px;
    right: 12px;
    position: absolute;
  }
  .v4volt-hero-section {
    padding: 80px 0 50px;
    min-height: auto;
  }
  .hero-main-container {
    padding: 0 20px;
  }
  .hero-text-column {
    gap: 24px;
  }
  .hero-main-title {
    font-size: 38px;
  }
  .hero-description {
    font-size: 15px;
  }
  .hero-invitation-box {
    padding: 20px;
  }
  .hero-cta-button {
    width: 100%;
    padding: 16px 32px;
    justify-content: center;
  }
  .hero-trust-row {
    gap: 16px;
    flex-wrap: wrap;
  }
  .hero-image-container {
    height: 400px;
  }
  .hero-invitation-text {
    font-size: 15px;
  }
  .hero-cta-text {
    font-size: 16px;
  }
  .hero-trust-item {
    flex: 1;
    min-width: 120px;
  }
  .hero-trust-divider {
    display: none;
  }
  .hero-floating-card {
    padding: 10px 14px;
  }
  .hero-card-1 {
    top: 5%;
    right: -20px;
  }
  .hero-card-2 {
    left: -30px;
  }
  .hero-card-3 {
    right: -15px;
    bottom: 10%;
  }
  .hero-energy-grid {
    left: -60px;
    width: 200px;
    bottom: -60px;
    height: 200px;
  }
  .hero-card-icon {
    width: 35px;
    height: 35px;
  }
}
 
@media(max-width: 479px) {
  .thq-section-padding {
    padding: var(--dl-layout-space-oneandhalfunits);
  }
  .thq-flex-column {
    gap: var(--dl-layout-space-unit);
  }
  .thq-flex-row {
    gap: var(--dl-layout-space-unit);
  }
  .thq-grid-6 {
    grid-gap: var(--dl-layout-space-unit);
    grid-template-columns: 1fr 1fr;
  }
  .thq-grid-5 {
    grid-gap: var(--dl-layout-space-unit);
    grid-template-columns: 1fr 1fr;
  }
  .thq-grid-3 {
    grid-gap: var(--dl-layout-space-unit);
    align-items: center;
    grid-template-columns: 1fr;
  }
  .thq-grid-4 {
    grid-gap: var(--dl-layout-space-unit);
    align-items: center;
    flex-direction: column;
    grid-template-columns: 1fr;
  }
  .thq-grid-2 {
    grid-gap: var(--dl-layout-space-unit);
  }
  .thq-grid-auto-300 {
    grid-template-columns: 1fr;
  }
  .hero-content-wrapper {
    padding: 60px 20px 40px;
  }
  .hero-badge {
    padding: 8px 16px;
    font-size: 13px;
  }
  .hero-headline {
    font-size: 36px;
  }
  .hero-subtitle {
    font-size: 16px;
  }
  .trust-headline {
    font-size: 14px;
    text-align: center;
  }
  .trust-badge {
    font-size: 13px;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .section-description {
    font-size: 0.95rem;
  }
  .home-cta-button {
    padding: 16px 28px;
    font-size: 1rem;
  }
  .step-card {
    padding: 28px 16px 20px;
  }
  .home-section-title {
    font-size: 1.75rem;
  }
  .home-home-cta-button {
    padding: 16px 28px;
    font-size: 1rem;
  }
  .renovables-services-card {
    padding: 30px 20px;
  }
  .renovables-main-title {
    font-size: 32px;
  }
  .renovables-cta-btn {
    width: 100%;
    padding: 16px 30px;
    justify-content: center;
  }
  .renovables-services-list {
    gap: 28px;
  }
  .renovables-service-icon {
    width: 44px;
    height: 44px;
  }
  .home-renovables-services-card {
    padding: 30px 20px;
  }
  .home-renovables-main-title {
    font-size: 32px;
  }
  .home-renovables-cta-btn {
    width: 100%;
    padding: 16px 30px;
    justify-content: center;
  }
  .home-renovables-service-icon {
    width: 44px;
    height: 44px;
  }
  .why-v4volt-section {
    padding: 48px 16px;
  }
  .why-header-wrapper {
    margin-bottom: 40px;
  }
  .why-feature-card {
    padding: 32px 24px;
    border-radius: 16px;
  }
  .why-float-element {
    display: none;
  }
  .why-title-decorator {
    width: 60px;
    height: 3px;
    margin-bottom: 24px;
  }
  .why-main-title {
    font-size: 28px;
  }
  .why-subtitle {
    font-size: 15px;
  }
  .why-card-border-gradient {
    border-radius: 16px;
  }
  .why-card-content {
    gap: 20px;
  }
  .why-card-corner {
    width: 16px;
    height: 16px;
  }
  .why-icon-glow {
    width: 90px;
    height: 90px;
  }
  .why-icon-container {
    width: 64px;
    height: 64px;
  }
  .why-feature-title {
    font-size: 22px;
  }
  .why-feature-description {
    font-size: 15px;
  }
  .contact-form-wrapper {
    padding: 24px 16px;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .contact-title {
    font-size: 28px;
  }
  .contact-description {
    font-size: 15px;
  }
  .contact-submit-btn {
    padding: 16px 24px;
  }
  .submit-btn-text {
    font-size: 13px;
  }
  .home-why-v4volt-section {
    padding: 48px 0;
  }
  .why-v4volt-header {
    margin-bottom: 40px;
  }
  .why-v4volt-story-wrapper {
    margin-bottom: 48px;
  }
  .why-v4volt-features-grid {
    gap: 20px;
  }
  .why-v4volt-title {
    font-size: 28px;
  }
  .why-v4volt-subtitle {
    font-size: 15px;
  }
  .why-v4volt-story-card {
    padding: 24px;
    border-radius: 16px;
  }
  .why-v4volt-feature-card {
    padding: 28px 20px;
    border-radius: 16px;
  }
  .why-v4volt-card-title {
    font-size: 22px;
    margin-bottom: 12px;
  }
  .why-v4volt-card-description {
    font-size: 15px;
  }
  .why-v4volt-story-text {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .file-upload-area {
    padding: 20px 12px;
  }
  .file-preview-content {
    gap: 12px;
  }
  .file-upload-hint {
    font-size: 11px;
  }
  .file-preview-remove {
    width: 32px;
    height: 32px;
  }
  .file-upload-primary {
    font-size: 14px;
  }
  .file-upload-secondary {
    font-size: 12px;
  }
  .file-upload-icon  svg {
    width: 28px;
    height: 28px;
  }
  .file-dropzone {
    min-height: 240px;
  }
  .label-text {
    font-size: 13px;
  }
  .label-subtitle {
    font-size: 11px;
  }
  .dropzone-content {
    gap: 12px;
    padding: 24px 12px;
  }
  .upload-icon-wrapper {
    width: 56px;
    height: 56px;
  }
  .hero-orb-1 {
    opacity: 0.2;
  }
  .hero-orb-2 {
    opacity: 0.2;
  }
  .hero-orb-3 {
    opacity: 0.2;
  }
  .home-hero-badge {
    padding: 8px 16px;
  }
  .hero-main-title {
    font-size: 32px;
    letter-spacing: -0.5px;
  }
  .hero-description {
    font-size: 14px;
    line-height: 1.6;
  }
  .hero-invitation-box {
    gap: 12px;
    padding: 16px;
    flex-direction: column;
  }
  .hero-image-container {
    height: 350px;
  }
  .hero-badge-text {
    font-size: 12px;
  }
  .hero-invitation-icon {
    width: 36px;
    height: 36px;
  }
  .hero-invitation-text {
    font-size: 14px;
  }
  .hero-card-1 {
    padding: 8px 12px;
  }
  .hero-card-2 {
    padding: 8px 12px;
  }
  .hero-card-3 {
    padding: 8px 12px;
  }
  .hero-energy-grid {
    left: -40px;
    width: 150px;
    bottom: -40px;
    height: 150px;
  }
  .hero-trust-number {
    font-size: 24px;
  }
  .hero-trust-label {
    font-size: 11px;
  }
  .hero-card-icon {
    width: 30px;
    height: 30px;
  }
  .hero-card-title {
    font-size: 12px;
  }
  .hero-card-text {
    font-size: 10px;
  }
}
