html:not(.js) .hero-slide{
  opacity: 0;
  pointer-events: none;
}
html:not(.js) .hero-slide:first-of-type{
  opacity: 1;
  pointer-events: auto;
}

.fade-in,
.reveal{
  opacity: 1;
  transform: none;
}

.top-banner {
  display: none;
}
.hero {
  position: relative;
  height: 70vh;  
  min-height: 520px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;

  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}


.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(18,64,128,0.65),
    rgba(18,64,128,0.35)
  );
}


.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  max-width: 900px;
}

.hero h1 {
  margin: 0 0 12px;
  font-size: 44px;
  line-height: 1.15;
  font-weight: 800;
}

.hero p {
  margin: 0 auto;
  max-width: 720px;
  font-size: 16px;
  opacity: 0.95;
  line-height: 1.6;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--blue-accent);
  color: #073044;
  font-weight: 800;
  text-decoration: none;
}

.hero-btn:hover {
  opacity: 0.9;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.65);
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.hero-dot.is-active {
  background: rgba(255,255,255,0.9);
}

.hero-content{
  position: relative;
  z-index: 2;
  padding: 80px 0;
  max-width: 900px;
}

.hero-card{
  max-width: 820px;
  margin: 0 auto;
  padding: 34px 36px;
  border-radius: 22px;
  text-align: center;
  justify-items: center;

  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.20);

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  box-shadow: 0 18px 46px rgba(15,23,42,.22);
}

.hero-card--light{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.hero-card h1{
  margin: 0 0 12px;
  font-size: 46px;
  line-height: 1.12;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.hero-card p{
  margin: 0;
  max-width: 70ch;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,.92);
}

.hero-card .hero-btn{
  margin-top: 18px;
}

.nav-list a {
  position: relative;
  display: inline-block;
  padding: 8px 10px;
  border-radius: 10px;
}

.nav-list a.is-active::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--blue-accent);
  transform: translateX(-50%);
}

.site-header {
  padding: 8px 0;
}

.why{
  background: linear-gradient(
    to bottom,
    #ffffff,
    #f4f8ff
  );
  padding: 56px 0;
}

.why-header{
  text-align: center;
  max-width: 820px;
  margin: 0 auto 28px;
}

.why-header h2{
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
}

.why-header p{
  margin: 0;
  color: rgba(15,23,42,.75);
  line-height: 1.6;
  font-size: 14.5px;
}

.why-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.why-card {
  background: rgba(226, 238, 255, 0.6);
  border: 1px solid rgba(18,64,128,0.08);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: 
    transform 0.35s ease,
    box-shadow 0.35s ease;
  cursor: default;
}

.why-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}


.why-icon{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(116,205,235,.25);
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 12px;
  transition: transform 0.35s ease;
}

.why-card:hover .why-icon {
  transform: scale(1.15) rotate(-3deg);
}

.why-card h3{
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
}

.why-card p{
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(15,23,42,.75);
}

@media (max-width: 1000px){
  .why-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px){
  .why-grid{ grid-template-columns: 1fr; }
}

.offer-header {
  text-align: center;
  margin-bottom: 40px;
}

.offer-header h2{
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
}

.solutions-preview{
  padding: 56px 0;
}

.solutions-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
}

.solution-card{
  background: rgba(226, 238, 255, 0.6);
  border: 1px solid rgba(18,64,128,0.08);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.solution-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.10);
}

.solution-card img{
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;

  border-radius: 12px;
  transition: transform .35s ease;
}

.solution-card:hover img{
  transform: scale(1.04);
}

.solution-card h3{
  margin: 2px 0 0;
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
}

.solution-card p{
  margin: 0;
  font-size: 13.8px;
  line-height: 1.6;
  color: rgba(15,23,42,.75);
}

.solution-link{
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;

  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}

.solution-link:hover{
  text-decoration: underline;
}

@media (max-width: 900px){
  .solutions-grid{
    grid-template-columns: 1fr;
    max-width: 620px;
  }
}


.technology-highlight{
  padding: 64px 0;
  background: #ffffff;
}

.tech-grid{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.tech-text h2{
  margin: 0 0 12px;
  font-size: 26px;
  color: var(--ink);
}

.tech-text p{
  margin: 0 0 14px;
  max-width: 520px;
  line-height: 1.6;
  color: rgba(15,23,42,.75);
}

.tech-link{
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}

.tech-link:hover{
  text-decoration: underline;
}

.tech-media{
  background: #e6e6e6;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.tech-media iframe{
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 900px){
  .tech-grid{
    grid-template-columns: 1fr;
  }
}

.footer-partners {
  text-align: center;
}

.footer-partners h4 {
  margin-bottom: 14px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
}

.footer-partners .partners-card,
.footer-partners .partners-carousel,
.footer-partners img{
  margin-inline: auto;
}

.partners-carousel {
  position: relative;
  width: 340px;
  height: 110px;
  margin: 0 auto;

  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.45);
  overflow: hidden;
}


.partner-slide{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;

  opacity: 0;
  transition: opacity 0.6s ease;
}

.partner-slide.active{ opacity: 1; }

.partner-slide img{
  max-height: 70px;
  max-width: 260px;
  width: auto;
  height: auto;
  object-fit: contain;

  filter:
    contrast(1.15)
    brightness(0.95)
    drop-shadow(0 6px 12px rgba(0,0,0,0.25))
    /* drop-shadow(0 0 8px rgba(255,255,255,0.25)); */
}


.partners-carousel:hover .partner-slide {
  transition-duration: 1s;
}

.js .fade-in{
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.js .fade-in.visible{
  opacity: 1;
  transform: translateY(0);
}

.fade-delay-1 { transition-delay: 0.3s; }
.fade-delay-2 { transition-delay: 0.6s; }
.fade-delay-3 { transition-delay: 0.9s; }
.fade-delay-4 { transition-delay: 1.2s; }

.sdg-intro{
  max-width: 72ch;
  margin: 0 auto 36px;
}

.sdg-intro h2{
  margin: 0 0 10px;
  color: var(--navy);
}

.sdg-intro p{
  margin: 0;
  color: rgba(15,23,42,.75);
  line-height: 1.6;
}

.sdg-section{
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(
    to bottom,
    #ffffff,
    #f3f8ff
  );
}

.sdg-header{
  margin-bottom: 40px;
}

.sdg-header img{
  max-width: 420px;
  width: 100%;
  opacity: .9;
}

.sdg-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
  align-items: center;
}

.sdg-grid img{
  width: 100%;
  max-width: 140px;
  margin: 0 auto;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.15));
  transition: transform .25s ease, opacity .25s ease;
}

.sdg-grid img:hover{
  transform: translateY(-4px) scale(1.05);
  opacity: 1;
}


/*
   SOLUTIONS PAGE
*/

.solutions-hero{
  position: relative;
  color: var(--white);
  padding: 110px 0;
  background: 
    linear-gradient(
      rgba(15,23,42,.65),
      rgba(15,23,42,.65)
    ),
    url("../assets/images/communication.jpg") center / cover no-repeat;
}

.solutions-hero-inner{
  max-width: 720px;
}

.solutions-hero h1{
  text-align: center;
  margin: 0 0 14px;
  font-size: 46px;
  letter-spacing: -0.02em;
}

.solutions-hero p{
  text-align: center;
  margin: 0;
  color: rgba(255,255,255,.9);
  line-height: 1.6;
}

.solution-band{
  padding: 70px 0;
  background: #f1f5f9;
}

.solution-band:nth-of-type(odd){
  background: #e9f2ff;
}

.solution-band-inner{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 46px;
  align-items: center;
}

.solution-band--alt .solution-band-inner{
  grid-template-columns: .85fr 1.15fr;
}

.solution-band-text h2{
  margin: 0 0 10px;
  font-size: 28px;
  color: var(--navy);
}

.solution-band-text p{
  margin: 0 0 18px;
  line-height: 1.65;
  color: rgba(15,23,42,.75);
  max-width: 60ch;
}

.solution-cta{
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 700;
  text-decoration: none;
  color: var(--ink);
}

.solution-cta:hover{
  text-decoration: underline;
}

.solution-band-media{
  aspect-ratio: 16 / 10;
  min-height: 220px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 12px 30px rgba(15,23,42,.10);
}

.solution-band-media img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}

.solution-band-media:hover img{
  transform: scale(1.04);
}

.js .reveal{
  opacity: 0;
  transform: translateX(60px);
  transition: transform .7s ease, opacity .7s ease;
  will-change: transform, opacity;
}

.js .reveal.is-visible{
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce){
  .js .reveal{
    transition: none;
    transform: none;
    opacity: 1;
  }
}

/* SUSTAINABILITY PAGE */

.page-hero {
  position: relative;
  min-height: clamp(420px, 60vh, 620px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}


.page-hero-bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  z-index: 0;
}

.page-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(18,64,128,.60);
  z-index: 1;
}

.page-hero-inner{
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
}

.page-hero-card{
  max-width: 72ch;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 18px;
  padding: 28px 28px;
  box-shadow: 0 12px 30px rgba(15,23,42,.18);
  backdrop-filter: blur(6px);
}

.page-hero-card h1{
  margin: 0 0 10px;
  color: var(--white);
  font-size: 44px;
  letter-spacing: -0.02em;
}

.page-hero-card p{
  margin: 0;
  color: rgba(255,255,255,.88);
  line-height: 1.65;
}

.why-sustainability{
  padding: 70px 0;
  background: #ffffff;
}

.why-sustainability .why-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.why-item{
  background: rgba(48,102,143,.08);
  border: 1px solid rgba(48,102,143,.16);
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 10px 26px rgba(15,23,42,.08);
  transition: transform .35s ease, box-shadow .35s ease;
}

.why-item:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15,23,42,.14);
}

.why-item h3{
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 16px;
}

.why-item p{
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(15,23,42,.75);
}

@media (max-width: 900px){
  .why-sustainability .why-grid{
    grid-template-columns: 1fr;
  }
}

.sust-approach{
  padding: 70px 0 80px;
  background: #ffffff;
}

.section-head{
  text-align: center;
  max-width: 74ch;
  margin: 0 auto 34px;
}

.section-head h2{
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 30px;
}

.section-head p{
  margin: 0;
  color: rgba(15,23,42,.72);
  line-height: 1.65;
}

.approach-stack{
  position: relative;
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

.approach-pill{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: flex-start;

  background: linear-gradient(
    to right,
    rgba(54,146,158,.12),
    rgba(255,255,255,.92)
  );

  border-radius: 20px;
  padding: 26px 28px;

  border-left: 4px solid var(--teal);
  box-shadow: 0 12px 30px rgba(15,23,42,.08);

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.approach-pill:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(15,23,42,.14);
}

.approach-icon{
  width: 46px;
  height: 46px;
  border-radius: 14px;

  display: grid;
  place-items: center;

  background: rgba(116,205,235,.25);
  color: var(--navy);
  font-size: 20px;

  box-shadow: 0 10px 22px rgba(15,23,42,.08);
}

.approach-content h3{
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 18px;
}

.approach-content p{
  margin: 0;
  color: rgba(15,23,42,.75);
  line-height: 1.65;
}

.commitment{
  background: #e9f2ff;
  padding: 70px 0 80px;
}

.commitment-inner{
  text-align: center;
  max-width: 78ch;
}

.commitment-inner h2{
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 30px;
}

.commitment-inner p{
  margin: 0 0 22px;
  color: rgba(15,23,42,.75);
  line-height: 1.65;
}

.commitment-cta{
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  border-radius: 14px;
  padding: 12px 16px;
}

.btn-primary{
  background: rgba(54,146,158,.18);
  color: var(--navy);
  border: 1px solid rgba(54,146,158,.30);
}

.btn-primary:hover{
  background: rgba(54,146,158,.28);
}

.btn-secondary{
  background: rgba(116,205,235,.18);
  color: var(--navy);
  border: 1px solid rgba(116,205,235,.28);
}

.btn-secondary:hover{
  background: rgba(116,205,235,.28);
}

.section-spacer{
  height: 80px;
}

/* MEDICAL DEVICES PAGE */

.page-hero--medical::after{
  background: rgba(18,64,128,.60);
}

.hero-chip-row{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.hero-chip{
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  padding: 6px 10px;
  border-radius: 999px;
}

.value-strip{
  background: var(--bg-light);
  padding: 34px 0;
  border-bottom: 1px solid rgba(15,23,42,.08);
}

.value-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.value-card{
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 16px;
  padding: 18px 18px;
  box-shadow: 0 10px 24px rgba(15,23,42,.08);
}

.value-card h3{
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 15px;
}

.value-card p{
  margin: 0;
  color: rgba(15,23,42,.72);
  line-height: 1.55;
  font-size: 14px;
}

.med-section{
  padding: 70px 0;
  background: #ffffff;
}

.med-section--light{
  background: #f6f9ff;
}

.challenge-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.challenge-item{
  background: rgba(48,102,143,.08);
  border: 1px solid rgba(48,102,143,.14);
  border-radius: 16px;
  padding: 22px 22px;
  box-shadow: 0 10px 24px rgba(15,23,42,.07);
}

.challenge-item h3{
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 16px;
}

.challenge-item p{
  margin: 0;
  color: rgba(15,23,42,.74);
  line-height: 1.6;
  font-size: 14px;
}

.approach-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.approach-tile{
  background: #ffffff;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 16px;
  padding: 22px 22px;
  box-shadow: 0 12px 30px rgba(15,23,42,.08);
  transition: transform .35s ease, box-shadow .35s ease;
}

.approach-tile:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15,23,42,.14);
}

.tile-icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(116,205,235,.22);
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 12px;
}

.approach-tile h3{
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 16px;
}

.approach-tile p{
  margin: 0;
  color: rgba(15,23,42,.75);
  line-height: 1.6;
  font-size: 14px;
}

.why-med-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.why-med{
  background: #ffffff;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 16px;
  padding: 22px 22px;
  box-shadow: 0 10px 24px rgba(15,23,42,.08);
}

.why-med h3{
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 16px;
}

.why-med p{
  margin: 0;
  color: rgba(15,23,42,.75);
  line-height: 1.6;
  font-size: 14px;
}

.cta-band{
  padding: 70px 0 80px;
  background: #e9f2ff;
  border-top: 1px solid rgba(15,23,42,.08);
}

.cta-inner{
  text-align: center;
  max-width: 78ch;
}

.cta-inner h2{
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 30px;
}

.cta-inner p{
  margin: 0 0 22px;
  color: rgba(15,23,42,.75);
  line-height: 1.65;
}

.cta-actions{
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 1000px){
  .approach-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px){
  .value-grid,
  .challenge-grid,
  .why-med-grid{
    grid-template-columns: 1fr;
  }
}


/* CONTACT PAGE */

.page-hero--contact::after{
  background: rgba(18,64,128,.58);
}

.contact-section{
  padding: 70px 0 90px;
  background: #ffffff;
}

.contact-grid{
  display: grid;
  grid-template-columns: 1.35fr .85fr;
  gap: 28px;
  align-items: start;
}

.contact-card{
  background: #ffffff;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 18px;
  padding: 28px 28px;
  box-shadow: 0 12px 30px rgba(15,23,42,.08);
}

.contact-card h2{
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 22px;
}

.contact-sub{
  margin: 0 0 22px;
  color: rgba(15,23,42,.70);
  line-height: 1.6;
  font-size: 14px;
}

.contact-form .form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 38px;
  row-gap: 14px;
  margin-bottom: 14px;
}


.field{
  display: grid;
  gap: 6px;
}

.field label{
  font-size: 13px;
  font-weight: 700;
  color: rgba(15,23,42,.78);
}

.field input,
.field select,
.field textarea{
  width: 100%;
  border-radius: 14px;
  padding: 12px 12px;
  border: 1px solid rgba(15,23,42,.14);
  background: rgba(226,238,255,.45);
  color: var(--text);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.field textarea{
  padding: 12px 12px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color: rgba(116,205,235,.85);
  box-shadow: 0 0 0 4px rgba(116,205,235,.18);
}


.form-actions{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.form-btn{
  border: 0;
  border-radius: 14px;
  padding: 12px 16px;
  background: var(--blue-accent);
  color: #073044;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease;
}

.form-btn:hover{
  opacity: .92;
  transform: translateY(-1px);
}

.form-note{
  margin: 0;
  font-size: 12.5px;
  color: rgba(15,23,42,.60);
}

.contact-side{
  display: grid;
  gap: 18px;
}

.info-card{
  background: rgba(226,238,255,.55);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 18px;
  padding: 22px 22px;
  box-shadow: 0 12px 28px rgba(15,23,42,.08);
}

.info-card h2{
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 18px;
}

.info-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.info-list li{
  display: grid;
  gap: 4px;
}

.info-label{
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(15,23,42,.60);
  font-weight: 800;
}

.info-text{
  color: rgba(15,23,42,.78);
}

.info-card a{
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.info-card a:hover{
  text-decoration: underline;
}

.info-divider{
  height: 1px;
  background: rgba(15,23,42,.10);
  margin: 14px 0;
}

.quick-links{
  display: grid;
  gap: 10px;
}

.mini-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.info-card--accent{
  background: linear-gradient(
    to bottom,
    rgba(54,146,158,.14),
    rgba(226,238,255,.55)
  );
}

@media (max-width: 950px){
  .contact-grid{
    grid-template-columns: 1fr;
  }

  .contact-form .form-row{
    grid-template-columns: 1fr;
  }
}

/* ABOUT PAGE */

.page-hero--about::after{
  background: rgba(18,64,128,.60);
}

.about-story{
  padding: 70px 0 80px;
  background: #ffffff;
}

.story-grid{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: start;
}

.story-text h2{
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 30px;
}

.story-text p{
  margin: 0 0 14px;
  color: rgba(15,23,42,.75);
  line-height: 1.65;
  max-width: 78ch;
}

.story-points{
  margin-top: 18px;
  display: grid;
  gap: 14px;
  max-width: 720px;
}

.story-point{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  background: rgba(226,238,255,.55);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 16px;
  padding: 14px 14px;
  box-shadow: 0 10px 24px rgba(15,23,42,.07);
}

.sp-ico{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(116,205,235,.22);
  color: var(--navy);
  font-size: 18px;
}

.story-point h3{
  margin: 0 0 4px;
  color: var(--navy);
  font-size: 15px;
}

.story-point p{
  margin: 0;
  color: rgba(15,23,42,.72);
  line-height: 1.55;
  font-size: 14px;
}

.story-card{
  background: #ffffff;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 18px;
  padding: 22px 22px;
  box-shadow: 0 12px 30px rgba(15,23,42,.08);
  position: sticky;
  top: 18px;
}

.story-card h2{
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 18px;
}

.focus-list{
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: rgba(15,23,42,.75);
  line-height: 1.55;
  font-size: 14px;
}

.story-mini-cta{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.mission-band{
  padding: 70px 0;
  background: #f6f9ff;
  border-top: 1px solid rgba(15,23,42,.08);
  border-bottom: 1px solid rgba(15,23,42,.08);
}

.mission-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.mission-card{
  background: #ffffff;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 18px;
  padding: 22px 22px;
  box-shadow: 0 12px 30px rgba(15,23,42,.08);
}

.mission-card h2{
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 18px;
}

.mission-card p{
  margin: 0;
  color: rgba(15,23,42,.75);
  line-height: 1.65;
  font-size: 14px;
}

.values-section{
  padding: 70px 0 80px;
  background: #ffffff;
}

.values-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.value-tile{
  background: rgba(226,238,255,.55);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 18px;
  padding: 22px 22px;
  box-shadow: 0 12px 30px rgba(15,23,42,.08);
  transition: transform .35s ease, box-shadow .35s ease;
}

.value-tile:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15,23,42,.14);
}

.timeline-section{
  padding: 70px 0 90px;
  background: #f6f9ff;
  border-top: 1px solid rgba(15,23,42,.08);
}

.timeline{
  margin-top: 34px;
  display: grid;
  gap: 14px;
  max-width: 980px;
}

.t-item{
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 18px;
  padding: 18px 18px 18px 18px;
  box-shadow: 0 10px 24px rgba(15,23,42,.08);
}

.t-item h3{
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 16px;
}

.t-item p{
  margin: 0;
  color: rgba(15,23,42,.75);
  line-height: 1.6;
  font-size: 14px;
}

@media (max-width: 950px){
  .story-grid{ grid-template-columns: 1fr; }
  .story-card{ position: static; }
  .mission-grid{ grid-template-columns: 1fr; }
  .values-grid{ grid-template-columns: 1fr; }
}

.tech-hero .page-hero-card{
  max-width: 80ch;
}

.tech-hero-list{
  margin: 16px 0 0;
  padding-left: 18px;
  color: rgba(255,255,255,.88);
  line-height: 1.7;
}

.tech-how{
  padding: 70px 0 80px;
  background: #ffffff;
}

.tech-how-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.tech-how-card{
  background: rgba(226, 238, 255, 0.6);
  border: 1px solid rgba(18,64,128,0.08);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(15,23,42,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.tech-how-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(15,23,42,.12);
}

.tech-how-icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(116,205,235,.25);
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 10px;
}

.tech-how-card h3{
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
}

.tech-how-card p{
  margin: 0;
  color: rgba(15,23,42,.75);
  line-height: 1.6;
  font-size: 14px;
}

.tech-platform{
  padding: 70px 0;
  background: #e9f2ff;
}

.tech-platform-inner{
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 46px;
  align-items: center;
}

.tech-platform-media{
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 12px 30px rgba(15,23,42,.10);
}

.tech-platform-media img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.tech-platform-text h2{
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 28px;
  font-weight: 900;
}

.tech-platform-text p{
  margin: 0 0 12px;
  color: rgba(15,23,42,.75);
  line-height: 1.65;
}

.tech-bullets{
  margin: 0 0 16px;
  padding-left: 18px;
  color: rgba(15,23,42,.75);
  line-height: 1.7;
}

.tech-vc{
  padding: 70px 0 80px;
  background: #ffffff;
}

.vc-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.vc-card{
  background: rgba(48,102,143,.08);
  border: 1px solid rgba(48,102,143,.14);
  border-radius: 18px;
  padding: 20px 18px 18px;
  box-shadow: 0 12px 26px rgba(15,23,42,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.vc-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(15,23,42,.12);
}

.vc-icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(116,205,235,.25);
  border: 1px solid rgba(116,205,235,.35);
  margin-bottom: 12px;
  font-size: 18px;
}

.vc-card h3{
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 15px;
}

.vc-card p{
  margin: 0;
  color: rgba(15,23,42,.72);
  line-height: 1.55;
  font-size: 13.8px;
}


.tech-cta{
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 800;
  text-decoration: none;
  color: var(--ink);
}

.tech-cta:hover{
  text-decoration: underline;
}

.tech-actions{
  padding: 70px 0 90px;
  background: #ffffff;
}

.tech-actions-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.tech-card{
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 12px 30px rgba(15,23,42,.08);
  background: #ffffff;
  height: 100%;
}

.tech-card--book{
  background: rgba(226,238,255,.55);
  display: flex;
  flex-direction: column;
}

.tech-card h3{
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.tech-card p{
  margin: 0 0 14px;
  color: rgba(15,23,42,.75);
  line-height: 1.6;
}

.workflow{
  padding: 70px 0 80px;
  background: #f7fbff;
}

.workflow-graph{
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 30px;
}

.workflow-step{
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: 0 12px 30px rgba(15,23,42,.08);
  text-align: left;
}

.workflow-node{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #073044;
  background: rgba(116,205,235,.55);
  border: 1px solid rgba(116,205,235,.55);
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
}

.workflow-step h3{
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 16px;
}

.workflow-step p{
  margin: 0;
  color: rgba(15,23,42,.72);
  line-height: 1.55;
  font-size: 14px;
}

.tech-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tech-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.tech-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tech-field--full {
  width: 100%;
}

.tech-field input,
.tech-field textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfd8e3;
  font-size: 0.95rem;
}

.tech-submit {
  margin-top: 12px;
}

/*
   APPLICATIONS PAGE
*/

.page-hero--applications::after{
  background: rgba(18,64,128,.60);
}

.section{
  padding: 70px 0;
  background: #ffffff;
}

.section-alt{
  background: #f6f9ff;
}

.section-head{
  text-align: center;
  max-width: 74ch;
  margin: 0 auto 34px;
}

.section-head h2{
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 30px;
}

.section-head p{
  margin: 0;
  color: rgba(15,23,42,.72);
  line-height: 1.65;
}

.cards-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card{
  background: rgba(48,102,143,.08);
  border: 1px solid rgba(48,102,143,.16);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 26px rgba(15,23,42,.08);
  transition: transform .35s ease, box-shadow .35s ease;
}

.card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15,23,42,.14);
}

.card h3{
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 16px;
}

.card p{
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(15,23,42,.75);
}

.bullets{
  margin: 0;
  padding-left: 18px;
  color: rgba(15,23,42,.78);
}

.bullets li{
  margin: 6px 0;
  font-size: 14px;
  line-height: 1.55;
}

.two-col{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.panel{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(15,23,42,.08);
}

.panel h3{
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 16px;
}

.panel p{
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(15,23,42,.75);
}

.usecase-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.usecase{
  background: rgba(54,146,158,.12);
  border: 1px solid rgba(54,146,158,.18);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(15,23,42,.08);
}

.usecase h3{
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 15px;
}

.usecase p{
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(15,23,42,.75);
}

@media (max-width: 1000px){
  .usecase-grid{ grid-template-columns: repeat(2, 1fr); }
  .cards-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px){
  .two-col{ grid-template-columns: 1fr; }
}

@media (max-width: 600px){
  .cards-grid{ grid-template-columns: 1fr; }
  .usecase-grid{ grid-template-columns: 1fr; }
}

.applications-how {
  background: linear-gradient(to bottom, #f6f9ff, #eef6ff);
}

.applications-how .two-col {
  gap: 22px;
  margin-top: 34px;
}

.applications-how .panel {
  position: relative;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 18px;
  padding: 22px 22px 20px;
  box-shadow: 0 12px 30px rgba(15,23,42,.08);
  transition: transform .25s ease, box-shadow .25s ease;
  overflow: hidden;
}

.applications-how .panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(15,23,42,.12);
}

.applications-how .panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-accent), var(--teal));
  opacity: .9;
}

.applications-how .panel h3 {
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 900;
}

.applications-how .panel h3::before {
  content: "•";
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(116,205,235,.35);
  border: 1px solid rgba(116,205,235,.45);
  color: #073044;
  font-weight: 900;
}

.applications-how .panel:nth-child(1) h3::before { content: "1"; }
.applications-how .panel:nth-child(2) h3::before { content: "2"; }
.applications-how .panel:nth-child(3) h3::before { content: "3"; }
.applications-how .panel:nth-child(4) h3::before { content: "4"; }

.applications-how .panel p {
  margin: 0 0 12px;
  color: rgba(15,23,42,.72);
  line-height: 1.6;
  font-size: 14px;
}

.applications-how .panel .bullets {
  margin: 0;
  padding-left: 18px;
  color: rgba(15,23,42,.75);
  line-height: 1.7;
  font-size: 14px;
}

.applications-how .panel .bullets li {
  margin: 6px 0;
}

@media (max-width: 900px) {
  .applications-how .two-col {
    grid-template-columns: 1fr;
  }
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

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

.card-img {
  height: 190px;
  overflow: hidden;
  border-radius: 14px;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.reg-driver{
  margin-top: 14px;
  padding: 12px 14px;
  border-left: 4px solid var(--blue-accent);
  background: rgba(226,238,255,.55);
  border-radius: 12px;
  color: rgba(15,23,42,.78);
}
.reg-driver strong{
  color: var(--ink);
}

@media (max-width: 900px){
  .workflow-graph{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px){
  .workflow-graph{
    grid-template-columns: 1fr;
  }
}

.tech-how-grid,
.tech-actions-grid,
.tech-how-card,
.tech-card {
  max-width: 100%;
}

.tech-how-card,
.tech-card {
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 900px){
  .tech-how-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px){
  .tech-actions-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px){
  .tech-form-row{
    grid-template-columns: 1fr;
  }

  .tech-submit,
  .tech-book-btn{
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 700px){
  .tech-actions-grid{
    grid-template-columns: 1fr;
    gap: 80px;
    align-items: stretch;
  }

  .tech-actions-grid > .tech-card{
    margin: 0;
    transform: none;
  }
}

.team-section{
  padding: 80px 0;
}

.team-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.team-card{
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0,0,0,0.08);
}

.team-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.team-body{
  padding: 24px;
}

.team-role{
  font-weight: 600;
  margin-bottom: 12px;
  opacity: 0.75;
}

@media (max-width: 1100px){
  .team-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px){
  .team-grid{
    grid-template-columns: 1fr;
  }
}

.team-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin: 6px 0 10px;
}

.team-role{
  margin:0;
}

.team-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin: 6px 0 10px;
}

.team-linkedin{
  width: 34px;
  height: 34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 10px;
  background: #0a66c2;
  color: #ffffff;
  text-decoration: none;
  flex: 0 0 auto;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.team-linkedin:hover{
  transform: translateY(-1px);
  filter: brightness(0.95);
}

.team-linkedin svg{
  width: 18px;
  height: 18px;
  display:block;
  fill: currentColor;
}

.team-card img,
.team-member img,
.our-team img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

@media (max-width: 600px) {
  .team-card img,
  .team-member img,
  .our-team img {
    object-position: center 10%;
  }
}

@media (min-width: 700px) and (max-width: 1024px){
  .team-card img{
    height: 400px;
  }
}

.footer-right{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }

.tech-platform-inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.tech-platform-media img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  object-fit: cover;
}

@media (max-width: 820px){
  .tech-platform-inner{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tech-platform-media{
    order: 1;
  }

  .tech-platform-text{
    order: 2;
  }

  .tech-platform-media img{
    max-height: 420px;
    object-fit: cover;
    object-position: center; 
  }
}

@media (max-width: 420px){
  .tech-platform-media img{
    max-height: 320px;
  }
}

.solution-band-inner{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.solution-band--alt .solution-band-inner{
  grid-template-columns: 0.9fr 1.1fr;
}

.solution-band-media{
  border-radius: 18px;
  overflow: hidden;  
}

.solution-band-media img{
  width: 100%;
  height: 100%;
  display: block; 
  object-fit: cover; 
}

@media (max-width: 760px){
  .solution-band-inner{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .solution-band-media{
    order: -1;
  }

  .solution-band-media{
    height: 220px;  
  }
}


.site-main, .container { overflow-wrap: anywhere; }

@media (max-width: 900px){
  .page-hero{ min-height: clamp(380px, 55vh, 560px); }
  .page-hero-card{
    padding: 22px 20px;
    border-radius: 16px;
  }
  .page-hero-card h1{ font-size: clamp(28px, 6vw, 40px); }
}

@media (max-width: 900px){
  .solution-band-inner,
  .tech-platform-inner{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .solution-band--alt .solution-band-inner{ grid-template-columns: 1fr; }
}

@media (max-width: 1100px){
  .sdg-grid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 800px){
  .sdg-grid{ grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 520px){
  .sdg-grid{ grid-template-columns: 1fr; }
  .sdg-grid img{ max-width: 180px; }
}

@media (max-width: 700px){
  .solutions-hero{ padding: 80px 0; }
  .solutions-hero h1{ font-size: clamp(30px, 7vw, 40px); }
}

@media (max-width: 680px){
  .team-photo{ height: 240px; }
}

.tech-actions{
  padding: 70px 0 90px;
  background: #ffffff;
}

.tech-actions-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.tech-card{
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 12px 30px rgba(15,23,42,.08);
  background: #ffffff;
  height: 100%;
}

.tech-card--book{
  background: rgba(226,238,255,.55);
  display: flex;
  flex-direction: column;
  padding: 26px;
  gap: 12px;
}

.tech-card h3{
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.tech-card p{
  margin: 0 0 14px;
  color: rgba(15,23,42,.75);
  line-height: 1.6;
}

.tech-form{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.tech-field{
  display: grid;
  gap: 6px;
}

.tech-field--full{
  grid-column: 1 / -1;
}

.tech-field span{
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

.tech-field input,
.tech-field textarea{
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.14);
  background: #f4f8ff;
  padding: 12px 14px;
  font-size: 14px;
  outline: none;
}

.tech-field textarea{
  resize: vertical;
}

.tech-field input:focus,
.tech-field textarea:focus{
  border-color: rgba(116,205,235,.85);
  box-shadow: 0 0 0 4px rgba(116,205,235,.20);
}

.tech-submit{
  grid-column: 1 / -1;
  margin-top: 4px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 0;
  background: var(--blue-accent);
  color: #073044;
  font-weight: 900;
  cursor: pointer;
}

.tech-submit:hover{
  opacity: .92;
}

.tech-book-points{
  margin: 6px 0 14px;
  padding-left: 18px;
  color: rgba(15,23,42,.75);
  line-height: 1.65;
  font-size: 14px;
}

.tech-book-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 900;
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(116,205,235,.25);
  color: var(--navy);
  border: 1px solid rgba(116,205,235,.35);
  width: fit-content;
}

.tech-book-btn:hover{
  background: rgba(116,205,235,.32);
}

.tech-book-note{
  margin-top: auto;
  font-size: 13px;
  opacity: .9;
}

@media (max-width: 900px){
  .tech-actions-grid{
    grid-template-columns: 1fr;
  }
  .tech-book-btn{
    width: 100%;
  }
}

html, body {
  overflow-x: hidden;
}

.vc-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 901px) {
  .vc-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .vc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .vc-grid {
    grid-template-columns: 1fr;
  }
}

.why-card,
.tech-how-card,
.vc-card,
.value-tile{
  display: grid;
  grid-template-columns: 52px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 10px;
  align-items: start;
}

.why-icon,
.tech-how-icon,
.vc-icon,
.value-tile .tile-icon{
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  justify-self: start;
}

.why-card h3,
.tech-how-card h3,
.vc-card h3,
.value-tile h3{
  grid-column: 2;
  grid-row: 1;
  margin: 2px 0 0;
  line-height: 1.2;
}

.why-card p,
.tech-how-card p,
.vc-card p,
.value-tile p,
.vc-card .vc-points{
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 0;
}

.vc-card .vc-points{
  margin-top: 10px;
  padding-left: 18px;
}

@media (max-width: 420px){
  .why-card,
  .tech-how-card,
  .vc-card,
  .value-tile{
    grid-template-columns: 44px 1fr;
    column-gap: 12px;
  }
}

.vc-card{
  display:grid;
  grid-template-columns:52px 1fr;
  grid-template-rows:auto auto auto;
  column-gap:14px;
  row-gap:10px;
  align-items:start;
}

.vc-icon{
  grid-column:1;
  grid-row:1;
  margin:0;
}

.vc-card h3{
  grid-column:2;
  grid-row:1;
  margin:2px 0 0;
  line-height:1.2;
}

.vc-card p{
  grid-column:1 / -1;
  grid-row:2;
  margin:0;
}

.vc-card .vc-points{
  grid-column:1 / -1;
  grid-row:3;
  margin:0;
  padding-left:18px;
}

@media (max-width:420px){
  .vc-card{
    grid-template-columns:44px 1fr;
    column-gap:12px;
  }
}

@media (max-width: 1024px){
  .solution-band-inner{
    display:flex;
    flex-direction:column;
    gap:16px;
  }

  .solution-band-inner .solution-band-media{
    order:1;
  }

  .solution-band-inner .solution-band-text{
    order:2;
  }
}

.hero-content--split{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}

.hero-flyer{
  max-width:420px;
  flex-shrink:0;
}

.hero-flyer img{
  width:100%;
  height:auto;
  border-radius:18px;
  box-shadow:0 20px 50px rgba(0,0,0,.25);
}

@media (max-width:1024px){
  .hero-content--split{
    flex-direction:column;
    text-align:center;
  }

  .hero-flyer{
    max-width:480px;
  }
}

@media (max-width:640px){
  .hero-flyer{
    max-width:100%;
  }
}

.vc-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.vc-logo {
  height: 148px;
  width: auto;
}

.partnership{
  padding: 74px 0;
}

.partnership-card{
  border-radius: 22px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 22px 60px rgba(15,23,42,.10);
  overflow: hidden;
}

.partnership-card::before{
  content:"";
  display:block;
  height: 6px;
  background: linear-gradient(90deg, rgba(116,205,235,.95), rgba(48,102,143,.95));
}

.partnership-grid{
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
  padding: 26px;
}

.partnership-main{
  padding: 4px 6px 6px;
}

.partnership-kicker{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(15,23,42,.72);
  margin-bottom: 8px;
}

.partnership-title{
  margin: 0 0 14px;
  font-size: 20px;
  color: var(--ink);
}

.checklist{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.checklist li{
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(248,250,252,.85);
  border: 1px solid rgba(15,23,42,.06);
}

.check{
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 999px;
  background: rgba(116,205,235,.20);
  border: 1px solid rgba(48,102,143,.18);
  position: relative;
}

.check::after{
  content:"";
  position:absolute;
  left: 5px;
  top: 3px;
  width: 6px;
  height: 10px;
  border-right: 2px solid rgba(15,23,42,.70);
  border-bottom: 2px solid rgba(15,23,42,.70);
  transform: rotate(40deg);
}

.partnership-actions{
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 900;
  text-decoration: none;
  color: #071b2f;
  background: linear-gradient(135deg, rgba(116,205,235,1), rgba(82,170,220,1));
  box-shadow: 0 16px 28px rgba(48,102,143,.22);
  border: 1px solid rgba(255,255,255,.55);
}

.btn-primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(48,102,143,.28);
}

.btn-link{
  font-weight: 900;
  color: rgba(15,23,42,.80);
  text-decoration: none;
}

.btn-link:hover{
  text-decoration: underline;
}

.partnership-aside{
  border-radius: 18px;
  padding: 18px;
  background:
    radial-gradient(700px 300px at 20% 20%, rgba(116,205,235,.35), transparent 60%),
    radial-gradient(700px 300px at 80% 40%, rgba(48,102,143,.30), transparent 60%),
    rgba(2, 24, 48, .02);
  border: 1px solid rgba(15,23,42,.08);
}

.funding-badge{
  border-radius: 16px;
  padding: 14px 14px 12px;
  color: rgba(255,255,255,.96);
  background: linear-gradient(135deg, rgba(11,47,90,.95), rgba(8,34,63,.95));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 44px rgba(15,23,42,.18);
  margin-bottom: 14px;
}

.funding-amount{
  font-size: 22px;
  font-weight: 950;
  letter-spacing: .02em;
}

.funding-sub{
  font-size: 12px;
  opacity: .9;
  font-weight: 800;
}

.aside-points{
  display: grid;
  gap: 12px;
}

.aside-point{
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(15,23,42,.06);
}

.aside-icon{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(116,205,235,.18);
  border: 1px solid rgba(48,102,143,.14);
}

.muted{
  font-size: 12px;
  color: rgba(15,23,42,.64);
  font-weight: 700;
  margin-top: 2px;
}

@media (max-width: 900px){
  .partnership-grid{
    grid-template-columns: 1fr;
    padding: 18px;
  }
}

.compare{
  padding: 80px 0;
  background: #f7fbff;
}

.compare-head{
  max-width: 72ch;
  margin: 0 auto 18px;
  text-align: center;
}

.compare-head p{
  margin: 0;
  color: rgba(15,23,42,.75);
}

.compare-wrap{
  margin-top: 22px;
  overflow: auto;
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 12px 30px rgba(15,23,42,.08);
}

.compare-table{
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  background: #fff;
}

.compare-table th,
.compare-table td{
  padding: 14px 16px;
  border-bottom: 1px solid rgba(15,23,42,.08);
  text-align: left;
}

.compare-table thead th{
  background: rgba(18,64,128,.06);
  color: var(--navy);
  font-weight: 800;
}

.compare-table tbody th{
  font-weight: 700;
  color: rgba(15,23,42,.88);
}

.compare-table tbody tr:hover{
  background: rgba(248,250,252,.6);
  transition: .2s ease;
}

.pill{
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
}

.pill-positive{
  background: rgba(34,197,94,.15);
  color: #166534;
  border: 1px solid rgba(34,197,94,.25);
}

.pill-neutral{
  background: rgba(148,163,184,.18);
  color: #334155;
  border: 1px solid rgba(148,163,184,.28);
}

.pill-negative{
  background: rgba(239,68,68,.15);
  color: #991b1b;
  border: 1px solid rgba(239,68,68,.25);
}

.page-hero--contact{
  background:
    radial-gradient(900px 500px at 20% 30%, rgba(116,205,235,.22), transparent 60%),
    radial-gradient(800px 500px at 80% 10%, rgba(54,146,158,.18), transparent 55%),
    linear-gradient(180deg, rgba(18,64,128,.92), rgba(18,64,128,.72));
}

.hero-slide--cta{
  background:
    radial-gradient(900px 500px at 20% 30%, rgba(116,205,235,.22), transparent 60%),
    radial-gradient(800px 500px at 80% 10%, rgba(54,146,158,.18), transparent 55%),
    linear-gradient(180deg, rgba(18,64,128,.92), rgba(18,64,128,.72));
}

.hero-slide--cta .hero-card{
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.18);
}

.page-hero--contact::after{
  background: transparent;
}

.testimonials{
  padding: 70px 0;
}

.testimonials-head{
  text-align: center;
  max-width: 72ch;
  margin: 0 auto 26px;
}

.testimonials-head p{
  margin: 0;
  color: rgba(15,23,42,.75);
}

.testimonials-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.t-card{
  margin: 0;
  padding: 22px;
  border-radius: 18px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 12px 30px rgba(15,23,42,.08);
}

.t-stars{
  font-weight: 900;
  letter-spacing: 0.10em;
  color: rgba(18,64,128,.85);
  margin-bottom: 10px;
}

.t-card blockquote{
  margin: 0 0 14px;
  color: rgba(15,23,42,.82);
  line-height: 1.65;
}

.t-card figcaption{
  display: grid;
  gap: 2px;
}

.t-name{
  font-weight: 800;
  color: var(--navy);
}

.t-role{
  font-size: 13px;
  color: rgba(15,23,42,.68);
}

@media (max-width: 900px){
  .testimonials-grid{ grid-template-columns: 1fr; }
}

.thanks-body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #f7f9fc;
}

.thanks-wrapper {
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: center;
}

.thanks-card {
  background: #ffffff;
  padding: 60px 50px;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
  text-align: center;
  max-width: 650px;
}

.team-photo{
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.team-photo img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 20%;
}

@media (max-width: 680px){
  .team-photo{
    height: 320px;
  }
  .team-photo img{
    object-position: center 20%;
  }
}

.hidden { display: none; }