/* ========================================================
   Page-specific styles (enhanced)
   ======================================================== */

/* =========== PAGE HEADER (inner pages) =========== */
.page-hero {
  background: var(--dark); color: var(--white);
  padding: 10rem 0 5.5rem; position: relative; overflow: hidden;
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(0, 87, 255, 0.3), transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(0, 212, 255, 0.15), transparent 55%);
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}
.page-hero__content { position: relative; z-index: 2; max-width: 820px; }
.page-hero__title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white); letter-spacing: -0.03em; line-height: 1.05;
  margin-bottom: 1.25rem;
}
.page-hero__title em {
  font-style: normal; color: var(--cyan); font-weight: 900;
}
.page-hero__lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: rgba(255, 255, 255, 0.72); max-width: 620px;
  line-height: 1.55;
}

.crumb {
  display: flex; gap: 0.5rem; font-family: var(--font-mono);
  font-size: 0.72rem; color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 1.75rem; font-weight: 500;
}
.crumb a { transition: color var(--t-fast); }
.crumb a:hover { color: var(--cyan); }
.crumb__sep { color: rgba(255, 255, 255, 0.25); }

/* =========== ABOUT PAGE =========== */
.about-intro {
  display: grid; grid-template-columns: 1.25fr 1fr; gap: 4rem; align-items: center;
}
.about-intro__img {
  border-radius: 2px; overflow: hidden; position: relative; aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.about-intro__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s ease;
}
.about-intro__img:hover img { transform: scale(1.05); }
.about-intro__img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(225deg, transparent 60%, rgba(0, 87, 255, 0.2));
  pointer-events: none;
}
.about-intro__img::before {
  content: ''; position: absolute; bottom: 1.5rem; left: 1.5rem;
  width: 60px; height: 60px;
  background: var(--cyan); color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-weight: 600; font-size: 0.75rem;
  letter-spacing: 0.15em; z-index: 2;
  border-radius: 2px;
}

.mv-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2.5rem;
}
.mv-card {
  padding: 2rem; border-left: 4px solid var(--blue);
  background: var(--off); border-radius: 0 2px 2px 0;
  position: relative; transition: all var(--t);
}
.mv-card:hover { transform: translateX(4px); border-left-color: var(--cyan); }
.mv-card--dark {
  background: var(--dark); color: var(--white);
  border-left-color: var(--cyan);
  position: relative; overflow: hidden;
}
.mv-card--dark::after {
  content: ''; position: absolute; top: 0; right: 0;
  width: 60px; height: 60px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.15), transparent 70%);
}
.mv-card__label {
  font-family: var(--font-mono); font-size: 0.7rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 0.75rem; font-weight: 600;
}
.mv-card--dark .mv-card__label { color: var(--cyan); }
.mv-card__body { font-size: 0.95rem; line-height: 1.6; margin: 0; }

/* =========== LEADER BLOCK =========== */
.leader {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 3.5rem; align-items: start;
}
.leader__card {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-2) 100%);
  color: var(--white); padding: 3rem 2rem;
  border-top: 4px solid var(--cyan);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.leader__card::before {
  content: ''; position: absolute; top: -40%; right: -40%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.2), transparent 60%);
  pointer-events: none;
}
.leader__card::after {
  content: ''; position: absolute; bottom: -20px; left: -20px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0, 87, 255, 0.15), transparent 60%);
  pointer-events: none;
}
.leader__avatar {
  width: 110px; height: 110px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.75rem; color: var(--white);
  position: relative; z-index: 2;
  box-shadow: 0 12px 40px rgba(0, 212, 255, 0.35);
}
.leader__avatar::after {
  content: ''; position: absolute; inset: -6px;
  border-radius: 50%; border: 1px solid rgba(0, 212, 255, 0.3);
}
.leader__avatar svg { width: 56px; height: 56px; }
.leader__name {
  font-size: 1.4rem; font-weight: 800; text-align: center;
  position: relative; z-index: 2;
  letter-spacing: -0.01em;
}
.leader__role {
  text-align: center; color: var(--cyan);
  font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600;
  margin-top: 0.5rem; position: relative; z-index: 2;
}
.leader__card-divider {
  width: 40px; height: 2px; background: var(--cyan);
  margin: 1.5rem auto; position: relative; z-index: 2;
}
.leader__card-meta {
  text-align: center; font-family: var(--font-mono); font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5); letter-spacing: 0.15em;
  text-transform: uppercase; position: relative; z-index: 2;
}
.leader__bio { font-size: 1.05rem; color: var(--gray-dk); margin-bottom: 1.75rem; line-height: 1.65; }
.leader__creds-title {
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.22em;
  color: var(--blue); text-transform: uppercase; margin-bottom: 1.25rem;
  font-weight: 600; display: flex; align-items: center; gap: 0.75rem;
}
.leader__creds-title::before {
  content: ''; width: 28px; height: 2px; background: var(--blue);
}
.leader__creds { display: flex; flex-direction: column; gap: 0.9rem; }
.leader__cred {
  display: flex; gap: 0.85rem; align-items: flex-start;
  font-size: 0.95rem; color: var(--gray-dk);
  padding: 0.75rem 1rem; background: var(--off);
  border-left: 3px solid var(--blue);
  border-radius: 0 2px 2px 0;
  transition: all var(--t-fast);
}
.leader__cred:hover { border-left-color: var(--cyan); background: var(--off-2); }
.leader__cred svg {
  width: 18px; height: 18px; color: var(--blue); margin-top: 3px; flex-shrink: 0;
}

/* =========== SERVICES PAGE =========== */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-full {
  padding: 2.5rem; background: var(--white);
  border: 1px solid var(--gray-lt); border-radius: 2px;
  transition: all var(--t); position: relative;
  overflow: hidden;
}
.service-full::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t);
}
.service-full:hover {
  border-color: var(--blue); transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-full:hover::before { transform: scaleX(1); }
.service-full .card-num { font-size: 0.78rem; }
.service-full .card-icon { width: 64px; height: 64px; margin-top: 1.5rem; }
.service-full .card-title { font-size: 1.3rem; margin: 1rem 0 0.75rem; }
.service-full__list {
  margin-top: 1.5rem; padding-top: 1.5rem;
  border-top: 1px solid var(--gray-lt);
}
.service-full__list li {
  font-size: 0.88rem; color: var(--gray-dk);
  padding: 0.4rem 0; padding-left: 1.5rem; position: relative;
  transition: color var(--t-fast);
}
.service-full__list li::before {
  content: ''; position: absolute; left: 0; top: 0.95em;
  width: 8px; height: 2px; background: var(--blue);
  transition: width var(--t-fast);
}
.service-full:hover .service-full__list li::before { width: 12px; }

/* Solar spotlight */
.solar-spotlight {
  background: var(--dark); color: var(--white);
  border-radius: 2px; overflow: hidden;
  display: grid; grid-template-columns: 1.3fr 1fr;
  margin-top: 3rem; position: relative;
  box-shadow: var(--shadow-lg);
}
.solar-spotlight::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  z-index: 3;
}
.solar-spotlight__content { padding: 3.5rem 3rem; position: relative; z-index: 2; }
.solar-spotlight__img { position: relative; min-height: 400px; }
.solar-spotlight__img img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.solar-spotlight__img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10, 14, 26, 0.4), transparent 40%);
}
.solar-spotlight h3 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--white); margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.solar-spotlight p {
  color: rgba(255, 255, 255, 0.8); max-width: 48ch; line-height: 1.6;
}
.solar-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem;
}
.solar-feature {
  display: flex; gap: 0.85rem; align-items: flex-start;
}
.solar-feature__dot {
  width: 24px; height: 24px; border-radius: 50%;
  border: 2px solid var(--cyan);
  background: rgba(0, 212, 255, 0.1); flex-shrink: 0; margin-top: 2px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.solar-feature__dot::after {
  content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}
.solar-feature strong {
  display: block; font-size: 0.95rem; color: var(--white);
  font-weight: 600; margin-bottom: 0.25rem;
}
.solar-feature span {
  font-size: 0.85rem; color: rgba(255, 255, 255, 0.6); line-height: 1.5;
}

.sectors-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}

.standards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 3rem;
}
.standard-col {
  background: rgba(255, 255, 255, 0.03); padding: 2.5rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 4px solid var(--cyan); position: relative;
  backdrop-filter: blur(10px);
  transition: all var(--t);
}
.standard-col:hover {
  border-color: rgba(0, 212, 255, 0.3);
  border-top-color: var(--cyan);
  background: rgba(0, 212, 255, 0.03);
}
.standard-col__icon {
  width: 56px; height: 56px; margin-bottom: 1.25rem;
  color: var(--cyan); padding: 12px;
  background: rgba(0, 212, 255, 0.08);
  border-radius: 12px;
}
.standard-col h4 {
  font-size: 1.2rem; font-weight: 700;
  margin-bottom: 1.25rem; color: var(--white);
}
.standard-col ul li {
  padding: 0.5rem 0; font-size: 0.92rem; color: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-left: 1.5rem; position: relative;
  transition: color var(--t-fast);
}
.standard-col ul li:hover { color: var(--white); }
.standard-col ul li:last-child { border-bottom: 0; }
.standard-col ul li::before {
  content: '→'; position: absolute; left: 0; color: var(--cyan);
  font-weight: bold;
}
.countries-strip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 212, 255, 0.2);
  color: var(--white); padding: 1.5rem 2rem;
  margin-top: 2rem; border-radius: 2px;
  font-size: 0.9rem; letter-spacing: 0.02em;
  display: flex; align-items: center; gap: 1rem;
  backdrop-filter: blur(10px);
}
.countries-strip svg { color: var(--cyan); width: 22px; height: 22px; flex-shrink: 0; }

/* =========== PORTFOLIO =========== */
.portfolio-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
  margin-top: 3rem;
}
.project {
  position: relative; overflow: hidden; aspect-ratio: 1;
  cursor: pointer; background: var(--dark);
  border-radius: 2px;
}
.project img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.project::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10, 14, 26, 0.98));
  z-index: 1; transition: opacity var(--t);
}
.project::after {
  content: ''; position: absolute; top: 1rem; right: 1rem;
  width: 32px; height: 32px; z-index: 3;
  background: rgba(0, 212, 255, 0.2);
  border: 1px solid var(--cyan);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity var(--t) 0.1s;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300D4FF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M7 17L17 7M17 7H7M17 7V17'/></svg>");
  background-position: center; background-repeat: no-repeat; background-size: 16px;
}
.project:hover::after { opacity: 1; }
.project:hover img { transform: scale(1.1); }

.project__content {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 1.5rem; color: var(--white);
  transform: translateY(30%); transition: transform var(--t);
}
.project:hover .project__content { transform: translateY(0); }
.project__tag {
  font-family: var(--font-mono); font-size: 0.65rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 0.5rem; font-weight: 600;
}
.project__title {
  font-size: 1.1rem; font-weight: 700; line-height: 1.25;
  margin-bottom: 0.3rem;
}
.project__desc {
  font-size: 0.82rem; color: rgba(255, 255, 255, 0.7);
  opacity: 0; transition: opacity var(--t) 0.1s;
}
.project:hover .project__desc { opacity: 1; }

/* Gallery variant — tile with multiple photos */
.project--gallery {
  cursor: zoom-in;
}
.project--gallery .project__gallery-data { display: none; }

/* Wide tile spans 2 columns in the grid */
.project--wide { grid-column: span 2; }

/* Photo count badge (cyan pill, top-right) */
.project__badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 3;
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  background: rgba(0, 212, 255, 0.95);
  color: var(--dark);
  font-family: var(--font-mono); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 14px rgba(0, 212, 255, 0.25);
  transition: transform var(--t);
}
.project--gallery:hover .project__badge {
  transform: scale(1.08);
  background: var(--white);
}

/* Override corner arrow for gallery tiles — replace with different icon */
.project--gallery::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300D4FF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M15 3h6v6M9 21H3v-6M21 3l-7 7M3 21l7-7'/></svg>");
}

/* =========== LIGHTBOX =========== */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  animation: lightboxIn 0.25s ease-out;
}
@keyframes lightboxIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.lightbox[hidden] { display: none !important; }

.lightbox__content {
  position: relative; max-width: min(95vw, 1400px);
  max-height: 90vh;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  animation: lightboxImgIn 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@keyframes lightboxImgIn {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lightbox__img {
  max-width: 100%; max-height: 78vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  display: block;
}

.lightbox__caption {
  color: var(--white); font-size: 0.95rem;
  font-family: var(--font-body); text-align: center;
  max-width: 600px;
}

.lightbox__counter {
  font-family: var(--font-mono); font-size: 0.75rem;
  color: var(--cyan); letter-spacing: 0.2em;
  font-weight: 600;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute; z-index: 2;
  width: 48px; height: 48px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.5rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--t-fast);
  backdrop-filter: blur(12px);
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: var(--cyan); color: var(--dark);
  border-color: var(--cyan);
  transform: scale(1.08);
}
.lightbox__close { top: 1.5rem; right: 1.5rem; font-size: 1.3rem; }
.lightbox__prev  { top: 50%; left: 1.5rem;  transform: translateY(-50%); font-size: 2rem; }
.lightbox__next  { top: 50%; right: 1.5rem; transform: translateY(-50%); font-size: 2rem; }
.lightbox__prev:hover { transform: translateY(-50%) scale(1.08); }
.lightbox__next:hover { transform: translateY(-50%) scale(1.08); }

/* Featured project */
.featured-project {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--dark); color: var(--white);
  margin-top: 3rem; min-height: 480px;
  border-radius: 2px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.featured-project__img { position: relative; overflow: hidden; }
.featured-project__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 8s ease;
}
.featured-project:hover .featured-project__img img { transform: scale(1.08); }
.featured-project__img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(10, 14, 26, 0.4));
}
.featured-project__content {
  padding: 3.5rem 3rem; display: flex; flex-direction: column;
  justify-content: center; position: relative;
}
.featured-project h3 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem); color: var(--white);
  margin-bottom: 1rem; letter-spacing: -0.02em;
}
.featured-project > div > p { color: rgba(255, 255, 255, 0.75); margin-bottom: 2rem; line-height: 1.6; }
.featured-project ul li {
  padding: 0.75rem 0; font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex; justify-content: space-between; align-items: center;
}
.featured-project ul li:last-child { border-bottom: 0; }
.featured-project ul li strong { color: var(--cyan); font-weight: 500; font-family: var(--font-mono); font-size: 0.88rem; }

/* =========== CLIENTS =========== */
.clients-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  margin-top: 3rem;
}
.client-card {
  padding: 2rem 1.5rem; border-left: 4px solid var(--blue);
  background: var(--white); border-top: 1px solid var(--gray-lt);
  border-right: 1px solid var(--gray-lt); border-bottom: 1px solid var(--gray-lt);
  min-height: 130px; display: flex; align-items: center;
  transition: all var(--t); position: relative; overflow: hidden;
}
.client-card::after {
  content: ''; position: absolute; top: 50%; right: -40px; transform: translateY(-50%);
  width: 100px; height: 100px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 87, 255, 0.04), transparent 70%);
  transition: all var(--t);
}
.client-card:hover {
  border-left-color: var(--cyan);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
.client-card:hover::after {
  background: radial-gradient(circle, rgba(0, 212, 255, 0.08), transparent 70%);
  transform: translateY(-50%) scale(1.2);
}
.client-card__name {
  font-size: 0.98rem; font-weight: 700; color: var(--dark);
  letter-spacing: -0.01em; line-height: 1.3;
  font-family: var(--font-display);
  position: relative; z-index: 2;
}
.clients-trust {
  background: linear-gradient(135deg, var(--off) 0%, var(--off-2) 100%);
  padding: 1.75rem 2rem; margin-top: 2rem;
  font-style: italic; color: var(--blue); text-align: center;
  font-size: 1.05rem; border-radius: 2px;
  border-left: 3px solid var(--blue);
}

/* =========== WHY US =========== */
.why-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem;
  margin-top: 3rem;
}
.why-card {
  padding: 2rem 1.5rem; background: var(--white);
  border-top: 3px solid var(--blue); transition: all var(--t);
  position: relative; overflow: hidden;
}
.why-card::after {
  content: ''; position: absolute; top: 0; right: 0;
  width: 30px; height: 30px;
  background-image: linear-gradient(135deg, transparent 45%, var(--gray-lt) 45%, var(--gray-lt) 55%, transparent 55%);
  background-size: 5px 5px; opacity: 0.4;
}
.why-card:hover {
  border-top-color: var(--cyan); transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.why-num {
  font-family: var(--font-display); font-weight: 900;
  font-size: 3.5rem; line-height: 1;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.why-divider {
  width: 32px; height: 2px; background: var(--dark);
  margin: 0.75rem 0 1rem;
  transition: width var(--t);
}
.why-card:hover .why-divider { width: 48px; background: var(--cyan); }
.why-card h4 {
  font-size: 1.05rem; font-weight: 700;
  margin-bottom: 0.5rem; color: var(--dark);
}
.why-card p {
  font-size: 0.85rem; color: var(--gray);
  line-height: 1.5; margin: 0;
}

/* =========== CONTACT PAGE =========== */
.contact-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem;
  margin-top: 3rem;
}
.contact-info h3 { font-size: 1.6rem; margin-bottom: 1rem; }
.contact-info > p { color: var(--gray); margin-bottom: 2.5rem; font-size: 1rem; line-height: 1.6; }

.contact-rows { display: flex; flex-direction: column; gap: 1rem; }
.contact-row {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.35rem 1.25rem; background: var(--off);
  border-left: 4px solid var(--blue); border-radius: 0 2px 2px 0;
  transition: all var(--t);
}
.contact-row:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-left-color: var(--cyan);
  transform: translateX(4px);
}
.contact-row__icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-dk));
  color: var(--white); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t);
  box-shadow: 0 4px 12px rgba(0, 87, 255, 0.25);
}
.contact-row:hover .contact-row__icon {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  transform: rotate(-5deg);
}
.contact-row__icon svg { width: 18px; height: 18px; }
.contact-row__label {
  font-family: var(--font-mono); font-size: 0.7rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 0.3rem; font-weight: 600;
}
.contact-row__value {
  font-size: 0.98rem; color: var(--dark); font-weight: 500; line-height: 1.4;
}
.contact-row__value a:hover { color: var(--blue); }

.contact-cta-card {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-2) 100%);
  color: var(--white);
  padding: 3rem 2.5rem; border-radius: 2px;
  position: relative; overflow: hidden;
  align-self: start;
  border-top: 4px solid var(--cyan);
  box-shadow: var(--shadow-lg);
}
.contact-cta-card::before {
  content: ''; position: absolute; top: -50%; right: -50%;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.15), transparent 60%);
}
.contact-cta-card::after {
  content: ''; position: absolute; bottom: -80px; left: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 87, 255, 0.12), transparent 60%);
}
.contact-cta-card h4 { font-size: 1.4rem; color: var(--white); margin-bottom: 0.75rem; position: relative; z-index: 2; }
.contact-cta-card > p { color: rgba(255, 255, 255, 0.75); margin-bottom: 2rem; font-size: 0.95rem; line-height: 1.6; position: relative; z-index: 2; }
.wa-cta {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 1rem 1.5rem; background: #25D366; color: var(--white);
  border-radius: 100px; font-weight: 600;
  transition: all var(--t); width: 100%; justify-content: center;
  font-size: 1rem; position: relative; z-index: 2;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}
.wa-cta:hover { background: #1eb556; transform: translateY(-2px); box-shadow: 0 14px 32px rgba(37, 211, 102, 0.5); }
.wa-cta svg { width: 20px; height: 20px; }
.contact-hours {
  margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.87rem; color: rgba(255, 255, 255, 0.65); line-height: 1.6;
  position: relative; z-index: 2;
}
.contact-hours strong {
  color: var(--cyan); font-family: var(--font-mono);
  font-weight: 600; display: block; margin-bottom: 0.5rem; font-size: 0.7rem;
  letter-spacing: 0.18em; text-transform: uppercase;
}

/* =========== CTA BAND =========== */
.cta-band {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dk) 100%);
  color: var(--white);
  padding: 5rem 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.25), transparent 60%);
}
.cta-band::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.cta-band__content { position: relative; z-index: 2; }
.cta-band h2 {
  color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem; letter-spacing: -0.02em;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.9); max-width: 580px; margin: 0 auto 2rem;
  font-size: 1.05rem; line-height: 1.6;
}
.cta-band .btn { font-size: 1.05rem; padding: 1.1rem 2.25rem; }

/* =========== RESPONSIVE =========== */
@media (max-width: 960px) {
  .about-intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-intro__img { aspect-ratio: 16/10; max-width: 100%; }
  .mv-grid { grid-template-columns: 1fr; gap: 1rem; }

  .leader { grid-template-columns: 1fr; gap: 2rem; }

  .solar-spotlight { grid-template-columns: 1fr; }
  .solar-spotlight__img { aspect-ratio: 16/9; min-height: unset; }
  .solar-spotlight__content { padding: 2.5rem 2rem; }
  .solar-features { grid-template-columns: 1fr; }

  .standards-grid { grid-template-columns: 1fr; }

  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .project--wide { grid-column: span 2; }

  .lightbox { padding: 1rem; }
  .lightbox__close { top: 1rem; right: 1rem; width: 40px; height: 40px; }
  .lightbox__prev  { left: 0.5rem;  width: 40px; height: 40px; }
  .lightbox__next  { right: 0.5rem; width: 40px; height: 40px; }

  .featured-project { grid-template-columns: 1fr; }
  .featured-project__img { aspect-ratio: 16/10; }
  .featured-project__content { padding: 2.5rem 2rem; }

  .clients-grid { grid-template-columns: repeat(2, 1fr); }

  .why-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .countries-strip { flex-direction: column; text-align: center; padding: 1.25rem; }
}

@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .project--wide { grid-column: span 1; }
  .clients-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: 1fr; }
}
