:root {
  --bg-primary: #00091a;
  --bg-section: #060a0b;
  --bg-card: #101516;
  --green: #6af741;
  --green-bright: #6af73f;
  --green-dark: #176800;
  --text-muted: #6b7380;
  --gradient-btn: linear-gradient(
    90deg,
    #00296a 0%,
    #0f4764 30%,
    #1e625e 47%,
    #297959 68%,
    #6af73f 100%
  );
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--bg-primary);
  color: #fff;
  overflow-x: hidden;
}

.font-krona {
  font-family: "Krona One", sans-serif;
}

.font-barlow {
  font-family: "Barlow Condensed", sans-serif;
}

.text-green {
  color: var(--green) !important;
}

.bg-section {
  background: var(--bg-section);
}

/* Navbar */
.navbar-divg {
  backdrop-filter: blur(17.5px);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px!important;
  padding: 1.25rem 0;
  max-width: 1780px;
  margin: 0 auto;
}

.navbar-divg .nav-link {
  color: #fff;
  font-weight: 300;
  font-size: 14px;
  padding: 0.25rem 0;
  position: relative;
  transition: color 0.25s ease;
}

.navbar-divg .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.25s ease;
}

.navbar-divg .nav-link:hover::after,
.navbar-divg .nav-link.active::after {
  width: 100%;
}

.navbar-divg .nav-link.active {
  color: var(--green);
}

.navbar-brand img {
  height: 40px;
  width: auto;
}

/* Buttons */
.btn-gradient,
.btn-outline-green,
.btn-solid-green,
.btn-dark-slate {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(106, 247, 63, 0.35);
  color: #fff;
}

.btn-gradient i,
.btn-outline-green i,
.btn-solid-green i,
.btn-dark-slate i {
  transition: transform 0.25s ease;
}

.btn-gradient:hover i,
.btn-outline-green:hover i,
.btn-solid-green:hover i,
.btn-dark-slate:hover i {
  transform: translate(3px, -3px);
}

.btn-outline-green:hover {
  background: var(--green-bright);
  color: var(--bg-primary);
  border-color: var(--green-bright);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(106, 247, 65, 0.25);
}

.btn-dark-slate:hover {
  background: #3d5675;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(51, 72, 96, 0.5);
}

.btn-gradient {
  background: var(--gradient-btn);
  border: none;
  color: #fff;
  font-weight: 700;
  border-radius: 100px;
  padding: 0.85rem 2rem;
}

.btn-outline-green {
  border: 1px solid var(--green-bright);
  color: var(--green-bright);
  background: transparent;
  font-weight: 300;
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 14px;
}

.btn-solid-green {
  background: var(--green-bright);
  color: var(--bg-primary);
  font-weight: 300;
  border-radius: 100px;
  padding: 10px 20px;
  border: none;
  font-size: 14px;
}

.btn-solid-green:hover {
  background: var(--green);
  color: var(--bg-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(106, 247, 63, 0.45);
}

.btn-dark-slate {
  background: #334860;
  border: none;
  color: #fff;
  font-weight: 700;
  border-radius: 100px;
  padding: 0.85rem 2rem;
}

.btn-dark-slate:hover {
  background: #3d5675;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(51, 72, 96, 0.5);
}

/* Hero */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 150px;
  padding-bottom: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 9, 26, 0.36);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero .lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.55;
  font-weight: 600;
  max-width: 900px;
  margin: 0 auto;
}

.hero-tagline {
  color: var(--green);
  font-size: clamp(1rem, 2vw, 1.35rem);
}

/* Section titles */
.section-title {
  font-size: clamp(1.25rem, 3vw, 2rem);
  letter-spacing: -0.02em;
}

.section-texture {
  background-image: url("../assets/section-texture.png");
  background-size: cover;
  background-position: center top;
}

/* About */
.about-image-wrap {
  position: relative;
  max-width: 520px;
}

.about-image-wrap .frame {
  width: 100%;
  height: auto;
}

.about-image-wrap .photo {
  position: absolute;
  top: 8%;
  left: 8%;
  width: 84%;
  height: 84%;
  object-fit: cover;
  border-radius: 12px;
}

.about-label {
  color: var(--green);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-title {
  font-size: clamp(2rem, 4vw, 3rem);
}

/* Value cards (top strip) */
.value-card {
  border-radius: 41px;
  overflow: hidden;
  border: 1px solid #fff;
  background: #fff;
  height: 100%;
  min-height: 420px;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(106, 247, 65, 0.2);
}

.value-card .card-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.value-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.value-card:hover .card-image img {
  transform: scale(1.08);
}

.value-card .card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85) 40%);
  min-height: 45%;
}

.value-card h3 {
  font-family: "Krona One", sans-serif;
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.value-card .powered {
  color: var(--green);
  font-style: italic;
  font-size: 0.65rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.value-card .divider {
  height: 1px;
  background: #d9d9d9;
  margin-bottom: 1rem;
}

.value-card p {
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.5;
  margin: 0;
}

/* How DIVG creates value */
.creates-value h2 .divg-text {
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 1;
  color: var(--green);
}

.pill-feature {
  background: rgba(217, 217, 217, 0.05);
  border-radius: 45px;
  padding: 1rem 1.5rem 1rem 7rem;
  position: relative;
  min-height: 90px;
  display: flex;
  align-items: center;
  width: 90%;
}

.pill-feature .icon-circle {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 67px;
  height: 67px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106, 247, 65, 0.3) 0%, rgba(23, 104, 0, 0.5) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

/* Deal journey */
.journey-section {
  background: linear-gradient(180deg, #070b0c 0%, #060a0b 100%);
  position: relative;
  overflow: hidden;
}

.journey-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/journey-bg.png") center/cover no-repeat;
  /* opacity: 0.35; */
  pointer-events: none;
}

.journey-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.63);
  pointer-events: none;
}

.journey-section .container {
  position: relative;
  z-index: 1;
}

.journey-steps {
  position: relative;
  padding: 2rem 0;
}

.journey-line {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
}

.journey-step {
  text-align: center;
  margin-bottom: 2rem;
}

.journey-step .step-num {
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.journey-step .step-btn {
  background: var(--green-dark);
  border: 1px solid var(--green);
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  padding: 1rem 1rem;
  width: 100%;
  max-width: 280px;
  margin: 0 auto 1rem;
  display: block;
  font-size: 14px;
}

.journey-step p {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 260px;
  margin: 0 auto;
  opacity: 0.9;
}

@media (min-width: 992px) {
  .journey-step:nth-child(1) { margin-top: 180px; }
  .journey-step:nth-child(2) { margin-top: 120px; }
  .journey-step:nth-child(3) { margin-top: 60px; }
  .journey-step:nth-child(4) { margin-top: 0; }
  .journey-step:nth-child(5) { margin-top: -40px; }
}

/* IRMA feature cards */
.irma-card {
  background: var(--bg-card);
  border-bottom: 5px solid var(--green);
  border-radius: 41px;
  overflow: hidden;
  height: 100%;
  min-height: 420px;
  display: flex;
  flex-direction: column;
}

.irma-card .irma-img {
  flex: 1;
  padding: 1rem;
  min-height: 280px;
}

.irma-card .irma-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.irma-card h4 {
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 1rem 1.25rem;
  margin: 0;
}

/* Growth package */
.growth-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.growth-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(106, 247, 65, 0.15);
  font-size: 1.2rem;
  font-weight: 500;
}

.growth-list li:last-child {
  border-bottom: none;
}

.growth-list .icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--green);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.growth-banner {
  border: 1px solid var(--green);
  background: rgba(25, 23, 23, 0.33);
  border-radius: 32px;
  padding: 2rem;
  text-align: center;
}

.growth-banner h3 {
  font-family: "Krona One", sans-serif;
  margin: 0;
}

/* CTA */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 7rem 0 1rem;
}

.cta-watermark {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Krona One", sans-serif;
  font-size: clamp(8rem, 20vw, 18rem);
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: -0.05em;
  display: none;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

/* Footer */
.footer-links h6 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: #e6e8f0;
  margin-bottom: 1.25rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.82rem;
}

.footer-links a:hover {
  color: var(--green);
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.5;
  max-width: 200px;
}

.footer-powered {
  color: rgba(107, 115, 128, 0.5);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  padding-top: 2rem;
  margin-top: 2rem;
  font-size: 0.72rem;
  color: rgba(107, 115, 128, 0.6);
}

.disclaimer {
  font-size: 0.68rem;
  color: rgba(107, 115, 128, 0.4);
}

/* Utilities */
.section-padding {
  padding: 5rem 0;
}

@media (max-width: 991.98px) {
  .navbar-divg .navbar-collapse {
    background: rgba(6, 10, 11, 0.95);
    padding: 1rem;
    border-radius: 12px;
    margin-top: 1rem;
  }

  .pill-feature {
    margin: 0!important;
    width: 100%;
  }
}

/* ── Hover effects ── */
.navbar-divg .nav-link:hover {
  color: var(--green);
}

.navbar-brand {
  transition: opacity 0.25s ease;
}

.navbar-brand:hover {
  opacity: 0.85;
}

.hover-image-wrap {
  transition: transform 0.4s ease;
}

.hover-image-wrap:hover {
  transform: scale(1.02);
}

.hover-image {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hover-image:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 40px rgba(106, 247, 65, 0.15);
}

.pill-feature {
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #333;
}

.pill-feature:hover {
  background: rgba(106, 247, 65, 0.08);
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(106, 247, 65, 0.1);
}

.pill-feature .icon-circle {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pill-feature .icon-circle img{width:50px;}
.pill-feature:hover .icon-circle {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 20px rgba(106, 247, 65, 0.4);
}

.journey-step .step-btn {
  cursor: default;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.journey-step .step-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(106, 247, 65, 0.3);
  background: #1a7a00;
}

.irma-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.irma-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(106, 247, 65, 0.2);
}

.irma-card .irma-img img {
  transition: transform 0.5s ease;
}

.irma-card:hover .irma-img img {
  transform: scale(1.05);
}

.growth-list li {
  transition: padding-left 0.3s ease, color 0.3s ease;
}

.growth-list li:hover {
  padding-left: 0.5rem;
  color: var(--green);
}

.growth-banner {
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.growth-banner:hover {
  border-color: var(--green-bright);
  box-shadow: 0 0 30px rgba(106, 247, 65, 0.15);
  transform: translateY(-2px);
}

.footer-links a {
  transition: color 0.25s ease, padding-left 0.25s ease;
  display: inline-block;
}

.footer-links a:hover {
  padding-left: 4px;
}

.text-link-green {
  color: var(--green);
  text-decoration: none;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
  transition: letter-spacing 0.25s ease, opacity 0.25s ease;
}

.text-link-green:hover {
  letter-spacing: 0.08em;
  opacity: 0.85;
  color: var(--green-bright);
}

/* ── Services page ── */
.services-hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding-top: 200px;
  padding-bottom: 80px;
}

.services-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(51, 72, 96, 0.4) 0%, transparent 60%),
    var(--bg-primary);
  display: none;
}

.services-watermark {
  position: absolute;
  bottom: -40px;
  left: -20px;
  font-family: "Krona One", sans-serif;
  font-size: clamp(6rem, 18vw, 14rem);
  line-height: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, #334860 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: -0.04em;
  opacity: .2;
}

.services-robot {
  max-height: 520px;
  object-fit: contain;
  object-position: bottom right;
  transition: transform 0.5s ease;
}

.services-robot:hover {
  transform: scale(1.02) translateY(-4px);
}

.service-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #3b82f6;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.service-label .label-box {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(59, 130, 246, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
}

.service-feature-title {
  font-family: "Krona One", sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  line-height: 1.5;
  color: #dde6f5;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.5rem 0;
  color: #5a7399;
  font-size: 0.9rem;
  transition: color 0.25s ease, transform 0.25s ease;
}

.service-list li:hover {
  color: #dde6f5;
  transform: translateX(6px);
}

.service-list li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: #3b82f6;
  border-radius: 2px;
  margin-top: 0.55rem;
  flex-shrink: 0;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.service-list li:hover::before {
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

.service-feature-img {
  border-radius: 17px;
  border-bottom: 5px solid var(--green);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-feature-img:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(106, 247, 65, 0.2);
}

.service-feature-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-feature-img:hover img {
  transform: scale(1.06);
}

.irma-deploy-section {
  background: linear-gradient(165deg, #070b0c 0%, #071a3a 60%, #070b0c 100%);
  border-top: 1px solid rgba(59, 130, 246, 0.1);
}

.irma-capabilities-panel {
  background: rgba(10, 26, 53, 0.7);
  border: 1px solid rgba(59, 130, 246, 0.2);
  box-shadow: 0 0 60px rgba(59, 130, 246, 0.08);
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.irma-capabilities-panel:hover {
  border-color: rgba(106, 247, 65, 0.3);
  box-shadow: 0 0 60px rgba(106, 247, 65, 0.1);
}

.irma-cap-item {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.08);
  display: flex;
  gap: 1rem;
  align-items: center;
  color: #5a7399;
  font-size: 0.85rem;
  transition: background 0.25s ease, color 0.25s ease, padding-left 0.25s ease;
}

.irma-cap-item:last-child {
  border-bottom: none;
}

.irma-cap-item:hover {
  background: rgba(59, 130, 246, 0.06);
  color: #dde6f5;
  padding-left: 1.75rem;
}

.irma-cap-item .num {
  font-family: "Barlow Condensed", sans-serif;
  color: rgba(59, 130, 246, 0.5);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  min-width: 24px;
}

.agent-card {
  background: rgba(7, 20, 40, 0.19);
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: 15px;
  padding: 1.25rem 1.5rem;
  height: 100%;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.agent-card:hover {
  transform: translateY(-6px);
  border-color: rgba(106, 247, 65, 0.4);
  background: rgba(7, 20, 40, 0.35);
  box-shadow: 0 12px 32px rgba(106, 247, 65, 0.12);
}

.agent-card h5 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #dde6f5;
  margin-bottom: 0.5rem;
}

.agent-card p {
  font-size: 0.78rem;
  color: #5a7399;
  margin: 0;
  transition: color 0.25s ease;
}

.agent-card:hover p {
  color: #8fa8c7;
}

.agent-card .agent-icon {
  color: var(--green);
  margin-right: 0.5rem;
}

.agent-card-add {
  border-style: dashed;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: #5a7399;
  min-height: 92px;
}

.agent-card-add:hover {
  color: var(--green);
}

.agent-card-add .plus {
  font-size: 1.25rem;
  color: var(--green);
}

.reviews-section .agent-card {
  background: #071428;
}

/* ── Team page ── */
.team-hero {
  min-height: 50vh;
  position: relative;
  overflow: hidden;
  padding-top: 125px;
  padding-bottom: 50px;
}

.team-card {
  background: rgba(7, 20, 40, 0.25);
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-bottom: 4px solid var(--green);
  border-radius: 20px;
  padding: 2rem 1.5rem 1.75rem;
  text-align: center;
  height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  border-color: rgba(106, 247, 65, 0.35);
  box-shadow: 0 20px 48px rgba(106, 247, 65, 0.15);
}

.team-card-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.25rem;
  border: 3px solid rgba(106, 247, 65, 0.3);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover .team-card-photo {
  border-color: var(--green);
  transform: scale(1.05);
  box-shadow: 0 0 24px rgba(106, 247, 65, 0.25);
}

.team-card h3 {
  font-family: "Krona One", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

.team-card .team-role {
  color: #5a7399;
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  min-height: 4.5rem;
}

.team-card .linkedin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(106, 247, 65, 0.4);
  color: var(--green);
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.team-card .linkedin-btn:hover {
  background: var(--green);
  color: var(--bg-primary);
  transform: scale(1.1);
  box-shadow: 0 0 16px rgba(106, 247, 65, 0.4);
}

.team-section-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.team-collab-banner {
  border: 1px solid rgba(106, 247, 65, 0.25);
  background: rgba(7, 20, 40, 0.35);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.team-collab-banner:hover {
  border-color: var(--green);
  box-shadow: 0 0 40px rgba(106, 247, 65, 0.12);
  transform: translateY(-3px);
}

.team-collab-banner p {
  font-size: 1.15rem;
  line-height: 1.6;
  margin: 0;
  max-width: 720px;
  margin-inline: auto;
  color: #dde6f5;
}

/* ── Contact page ── */
.contact-info-card {
  background: rgba(7, 20, 40, 0.35);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 16px;
  padding: 1.5rem;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
  border-color: rgba(106, 247, 65, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(106, 247, 65, 0.1);
}

.contact-info-card .icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(106, 247, 65, 0.1);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  float: left;
  margin-right: 20px;
}

.contact-info-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-info-card a {
  color: var(--green);
  text-decoration: none;
  word-break: break-all;
  transition: opacity 0.25s ease;
}

.contact-info-card a:hover {
  opacity: 0.8;
}

.contact-form-wrap {
  background: rgba(7, 20, 40, 0.35);
  border: 1px solid rgba(106, 247, 65, 0.2);
  border-radius: 24px;
  padding: 2rem;
}

.contact-form-wrap .form-label {
  color: #dde6f5;
  font-size: 0.9rem;
  font-weight: 500;
}

.contact-form-wrap .form-control,
.contact-form-wrap .form-select {
  background: rgba(0, 9, 26, 0.6);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: #fff;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form-wrap .form-control:focus,
.contact-form-wrap .form-select:focus {
  background: rgba(0, 9, 26, 0.8);
  border-color: var(--green);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(106, 247, 65, 0.15);
}

.contact-form-wrap .form-control::placeholder {
  color: rgba(90, 115, 153, 0.8);
}

.contact-form-wrap .wpcf7 {
  color: inherit;
}

.contact-form-wrap .wpcf7-form p {
  margin-bottom: 0;
}

.contact-form-wrap .wpcf7-form label {
  color: #dde6f5;
  font-size: 0.9rem;
  font-weight: 500;
  display: block;
  margin-bottom: 0.5rem;
}

.contact-form-wrap .wpcf7-form-control:not(.wpcf7-submit) {
  width: 100%;
  background: rgba(0, 9, 26, 0.6);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: #fff;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form-wrap .wpcf7-form-control:not(.wpcf7-submit):focus {
  background: rgba(0, 9, 26, 0.8);
  border-color: var(--green);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(106, 247, 65, 0.15);
  outline: none;
}

.contact-form-wrap .wpcf7-form-control::placeholder {
  color: rgba(90, 115, 153, 0.8);
}

.contact-form-wrap .wpcf7-submit {
  border: none;
}

.contact-form-wrap .wpcf7-spinner {
  margin-left: 0.75rem;
}

.contact-form-wrap .wpcf7-response-output {
  margin: 1rem 0 0;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border-width: 1px;
}

.contact-form-wrap .wpcf7-not-valid-tip {
  color: #f87171;
  font-size: 0.85rem;
  margin-top: 0.35rem;
}

/* ── Legal pages (Terms, Privacy) ── */
.legal-page {
  padding-top: 140px;
  padding-bottom: 4rem;
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  color: #8fa8c7;
  font-size: 0.95rem;
  line-height: 1.75;
}

.legal-content h2 {
  font-family: "Krona One", sans-serif;
  font-size: 1.15rem;
  color: #fff;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  font-size: 1rem;
  color: #dde6f5;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  margin-bottom: 1rem;
}

.legal-content ul {
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: var(--green);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.legal-content hr {
  border-color: rgba(59, 130, 246, 0.2);
  margin: 2rem 0;
}

.legal-effective {
  color: var(--green);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/*#about{background: url('../assets/aboutbg.png');}*/

.fontborder{-webkit-text-stroke: 1px #ffffff; color: #000000;}
.top1{margin-left: -33px;}
.top2{margin-top: 33px;margin-left: -33px;}
.top3{margin-top: 33px}
.top3{margin-top: -33px;}

.serviceright{padding-top: 200px}

#about{background:url('../assets/About-us-bg.webp');background-repeat: no-repeat;background-position: right top;}
#blackstar{background:url('../assets/blackstar.png');background-repeat: no-repeat;background-position: right top; background-color: #000}
#contact{background: url(../assets/DIVG.svg);background-size: 100%;background-position: top center;background-repeat: no-repeat;}
#serv{background: url('../assets/service-banner.png');background-size: cover;background-position: bottom center;background-repeat: no-repeat;}


@media(max-width: 992px){
  .section-padding{padding: 4rem 0}
  .br br{display: none;}
  .serviceright{padding-top: 0px}
}

/* ── Homepage v2 (homepage-new.html) ── */
:root {
  --v2-green: #6af741;
  --v2-green-dark: #0a3900;
  --v2-bg: #060a0b;
  --v2-bg-dark: #02060a;
  --v2-bg-footer: #0c0e0f;
  --v2-text: #e2e2e3;
  --v2-muted: #bccbb2;
  --v2-muted-2: #87957e;
  --v2-blue-muted: #aac3e9;
  --v2-glass: rgba(18, 20, 21, 0.55);
  --v2-border: rgba(255, 255, 255, 0.1);
}

body.homepage-v2 {
  background: var(--v2-bg);
  color: #fff;
}

.v2-hero {
  position: relative;
  padding: 225px 0 100px 0;
  overflow: hidden;
  background: url('../assets/newhome-banner.png');
  background-size: 100%;
  background-position: bottom center;
}

.v2-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: none;
}

.v2-hero-content {
  position: relative;
  z-index: 1;
}

.v2-hero h1 {
  font-family: "Krona One", sans-serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin: 0 auto 2rem;
}

.v2-hero-card {
  padding: 25px 20px;
  border-radius: 15px;
}

.v2-hero-card.black {
  background: #011122;
  border: 1px solid #6af73e;
}
.v2-hero-card.black.one{background-image: url('https://digitalinnovationsventuregroup.com/wp-content/uploads/2026/06/banner1.png');}
.v2-hero-card.black.two{background:url('https://digitalinnovationsventuregroup.com/wp-content/uploads/2026/06/banner2.png');}
.v2-hero-card.black.three{background:url('https://digitalinnovationsventuregroup.com/wp-content/uploads/2026/06/banner3.png');}
.v2-hero-card.black.one, .v2-hero-card.black.two, .v2-hero-card.black.three{background-size: 40%;background-repeat:no-repeat;background-position:right center;padding-right: 35%;background-color: #011122;height: 100%;}

.v2-hero-card h3 {
  font-family: "Krona One", sans-serif;
  font-size: 16px;
  margin-bottom: 9px;
  line-height: 1.6;
}

.v2-hero-card ul {
  color: var(--v2-blue-muted);
  line-height: 18px;
  margin: 0;
  font-size: 13px;
  padding-left: 15px;
}

.v2-hero-card ul li {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 300;
}
.v2-hero-card ul li:last-child{margin:0;}

.v2-infrastructure {
  padding: 5rem 0 0;
  position: relative;
}

.v2-section-title {
  font-family: "Krona One", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--v2-text);
}

.v2-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.5rem;
}

.v2-check-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--v2-muted);
  font-size: 1rem;
}

.v2-check-item img {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.v2-model {
  padding: 5rem 0 0;
  background: var(--v2-bg);
}

.v2-model-card {
  border-radius: 49px;
  overflow: hidden;
  border: 1px solid #fff;
  height: 100%;
  min-height: 520px;
  position: relative;
}

.v2-model-card .card-screenshot {
  height: 280px;
  overflow: hidden;
}

.v2-model-card .card-screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v2-model-card .card-body {
  position: relative;
  padding: 1.5rem;
  min-height: 240px;
  background-color: initial !important;
  background: url('../assets/overlay.png') !important;
  background-position: top left !important;
  background-size: cover !important;
}

.v2-model-card .card-body > * {
  position: relative;
  z-index: 1;
}

.v2-model-card .card-icon {
  width: 47px;
  height: 40px;
  background: rgba(66, 68, 70, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  float: left;
}

.v2-model-card .card-icon img {
  max-width: 30px;
  max-height: 30px;
}

.v2-model-card h3 {
  font-family: "Krona One", sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  margin: 5px 0 0;
  border-bottom: 1px solid #333;
  padding-bottom: 25px;
}

.v2-model-card .card-desc {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  clear: both;
  padding-top: 15px;
}

.v2-model-card .card-bullets {
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.v2-model-card .card-bullets li::before {
  content: "• ";
}

.v2-irma {
  padding: 5rem 0;
  background: linear-gradient(180deg, #070b0c 0%, var(--v2-bg) 100%);
  position: relative;
  overflow: hidden;
}

.v2-irma.powered {
  background: url('../assets/powered-bg.png');
  background-size: cover;
  background-position: bottom left;
}

.v2-irma-bg {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
}

.v2-irma-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v2-irma-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.v2-irma-pill {
  background: var(--v2-glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--v2-border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  flex: 1;
}

.v2-irma-pill.featured {
  border-left: 2px solid var(--v2-green);
}

.v2-irma-pill img {
  height: 30px;
  width: auto;
  flex-shrink: 0;
}

.v2-irma-pill h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--v2-text);
  margin-bottom: 0.25rem;
}

.v2-irma-pill p {
  font-size: 0.875rem;
  color: var(--v2-muted-2);
  margin: 0;
  line-height: 1.4;
}

.v2-irma-line {
  display: none;
}

.v2-irma-diagram {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
}

.v2-irma-diagram img {
  width: 100%;
  border-radius: 31px;
}

.v2-info {
  padding: 5rem 0 0;
  background: var(--v2-bg);
  position: relative;
}

.v2-info .section-label {
  color: var(--v2-green);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1rem;
}

.v2-glass-card {
  background: var(--v2-glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--v2-border);
  border-radius: 24px;
  padding: 1.5rem;
  height: 100%;
}

.v2-glass-card img.icon {
  width: 26px;
  height: auto;
  margin-bottom: 20px;
}

.v2-glass-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--v2-text);
  margin-bottom: 0.5rem;
}

.v2-glass-card p {
  font-size: 0.875rem;
  color: var(--v2-muted);
  margin: 0;
  line-height: 1.5;
}

.v2-notice {
  border: 1px solid rgba(106, 247, 65, 0.42);
  border-radius: 24px;
  padding: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--v2-muted-2);
  max-width: 900px;
  margin: 2.5rem auto 0;
}

.v2-notice strong {
  color: var(--v2-muted-2);
}

.v2-communication {
  padding: 5rem 0 0;
  background: var(--v2-bg-dark);
  position: relative;
  overflow: hidden;
}

.v2-communication .robot-hand {
  position: absolute;
  left: -40px;
  bottom: 0;
  width: 320px;
  max-width: 35%;
  pointer-events: none;
  opacity: 0.9;
}

.v2-communication .one {
  margin-left: -100px;
}

.v2-feature-card {
  background: var(--v2-glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--v2-border);
  border-radius: 24px;
  padding: 1.5rem;
  height: 100%;
  display: flex;
  gap: 1.5rem;
}

.v2-feature-card .icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(106, 247, 65, 0.1);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.v2-feature-card h3 {
  font-family: "Krona One", sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.v2-feature-card p {
  font-size: 1rem;
  color: var(--v2-muted);
  margin: 0;
  line-height: 1.5;
}

.v2-workflow {
  padding: 5rem 0 0;
  background: var(--v2-bg);
}

.v2-step {
  border-left: 1px solid rgba(106, 247, 65, 0.3);
  padding: 1rem 0 1rem 2rem;
  position: relative;
  height: 100%;
}

.v2-step::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 1rem;
  width: 16px;
  height: 16px;
  background: var(--v2-green);
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(106, 247, 65, 0.8);
}

.v2-step .step-num {
  color: var(--v2-green);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.v2-step .step-num::after {
  content: '';
  background: url('../assets/arrow-right.svg');
  display: block;
  position: absolute;
  right: 20px;
  width: 117px;
  height: 15px;
  top: 14px;
}

.v2-step h4 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--v2-text);
  margin-bottom: 0.25rem;
}

.v2-step p {
  font-size: 0.875rem;
  color: var(--v2-muted-2);
  margin: 0;
  line-height: 1.4;
}

.v2-cta {
  padding: 6rem 0;
  background: var(--v2-bg);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.v2-cta-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.15;
  pointer-events: none;
}

.v2-cta-watermark img {
  max-width: 90%;
  height: auto;
}

.v2-cta h2 {
  font-family: "Krona One", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.v2-cta .lead {
  color: var(--v2-muted);
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
}

.v2-section-texture {
  background-image: url("../assets/section-texture.png");
  background-size: cover;
  background-position: center;
}

.v2-footer {
  background: var(--v2-bg-footer);
  padding: 3rem 0 0;
}

.v2-footer h6 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--v2-text);
  margin-bottom: 1.5rem;
}

.v2-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.v2-footer ul li {
  margin-bottom: 0.75rem;
}

.v2-footer ul a {
  color: var(--v2-muted-2);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.25s ease, padding-left 0.25s ease;
  display: inline-block;
}

.v2-footer ul a:hover {
  color: var(--v2-green);
  padding-left: 4px;
}

.v2-footer .brand-desc {
  color: var(--v2-muted-2);
  font-size: 0.875rem;
  line-height: 1.6;
}

.v2-footer .contact-email {
  color: var(--v2-green);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: text-shadow 0.25s ease, color 0.25s ease;
}

.v2-footer .contact-email:hover {
  text-shadow: 0 0 12px rgba(106, 247, 65, 0.5);
  color: var(--green-bright);
}

.v2-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem 0;
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--v2-muted-2);
  font-size: 0.875rem;
}

.v2-footer-social {
  display: flex;
  gap: 1.5rem;
}

.v2-footer-social a {
  color: var(--v2-muted-2);
  font-size: 1.1rem;
  transition: color 0.25s ease, transform 0.25s ease, text-shadow 0.25s ease;
}

.v2-footer-social a:hover {
  color: var(--v2-green);
  transform: translateY(-2px);
  text-shadow: 0 0 10px rgba(106, 247, 65, 0.4);
}

/* ── Homepage v2 hover effects ── */
.v2-hero-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.v2-hero-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(106, 247, 65, 0.25);
  border-color: var(--green-bright) !important;
}

.v2-hero-card h3 {
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.v2-hero-card:hover h3 {
  color: var(--green);
  text-shadow: 0 0 20px rgba(106, 247, 65, 0.45);
}

.v2-hero-card ul {
  transition: color 0.3s ease;
}

.v2-hero-card:hover ul {
  color: #c5d8f5;
}

.v2-check-item {
  transition: color 0.3s ease, transform 0.3s ease;
}

.v2-check-item:hover {
  color: var(--green);
  transform: translateX(6px);
}

.v2-check-item img {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.v2-check-item:hover img {
  transform: scale(1.15);
  filter: drop-shadow(0 0 6px rgba(106, 247, 65, 0.6));
}

.v2-infrastructure img.dashboard,
.v2-infrastructure .dashboard {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: 16px;
}

.v2-infrastructure img.dashboard:hover,
.v2-infrastructure .dashboard:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 40px rgba(106, 247, 65, 0.2);
}

.v2-model-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.v2-model-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(106, 247, 65, 0.2);
}

.v2-model-card .card-screenshot img {
  transition: transform 0.5s ease;
}

.v2-model-card:hover .card-screenshot img {
  transform: scale(1.06);
}

.v2-model-card h3 {
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.v2-model-card:hover h3 {
  color: var(--green);
  text-shadow: 0 0 18px rgba(106, 247, 65, 0.35);
}

.v2-model-card .card-desc,
.v2-model-card .card-bullets {
  transition: color 0.3s ease;
}

.v2-model-card:hover .card-desc,
.v2-model-card:hover .card-bullets {
  color: #e8f5e0;
}

.v2-irma-pill {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.v2-irma-pill:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(106, 247, 65, 0.18);
  border-color: rgba(106, 247, 65, 0.35);
}

.v2-irma-pill h4,
.v2-irma-pill p {
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.v2-irma-pill:hover h4 {
  color: var(--green);
  text-shadow: 0 0 12px rgba(106, 247, 65, 0.35);
}

.v2-irma-pill img {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.v2-irma-pill:hover img {
  transform: scale(1.08);
  filter: drop-shadow(0 0 8px rgba(106, 247, 65, 0.4));
}

.v2-irma-diagram img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.v2-irma-diagram:hover img {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(106, 247, 65, 0.15);
}

.v2-glass-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.v2-glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(106, 247, 65, 0.2);
  border-color: rgba(106, 247, 65, 0.35);
}

.v2-glass-card h4 {
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.v2-glass-card:hover h4 {
  color: var(--green);
  text-shadow: 0 0 14px rgba(106, 247, 65, 0.35);
}

.v2-glass-card p {
  transition: color 0.3s ease;
}

.v2-glass-card:hover p {
  color: #d4e4c8;
}

.v2-glass-card img.icon {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.v2-glass-card:hover img.icon {
  transform: scale(1.15);
  filter: drop-shadow(0 0 6px rgba(106, 247, 65, 0.5));
}

.v2-feature-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.v2-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(106, 247, 65, 0.18);
  border-color: rgba(106, 247, 65, 0.3);
}

.v2-feature-card h3 {
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.v2-feature-card:hover h3 {
  color: var(--green);
  text-shadow: 0 0 16px rgba(106, 247, 65, 0.35);
}

.v2-feature-card p {
  transition: color 0.3s ease;
}

.v2-feature-card:hover p {
  color: #d4e4c8;
}

.v2-feature-card .icon-wrap {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.v2-feature-card:hover .icon-wrap {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(106, 247, 65, 0.4);
  background: rgba(106, 247, 65, 0.2);
}

.v2-step {
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
  border-radius: 0 12px 12px 0;
}

.v2-step:hover {
  border-left-color: var(--green);
  transform: translateX(6px);
  background: rgba(106, 247, 65, 0.04);
}

.v2-step::before {
  transition: box-shadow 0.3s ease;
}

.v2-step:hover::before {
  box-shadow: 0 0 18px rgba(106, 247, 65, 1);
}

.v2-step h4 {
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.v2-step:hover h4 {
  color: var(--green);
  text-shadow: 0 0 12px rgba(106, 247, 65, 0.35);
}

.v2-step p {
  transition: color 0.3s ease;
}

.v2-step:hover p {
  color: var(--v2-muted);
}

.v2-notice {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.v2-notice:hover {
  border-color: var(--green-bright);
  box-shadow: 0 0 24px rgba(106, 247, 65, 0.12);
}

.v2-section-title .text-green {
  transition: text-shadow 0.3s ease;
}

.v2-section-title:hover .text-green {
  text-shadow: 0 0 24px rgba(106, 247, 65, 0.5);
}

.v2-cta h2 {
  transition: text-shadow 0.3s ease;
}

.homepage-v2 .v2-cta:hover h2 {
  text-shadow: 0 0 30px rgba(106, 247, 65, 0.15);
}

@media (max-width: 991.98px) {
  .v2-communication .one {
    margin-left: 0;
  }

  .v2-checklist {
    grid-template-columns: 1fr;
  }

  .v2-hero-cards .col-md-4 {
    margin-bottom: 2rem;
  }

  .v2-communication .robot-hand {
    display: none;
  }

  .v2-irma-pill {
    max-width: 100%;
  }
}

/* IRMA Platform page */
body.irma-platform-page {
  background: var(--v2-bg);
  color: #fff;
}

.irma-platform-page .section-label {
  color: var(--v2-green);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.irma-hero {
  position: relative;
  padding: 225px 0 150px;
  overflow: hidden;
  background: #010d32;
}

.irma-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/irma-platform-hero-bg.png") center top / cover no-repeat;
  opacity: 1;
}

.irma-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(124deg, rgba(1, 11, 28, 0.92) 17%, rgba(0, 44, 128, 0) 95%);
}

.irma-hero-content {
  position: relative;
  z-index: 1;
}

.irma-hero h1 {
  font-family: "Krona One", sans-serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--v2-text);
  margin-bottom: 1.5rem;
}

.irma-hero-lead {
  color: var(--v2-muted);
  font-size: 1.125rem;
  line-height: 1.55;
  max-width: 564px;
  margin-bottom: 2rem;
}

.irma-section {
  padding: 5rem 0 0rem 0;
  background: #070b0c;
  border-top: 1px solid rgba(62, 74, 55, 0.1);
}

.irma-section-lead {
  color: var(--v2-muted);
  font-size: 1.125rem;
  line-height: 1.55;
  max-width: 715px;
}

.irma-cap-card {
  background: rgba(39, 39, 42, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(106, 247, 65, 0.15);
  border-radius: 8px;
  padding: 1.5rem 1.75rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.irma-cap-card.featured {
  border-left: 1px solid var(--v2-green);
}

.irma-cap-icon {
  width: 30px;
  height: auto;
  margin-bottom: 1rem;
}

.irma-cap-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--v2-text);
  margin-bottom: 1rem;
}

.irma-cap-card p {
  color: var(--v2-muted);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

.irma-screenshot {
  border-radius: 29px;
  overflow: hidden;
  border-bottom: 9px solid var(--v2-green);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.irma-screenshot img {
  width: 100%;
  height: auto;
  display: block;
}

.irma-agent-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: rgba(39, 39, 42, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(106, 247, 65, 0.15);
  border-radius: 16px;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.irma-agent-icon {
  width: 57px;
  height: auto;
  flex-shrink: 0;
}

.irma-agent-card h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--v2-text);
  margin-bottom: 0.5rem;
}

.irma-agent-card p {
  color: var(--v2-muted);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

.irma-feature-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.irma-feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.irma-feature-dot {
  width: 24px;
  height: 24px;
  border: 2px solid var(--v2-green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
  position: relative;
}

.irma-feature-dot::after {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--v2-green);
  border-radius: 50%;
}

.irma-feature-item h5 {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--v2-text);
  margin-bottom: 0.25rem;
}

.irma-feature-item p {
  color: var(--v2-muted);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

.irma-rewards-title {
  font-family: "Krona One", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--v2-text);
}

.irma-rewards-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: var(--v2-green);
  line-height: 1.35;
}

.irma-reward-card,
.irma-token-card {
  background: #000;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(106, 247, 65, 0.15);
  border-radius: 27px;
  padding: 1.5rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.irma-token-card {
  background: linear-gradient(90deg, #212121 0%, #000 100%);
  border-radius: 14px;
}

.irma-reward-card-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.irma-reward-card-head img {
  width: 28px;
  height: auto;
  flex-shrink: 0;
}

.irma-reward-card-head h4 {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--v2-text);
  margin: 0;
}

.irma-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.irma-bullet-list li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--v2-muted);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 5px;
}

.irma-bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--v2-green);
}

.irma-rewards-note {
  color: var(--v2-muted);
  font-size: 0.875rem;
  font-style: italic;
  max-width: 1152px;
  margin-left: auto;
  margin-right: auto;
}

.irma-notice {
  background: rgba(147, 0, 10, 0.1);
  border: 1px solid rgba(147, 0, 10, 0.2);
  border-radius: 8px;
  padding: 1.5rem;
  max-width: 1152px;
  margin: 0 auto;
}

.irma-notice strong {
  display: block;
  color: #ffb4ab;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.irma-notice p {
  color: var(--v2-muted);
  font-size: 0.75rem;
  line-height: 1.35;
  margin: 0;
  opacity: 0.8;
}

.irma-token-section {
  position: relative;
  overflow: hidden;
}

.irma-token-grid {
  max-width: 1028px;
  margin-left: auto;
  margin-right: auto;
}

.irma-wallet-screenshot {
  max-width: 1376px;
  margin: 0 auto;
  border-radius: 45px;
  border-bottom-width: 0;
  background: #111d2d;
}

.irma-token-divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 141px;
  overflow: hidden;
  pointer-events: none;
}

.irma-token-divider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.irma-cap-card:hover,
.irma-agent-card:hover,
.irma-reward-card:hover,
.irma-token-card:hover {
  transform: translateY(-6px);
  border-color: rgba(106, 247, 65, 0.45);
  box-shadow: 0 12px 40px rgba(106, 247, 65, 0.12);
}

.irma-cap-card:hover h3,
.irma-agent-card:hover h4,
.irma-reward-card:hover h4,
.irma-token-card:hover h4 {
  color: var(--v2-green);
  text-shadow: 0 0 12px rgba(106, 247, 65, 0.35);
}

.irma-screenshot:hover {
  transform: scale(1.01);
  box-shadow: 0 16px 48px rgba(106, 247, 65, 0.15);
}

.irma-feature-item {
  transition: transform 0.3s ease;
}

.irma-feature-item:hover {
  transform: translateX(8px);
}

.irma-feature-item:hover h5 {
  color: var(--v2-green);
}

.irma-notice:hover {
  border-color: rgba(255, 180, 171, 0.4);
  box-shadow: 0 0 24px rgba(147, 0, 10, 0.15);
}

@media (max-width: 991.98px) {
	.v2-hero{padding: 150px 0 50px 0;}
	.irma-agents-sticky-col{min-height: initial!important;}
	.team-hero{    padding-top: 125px; padding-bottom: 100px;min-height: initial;}
	#serv{padding-top: 125px; padding-bottom: 50px; min-height: initial;}
  .irma-hero {
    min-height: auto;
    padding: 140px 0 80px;
  }

  .irma-hero-content {
    max-width: 100%;
  }

  .irma-section {
    padding: 3.5rem 0;
  }

  .irma-agents-sticky-col {
    min-height: auto;
  }

  .irma-sticky-image {
    position: relative;
    top: auto;
  }
}

.irma-sticky-image {
  position: sticky;
  top: 125px;
}

.irma-agents-sticky-col {
  min-height: 600px;
}

.irma-sticky-image img {

    width: 100%;

    display: block;

}
.v2-hero-cards{margin-top: 150px;}

.container-fluid{max-width:1450px;}