/* ═══════════════════════════════════════════
   TRYANNET — HOME PAGE STYLES
   Brand: Emerald Green + Electric Blue + White
═══════════════════════════════════════════ */

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.1s ease;
  z-index: 1;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6,13,9,0.90) 0%,
    rgba(6,13,9,0.68) 45%,
    rgba(6,13,9,0.82) 100%
  );
}

.hero__highlight {
  font-style: normal;
  background: linear-gradient(135deg, var(--cyan), var(--orange), #0EC574);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  white-space: nowrap;
}
.hero__highlight::after {
  content: "";
  position: absolute;
  inset: -6px;
  background: radial-gradient(circle, rgba(14,197,116,0.15), transparent 65%);
  filter: blur(10px);
  z-index: -1;
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: 3;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: 96px;
}
.hero__text { max-width: 700px; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(14,197,116,0.3);
  border-radius: 100px;
  padding: 7px 18px;
  margin-bottom: 26px;
  background: rgba(14,197,116,0.06);
  animation: fadeDown 0.7s ease forwards;
}
.hero__eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan);
  animation: blink 2s ease infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.3; }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(50px, 7.5vw, 108px);
  letter-spacing: 0.01em;
  line-height: 0.96;
  color: var(--white);
  margin-bottom: 22px;
  opacity: 0;
  animation: heroTitle 0.85s cubic-bezier(0.22,1,0.36,1) 0.12s forwards;
}
@keyframes heroTitle {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__title-line1 { display: block; }
.hero__title-line2 {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(14,197,116,0.55);
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--cyan), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  font-size: 17px;
  color: rgba(235,245,238,0.88);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 38px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.38s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.55s forwards;
}

/* Slide info */
.hero__slide-info {
  position: relative;
  z-index: 3;
  padding: 0 40px 56px;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}
.hero__slide-title {
  font-family: var(--ff-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 7px;
}
.hero__slide-desc { display: flex; gap: 18px; flex-wrap: wrap; }
.hero__slide-desc span {
  font-size: 13px;
  color: var(--muted);
  padding-left: 13px;
  position: relative;
}
.hero__slide-desc span::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 4px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--cyan);
}

/* Slide nav */
.hero__nav {
  position: absolute;
  bottom: 30px; right: 40px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero__dots { display: flex; gap: 7px; }
.hero__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(235,245,238,0.25);
  cursor: pointer;
  transition: all 0.3s;
}
.hero__dot.active {
  background: var(--cyan);
  width: 22px;
  border-radius: 3px;
  box-shadow: 0 0 8px var(--cyan);
}
.hero__arrows { display: flex; gap: 7px; }
.hero__arrow {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(14,197,116,0.08);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s;
}
.hero__arrow:hover {
  background: rgba(14,197,116,0.22);
  border-color: var(--cyan);
  box-shadow: 0 0 16px var(--glow);
}

/* Corner decor */
.hero__corner {
  position: absolute;
  width: 56px; height: 56px;
  z-index: 4;
}
.hero__corner--tl { top: 88px; left: 40px; border-top: 2px solid var(--cyan); border-left: 2px solid var(--cyan); }
.hero__corner--br { bottom: 88px; right: 40px; border-bottom: 2px solid var(--orange); border-right: 2px solid var(--orange); }

/* ── Stats Band ── */
.stats {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}
.stats__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.stats__item {
  text-align: center;
  padding: 44px 20px;
  border-right: 1px solid var(--border2);
  position: relative;
  transition: background 0.3s;
}
.stats__item:last-child { border-right: none; }
.stats__item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--orange));
  transition: width 0.45s;
}
.stats__item:hover { background: rgba(14,197,116,0.04); }
.stats__item:hover::before { width: 75%; }
.stats__val {
  font-family: var(--ff-display);
  font-size: clamp(42px, 5.5vw, 70px);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  background: linear-gradient(135deg, var(--white), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.stats__lbl {
  font-family: var(--ff-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 5px;
}

/* ── About Preview ── */
.about-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-preview__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.about-preview__img-wrap {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
}
.about-preview__img-wrap.big { grid-row: span 2; }
.about-preview__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.about-preview__img-wrap:hover img { transform: scale(1.04); }
.about-preview__img-wrap .img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--bg3), var(--bg4));
  display: flex; align-items: center; justify-content: center;
  font-size: 44px;
  color: var(--border);
}
.about-preview__img-wrap.big .img-placeholder { height: 100%; min-height: 400px; }
.about-preview__badge {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(6,13,9,0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(14,197,116,0.28);
  border-radius: 10px;
  padding: 10px 14px;
  z-index: 2;
}
.about-preview__badge-val {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
}
.about-preview__badge-lbl {
  font-family: var(--ff-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}
.about-preview__checks {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 26px;
}
.about-preview__check {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
  color: var(--muted);
}
.about-preview__check-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(14,197,116,0.1);
  border: 1px solid rgba(14,197,116,0.32);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}

/* eyebrow accent */
.section-eyebrow {
  color: var(--cyan);
}
.section-eyebrow::after {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  margin-left: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 8px rgba(27,142,248,0.6);
}

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
}
.service-card {
  padding: 36px 28px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
  text-decoration: none;
  display: block;
  color: inherit;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,197,116,0.07), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  background: rgba(14,197,116,0.04);
  border-color: rgba(14,197,116,0.28);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover .service-card__arrow { transform: translate(4px,-4px); opacity: 1; }
.service-card:hover .service-card__icon  { transform: scale(1.08); background: rgba(14,197,116,0.18); }

.service-card__num {
  position: absolute;
  top: 14px; right: 18px;
  font-family: var(--ff-display);
  font-size: 66px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: rgba(14,197,116,0.05);
  line-height: 1;
}
.service-card__icon {
  width: 52px; height: 52px;
  border-radius: 13px;
  background: rgba(14,197,116,0.09);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  transition: all 0.3s;
  overflow: hidden;
}
.service-card__icon img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.service-card__title {
  font-family: var(--ff-ui);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 9px;
}
.service-card__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}
.service-card__arrow {
  margin-top: 16px;
  color: var(--cyan);
  font-size: 18px;
  opacity: 0;
  transition: all 0.3s;
  display: inline-block;
}

/* ── ISP Badge special ── */
.service-card--isp {
  border-color: rgba(14,197,116,0.22);
  background: linear-gradient(135deg, rgba(14,197,116,0.06), rgba(27,142,248,0.04));
}
.service-card--isp .service-card__icon {
  background: linear-gradient(135deg, rgba(14,197,116,0.2), rgba(27,142,248,0.12));
  border-color: rgba(14,197,116,0.3);
}

/* ── Projects Preview ── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}
.project-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg3);
  border: 1px solid var(--border2);
  transition: transform 0.38s cubic-bezier(0.22,1,0.36,1), box-shadow 0.38s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.project-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 55px rgba(0,0,0,0.5), 0 0 30px rgba(14,197,116,0.08);
}
.project-card:nth-child(1) { grid-column: span 2; }
.project-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--bg2), var(--bg3));
  display: flex; align-items: center; justify-content: center;
  font-size: 52px;
  position: relative;
  overflow: hidden;
}
.project-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.project-card:hover .project-card__img img { transform: scale(1.05); }
.project-card__img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(15,31,22,0.9) 100%);
}
.project-card__body { padding: 20px; }
.project-card__tag {
  font-family: var(--ff-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 5px;
}
.project-card__title {
  font-family: var(--ff-ui);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}
.project-card__desc { font-size: 13px; color: var(--muted); line-height: 1.6; }
.proj-meta-tag {
  font-size: 11px;
  font-family: var(--ff-ui);
  font-weight: 600;
  background: rgba(14,197,116,0.08);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px 10px;
  color: var(--cyan);
}

/* ── Team ── */
.team-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; }
.team-card {
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg3);
  border: 1px solid var(--border2);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  text-align: center;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.4);
  border-color: rgba(14,197,116,0.3);
}
.team-card__avatar {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(14,197,116,0.1), rgba(27,142,248,0.06));
  display: flex; align-items: center; justify-content: center;
}
.team-card__avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.team-card:hover .team-card__avatar img { transform: scale(1.05); }
.team-card__avatar .avatar-placeholder { font-size: 60px; }
.team-card__body { padding: 16px 12px; }
.team-card__name {
  font-family: var(--ff-ui);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.team-card__role { font-size: 11px; color: var(--cyan); font-family: var(--ff-ui); letter-spacing: 0.05em; }
.team-card__socials { display: flex; justify-content: center; gap: 6px; margin-top: 10px; }
.team-card__social {
  width: 26px; height: 26px;
  border-radius: 7px;
  background: rgba(14,197,116,0.06);
  border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-family: var(--ff-ui); font-weight: 700;
  color: var(--muted);
  transition: all 0.2s;
}
.team-card__social:hover { background: rgba(14,197,116,0.16); color: var(--cyan); border-color: var(--cyan); }

/* ── Testimonials ── */
.testi-track { overflow: hidden; }
.testi-inner { display: flex; gap: 18px; transition: transform 0.55s cubic-bezier(0.22,1,0.36,1); }
.testi-card {
  min-width: 370px;
  padding: 32px;
  border-radius: 16px;
  background: var(--bg3);
  border: 1px solid var(--border2);
  flex-shrink: 0;
  transition: border-color 0.3s;
}
.testi-card.active { border-color: rgba(14,197,116,0.4); }
.testi-card__quote { font-size: 44px; color: var(--cyan); line-height: 1; margin-bottom: 10px; opacity: 0.55; font-family: serif; }
.testi-card__stars { color: var(--gold); font-size: 12px; margin-bottom: 12px; }
.testi-card__text { font-size: 14px; color: var(--muted); line-height: 1.75; font-style: italic; margin-bottom: 20px; }
.testi-card__author { display: flex; align-items: center; gap: 11px; }
.testi-card__ava {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(14,197,116,0.12);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.testi-card__name { font-family: var(--ff-ui); font-size: 13px; font-weight: 700; color: var(--white); }
.testi-card__org  { font-size: 12px; color: var(--muted); }
.testi-dots { display: flex; gap: 7px; justify-content: center; margin-top: 24px; }
.testi-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(235,245,238,0.18);
  cursor: pointer;
  transition: all 0.3s;
}
.testi-dot.active {
  background: var(--cyan);
  width: 22px;
  border-radius: 3px;
  box-shadow: 0 0 8px var(--cyan);
}



/* ═════════ WHY CHOOSE TRYANNET ═════════ */

.why-choose-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:24px;
  margin-bottom:80px;
}

.why-card{
  background:linear-gradient(
    145deg,
    rgba(14,197,116,0.05),
    rgba(27,142,248,0.03)
  );
  border:1px solid var(--border);
  border-radius:22px;
  padding:30px;
  transition:var(--transition);
  position:relative;
  overflow:hidden;
}

.why-card:hover{
  transform:translateY(-8px);
  border-color:rgba(14,197,116,0.35);
  box-shadow:0 20px 40px rgba(0,0,0,0.35);
}

.why-card__icon{
  width:60px;
  height:60px;
  border-radius:18px;
  background:rgba(14,197,116,0.12);
  border:1px solid rgba(14,197,116,0.2);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  margin-bottom:20px;
}

.why-card h3{
  font-family:var(--ff-ui);
  font-size:22px;
  margin-bottom:12px;
  color:var(--white);
}

.why-card p{
  color:var(--muted);
  line-height:1.8;
  font-size:15px;
}

/* INDUSTRIES */

.industries-wrap{
  margin-top:40px;
  margin-bottom:90px;
}

.industries-title{
  font-family:var(--ff-display);
  font-size:42px;
  margin-bottom:40px;
  line-height:1.1;
}

.industries-title em{
  color:var(--cyan);
  font-style:normal;
}

.industries-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:20px;
}

.industry-card{
  display:flex;
  gap:18px;
  padding:24px;
  border-radius:20px;
  border:1px solid var(--border);
  background:rgba(255,255,255,0.02);
  transition:var(--transition);
}

.industry-card:hover{
  transform:translateY(-5px);
  border-color:rgba(14,197,116,0.35);
}

.industry-card span{
  font-size:28px;
}

.industry-card h4{
  font-size:18px;
  margin-bottom:8px;
  color:var(--white);
}

.industry-card p{
  color:var(--muted);
  line-height:1.7;
  font-size:14px;
}

/* PROCESS */

.process-wrap{
  margin-top:30px;
}

.process-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:22px;
}

.process-card{
  position:relative;
  border-radius:22px;
  padding:28px;
  border:1px solid var(--border);
  background:linear-gradient(
    145deg,
    rgba(255,255,255,0.02),
    rgba(14,197,116,0.03)
  );
  transition:var(--transition);
}

.process-card:hover{
  transform:translateY(-6px);
  border-color:rgba(14,197,116,0.35);
}

.process-num{
  width:52px;
  height:52px;
  border-radius:14px;
  background:linear-gradient(135deg,var(--cyan),var(--cyan2));
  color:var(--bg);
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:var(--ff-display);
  font-weight:800;
  margin-bottom:18px;
}

.process-card h4{
  font-size:20px;
  margin-bottom:12px;
  color:var(--white);
}

.process-card p{
  color:var(--muted);
  line-height:1.8;
  font-size:15px;
}

@media(max-width:768px){

  .industries-title{
    font-size:32px;
  }

  .why-card,
  .process-card,
  .industry-card{
    padding:22px;
  }

}

/* ══════════════════════════════════════════
   ISP PLANS & PRICING SECTION
══════════════════════════════════════════ */
.pricing-section {
  background: var(--bg);
  padding: 108px 24px;
  position: relative;
  overflow: hidden;
}
.pricing-section::before {
  content: '';
  position: absolute;
  top: -20%; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14,197,116,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-header {
  text-align: center;
  margin-bottom: 64px;
}
.pricing-header .section-eyebrow {
  justify-content: center;
  display: flex;
  align-items: center;
}
.pricing-subtitle {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
  font-weight: 300;
}

/* Why Tryannet strip */
.why-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 60px;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(14,197,116,0.05);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 20px;
  transition: border-color 0.3s, background 0.3s;
}
.why-item:hover {
  border-color: rgba(14,197,116,0.3);
  background: rgba(14,197,116,0.09);
}
.why-item__icon {
  font-size: 28px;
  flex-shrink: 0;
  line-height: 1;
}
.why-item__title {
  font-family: var(--ff-ui);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.why-item__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* Pricing grid */
.pricing-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.plan-card {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
}
.plan-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--orange));
  opacity: 0;
  transition: opacity 0.3s;
}
.plan-card:hover {
  transform: translateY(-6px);
  border-color: rgba(14,197,116,0.32);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(14,197,116,0.07);
}
.plan-card:hover::before { opacity: 1; }

/* Popular plan highlight */
.plan-card--popular {
  border-color: rgba(14,197,116,0.4);
  background: linear-gradient(145deg, rgba(14,197,116,0.09), rgba(27,142,248,0.05));
  box-shadow: 0 8px 40px rgba(14,197,116,0.12);
}
.plan-card--popular::before { opacity: 1; }
.plan-card--popular:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 40px rgba(14,197,116,0.15);
}

.plan-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  color: var(--bg);
  font-family: var(--ff-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.plan-name {
  font-family: var(--ff-ui);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}
.plan-price {
  margin-bottom: 6px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
}
.plan-price__currency {
  font-family: var(--ff-ui);
  font-size: 20px;
  font-weight: 700;
  color: var(--muted);
  line-height: 1.5;
}
.plan-price__amount {
  font-family: var(--ff-display);
  font-size: 46px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.plan-price__period {
  font-size: 13px;
  color: var(--muted);
  padding-bottom: 6px;
}

.plan-speeds {
  display: flex;
  gap: 10px;
  margin: 14px 0 20px;
  padding: 12px;
  background: rgba(14,197,116,0.05);
  border: 1px solid var(--border2);
  border-radius: 10px;
}
.plan-speed {
  flex: 1;
  text-align: center;
}
.plan-speed__val {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  display: block;
}
.plan-speed__label {
  font-size: 10px;
  font-family: var(--ff-ui);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
  display: block;
}
.plan-speed-divider {
  width: 1px;
  background: var(--border2);
  align-self: stretch;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  flex: 1;
}
.plan-features li {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.plan-features li::before {
  content: '✓';
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(14,197,116,0.1);
  border: 1px solid rgba(14,197,116,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: var(--cyan);
  flex-shrink: 0;
}

.plan-btn {
  display: block;
  width: 100%;
  padding: 14px 20px;
  border-radius: 100px;
  font-family: var(--ff-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  text-decoration: none;
}
.plan-btn--primary {
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  color: var(--bg);
  box-shadow: 0 6px 20px rgba(14,197,116,0.3);
}
.plan-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(14,197,116,0.45);
}
.plan-btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(235,245,238,0.22);
}
.plan-btn--ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
}

/* WhatsApp icon */
.plan-btn__wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.plan-btn__wa::before {
  content: '';
  display: inline-block;
  width: 16px; height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23060D09'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Plan btn ghost WhatsApp icon in dark */
.plan-btn--ghost .plan-btn__wa::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230EC574'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1200px) {
  .team-grid { grid-template-columns: repeat(3,1fr); }
  .pricing-grid { grid-template-columns: repeat(2,1fr); }
  .why-strip { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid .project-card:nth-child(1) { grid-column: span 1; }
  .about-preview__grid { grid-template-columns: 1fr; gap: 36px; }
  .stats__grid { grid-template-columns: repeat(2,1fr); }
  .stats__item:nth-child(2) { border-right: none; }
  .stats__item:nth-child(1),
  .stats__item:nth-child(2) { border-bottom: 1px solid var(--border2); }
}
@media (max-width: 768px) {
  .hero__content    { padding: 0 18px; padding-top: 88px; }
  .hero__slide-info { padding: 0 18px 48px; }
  .hero__corner     { display: none; }
  .hero__nav        { right: 18px; bottom: 22px; }
  .services-grid    { grid-template-columns: 1fr; }
  .projects-grid    { grid-template-columns: 1fr; }
  .team-grid        { grid-template-columns: repeat(2,1fr); }
  .testi-card       { min-width: 280px; }
  .pricing-grid     { grid-template-columns: 1fr 1fr; }
  .why-strip        { grid-template-columns: 1fr; gap: 12px; }
  .stats__item      { padding: 34px 14px; }
}
@media (max-width: 640px) {
  .hero__title      { font-size: clamp(40px, 11vw, 70px); }
  .hero__sub        { font-size: 14px; }
  .team-grid        { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .testi-card       { min-width: 80vw; padding: 24px; }
  .pricing-grid     { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero__content    { padding: 0 13px; padding-top: 78px; }
  .hero__slide-info { padding: 0 13px 38px; }
  .hero__title      { font-size: clamp(36px, 12vw, 58px); }
  .hero__nav        { right: 13px; bottom: 14px; }
  .stats__grid      { grid-template-columns: 1fr 1fr; }
  .stats__item      { padding: 26px 8px; }
  .stats__val       { font-size: clamp(32px, 9vw, 50px); }
  .team-grid        { grid-template-columns: repeat(2,1fr); }
  .testi-card       { min-width: 88vw; padding: 20px; }
}
@media (max-width: 360px) {
  .hero__title      { font-size: clamp(30px, 13vw, 48px); }
  .hero__btns       { flex-direction: column; align-items: flex-start; }
  .stats__grid      { grid-template-columns: 1fr; }
  .stats__item      { border-right: none; border-bottom: 1px solid var(--border2); }
  .stats__item:last-child { border-bottom: none; }
  .team-grid        { grid-template-columns: 1fr 1fr; }
  .service-card     { padding: 22px 16px; }
}