/* ================= HOME — "Skyline" redesign ================= */

/* ---------- HERO (split, image right) ---------- */
.hero{
  position: relative;
  padding: 64px 24px 40px;
  overflow: hidden;
}
.hero .blob-a{ width: 480px; height: 480px; background: var(--coral); top: -180px; left: -160px; opacity: .16; }
.hero .blob-b{ width: 380px; height: 380px; background: var(--amber); top: 40px; right: -140px; opacity: .2; }

.hero-grid{
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
}

.hero-copy h1{
  font-size: clamp(34px, 4.6vw, 58px);
  margin-top: 18px;
  letter-spacing: -0.01em;
}
.hero-copy h1 em{
  font-style: normal;
  background: linear-gradient(100deg, var(--coral), var(--amber), var(--sky-500), var(--violet), var(--coral));
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: hero-gradient-move 8s linear infinite;
}
@keyframes hero-gradient-move{
  to{ background-position: -300% center; }
}
@media (prefers-reduced-motion: reduce){
  .hero-copy h1 em{ animation: none; }
}
.hero-copy .desc{
  margin-top: 20px;
  font-size: 17px;
  color: var(--ink-500);
  max-width: 500px;
}
.hero-actions{
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-pills{
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-pills span{
  font-size: 13px;
  font-weight: 600;
  color: var(--sky-700);
  background: #fff;
  border: 1px solid var(--sky-200);
  padding: 8px 14px;
  border-radius: var(--r-pill);
}

.hero-visual{
  position: relative;
}
.hero-visual .frame{
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
}
.hero-visual img{ width: 100%; height: 460px; object-fit: cover; }

.hero-float{
  position: absolute;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-float.f1{ top: -22px; left: -30px; }
.hero-float.f2{ bottom: 24px; right: -26px; }
.hero-float .fi{
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 16px;
}
.hero-float.f1 .fi{ background: linear-gradient(135deg, var(--sky-500), var(--sky-700)); }
.hero-float.f2 .fi{ background: linear-gradient(135deg, var(--mint), #0e7ba3); }
.hero-float h5{ font-size: 17px; }
.hero-float span{ font-size: 12px; color: var(--ink-500); }

@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-visual{ order: -1; }
  .hero-float{ display: none; }
}

/* ---------- STRIP (marquee-ish quick facts) ---------- */
.fact-strip{
  max-width: var(--container);
  margin: 56px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.fact-strip .fact{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.fact-strip .fact:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.fact-strip h4{ font-size: 26px; color: var(--sky-700); }
.fact-strip p{ font-size: 13px; color: var(--ink-500); margin-top: 4px; }
@media (max-width: 760px){ .fact-strip{ grid-template-columns: repeat(2,1fr); } }

/* ---------- SERVICES — bento grid ---------- */
.services-section{
  max-width: var(--container);
  margin: 72px auto 0;
  padding: 0 24px;
}
.bento{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 224px;
  gap: 20px;
}
.bento-card{
  position: relative;
  border-radius: var(--r-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .35s ease, box-shadow .35s ease;
}
.bento-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-md); }
.bento-card .b-icon{
  width: 50px; height: 50px;
  border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
  color: #fff;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.bento-card h4{ font-size: 18.5px; padding-right: 30px; }
.bento-card p{ font-size: 13.5px; color: var(--ink-500); margin-top: 8px; }
.bento-card .b-arrow{
  position: absolute;
  top: 26px; right: 26px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  color: var(--ink-700);
  transition: background .3s ease, transform .3s ease;
}
.bento-card:hover .b-arrow{ transform: rotate(45deg); }

.bento-card.large{ grid-column: span 2; grid-row: span 2; justify-content: center; background: linear-gradient(155deg, var(--sky-600), var(--sky-900)); }
.bento-card.large .b-icon{ width: 60px; height: 60px; font-size: 22px; margin-bottom: 20px; background: rgba(255,255,255,.18); }
.bento-card.large h4{ color: #fff; font-size: 25px; }
.bento-card.large p{ color: var(--sky-100); font-size: 14.5px; max-width: 320px; margin-top: 10px; }
.bento-card.large .b-arrow{ background: rgba(255,255,255,.18); color: #fff; }

.bento-card.c1{ background: var(--sky-50); }
.bento-card.c1 .b-icon{ background: linear-gradient(135deg, var(--sky-500), var(--sky-700)); }
.bento-card.c2{ background: #ffedee; }
.bento-card.c2 .b-icon{ background: linear-gradient(135deg, var(--coral), #d92e3f); }
.bento-card.c3{ background: #fff7dc; }
.bento-card.c3 .b-icon{ background: linear-gradient(135deg, var(--amber), #e8a000); }
.bento-card.c4{ background: var(--bg-tint-2); }
.bento-card.c4 .b-icon{ background: linear-gradient(135deg, var(--mint), #0c6a8f); }

@media (max-width: 980px){
  .bento{ grid-template-columns: repeat(2, 1fr); }
  .bento-card.large{ grid-column: span 2; grid-row: span 1; min-height: 230px; }
}
@media (max-width: 600px){
  .bento{ grid-template-columns: 1fr; }
  .bento-card.large{ grid-column: span 1; }
}

/* ---------- INDUSTRIES — accordion rows ---------- */
.industries-section{
  max-width: var(--container);
  margin: 72px auto 0;
  padding: 0 24px;
}
.acc-list{ display: flex; flex-direction: column; gap: 14px; }
.acc-row{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 26px;
  cursor: pointer;
  transition: border-color .25s ease, background .25s ease;
}
.acc-row:hover{ border-color: var(--sky-300); }
.acc-row.open{ background: var(--sky-50); border-color: var(--sky-300); }

.acc-head{ display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.acc-left{ display: flex; align-items: center; gap: 16px; }
.acc-num{ font-size: 13px; font-weight: 700; color: var(--sky-300); width: 30px; }
.acc-icon{
  width: 46px; height: 46px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px;
  flex-shrink: 0;
}
.acc-row h4{ font-size: 18px; }
.acc-plus{
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--sky-300);
  display: flex; align-items: center; justify-content: center;
  color: var(--sky-600);
  transition: transform .3s ease, background .3s ease, color .3s ease;
  flex-shrink: 0;
}
.acc-row.open .acc-plus{ background: var(--sky-600); color: #fff; transform: rotate(135deg); }

.acc-body{
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.acc-row.open .acc-body{ max-height: 120px; }
.acc-body p{
  padding: 16px 0 4px 62px;
  color: var(--ink-500);
  font-size: 14.5px;
  max-width: 560px;
}

/* ---------- PROCESS — vertical timeline ---------- */
.process-section{
  max-width: var(--container);
  margin: 72px auto 0;
  padding: 0 24px;
}
.timeline{
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}
.timeline::before{
  content: "";
  position: absolute;
  left: 27px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: repeating-linear-gradient(to bottom, var(--sky-200) 0 6px, transparent 6px 12px);
}
.tl-item{
  position: relative;
  display: flex;
  gap: 24px;
  padding-bottom: 44px;
}
.tl-item:last-child{ padding-bottom: 0; }
.tl-dot{
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--sky-200);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--sky-700);
  flex-shrink: 0;
  z-index: 1;
  box-shadow: var(--shadow-sm);
}
.tl-item.active .tl-dot{ background: linear-gradient(135deg, var(--sky-500), var(--sky-700)); color: #fff; border-color: transparent; }
.tl-card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 20px 24px;
  flex: 1;
  box-shadow: var(--shadow-sm);
}
.tl-card h4{ font-size: 17px; }
.tl-card p{ font-size: 14px; color: var(--ink-500); margin-top: 6px; }

/* ---------- WHY / RESULTS ---------- */
.why-section{
  max-width: var(--container);
  margin: 72px auto 0;
  padding: 0 24px;
}
.result-strip{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.result-tile{
  border-radius: var(--r-lg);
  padding: 30px 26px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.result-tile h4{ color: #fff; font-size: 34px; }
.result-tile p{ color: rgba(255,255,255,.85); margin-top: 4px; font-size: 14px; }
.result-tile i{ position: absolute; right: 18px; top: 18px; font-size: 30px; opacity: .3; }
.result-tile.r1{ background: linear-gradient(135deg, var(--sky-500), var(--sky-800)); }
.result-tile.r2{ background: linear-gradient(135deg, var(--violet), #3b46b8); }
.result-tile.r3{ background: linear-gradient(135deg, var(--coral), #c81e3a); }

.why-columns{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.why-list{ display: flex; flex-direction: column; gap: 14px; }
.why-list li{
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 14.5px;
  color: var(--ink-700);
  font-weight: 500;
}
.why-list li i{
  color: var(--sky-600);
  background: var(--sky-100);
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}
.why-visual{
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.why-visual img{ width: 100%; height: 340px; object-fit: cover; }

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

/* ---------- TESTIMONIALS — staggered ---------- */
.testi-section{
  max-width: var(--container);
  margin: 72px auto 0;
  padding: 0 24px;
}
.testi-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.testi-card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.testi-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-md); }
.testi-card .quote-mark{ font-size: 40px; color: var(--sky-200); font-family: Georgia, serif; line-height: 1; }
.testi-card .stars{ color: var(--amber); font-size: 13px; margin: 10px 0 12px; letter-spacing: 2px; }
.testi-card p{ font-size: 14.5px; color: var(--ink-700); }
.testi-client{ display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 22px; }
.testi-client img{ width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--sky-100); }
.testi-client h5{ font-size: 14px; }
.testi-client span{ font-size: 12.5px; color: var(--ink-500); }

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