/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #0d3361 60%, #193f72 100%);
  color: #fff; padding: 110px 0 90px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,92,40,.18) 0%, transparent 65%);
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,92,40,.15); border: 1px solid rgba(255,92,40,.3);
  color: var(--accent2); font-size: 13px; font-weight: 600;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(34px, 5vw, 58px); line-height: 1.1; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero p { font-size: 17px; color: rgba(255,255,255,.75); line-height: 1.8; margin-bottom: 36px; max-width: 480px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 32px; margin-top: 48px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat strong { display: block; font-family: 'Syne', sans-serif; font-size: 32px; font-weight: 800; color: #fff; }
.hero-stat span { font-size: 13px; color: rgba(255,255,255,.55); }
.hero-visual {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; position: relative;
}
.hero-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px); border-radius: 16px; padding: 24px;
  transition: var(--transition);
}
.hero-card:first-child { grid-column: 1/-1; }
.hero-card:hover { background: rgba(255,255,255,.11); transform: translateY(-4px); }
.hero-card .icon { width: 48px; height: 48px; border-radius: 12px; background: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 20px; color: #fff; margin-bottom: 14px; }
.hero-card h3 { font-size: 17px; color: #fff; margin-bottom: 8px; }
.hero-card p { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.6; }
.hero-card .metric { font-size: 28px; font-family: 'Syne', sans-serif; font-weight: 800; color: var(--accent2); margin-top: 10px; }

/* ── CLIENTS TICKER ── */
.clients-bar { background: var(--light); padding: 22px 0; border-bottom: 1px solid var(--border); overflow: hidden; }
.clients-track { display: flex; gap: 56px; align-items: center; animation: ticker 24s linear infinite; white-space: nowrap; }
.clients-track span { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 14px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; flex-shrink: 0; }
.clients-track .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ── SERVICES STRIP ── */
.services-strip { padding: 90px 0; }
.services-strip-head { text-align: center; margin-bottom: 56px; }
.services-strip-head .section-sub { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 18px;
  padding: 36px 28px; transition: var(--transition); position: relative; overflow: hidden;
}
.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent2)); transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.svc-card:hover { box-shadow: 0 20px 60px rgba(10,37,64,.12); transform: translateY(-6px); border-color: transparent; }
.svc-card:hover::after { transform: scaleX(1); }
.svc-icon { width: 56px; height: 56px; border-radius: 14px; background: rgba(255,92,40,.1); display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--accent); margin-bottom: 20px; }
.svc-card h3 { font-size: 19px; color: var(--primary); margin-bottom: 10px; }
.svc-card p { font-size: 14px; color: var(--muted); line-height: 1.75; }
.svc-card .svc-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-size: 14px; font-weight: 600; color: var(--accent); }

/* ── WHY US ── */
.why-us { background: var(--primary); color: #fff; padding: 90px 0; }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-content .section-title { color: #fff; }
.why-content .section-sub { color: rgba(255,255,255,.65); }
.why-list { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-item .wi-icon { width: 46px; height: 46px; border-radius: 12px; background: rgba(255,92,40,.2); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--accent); }
.why-item h4 { font-size: 16px; color: #fff; margin-bottom: 4px; }
.why-item p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.6; }
.why-numbers { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.why-num-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: 18px; padding: 32px; text-align: center; }
.why-num-card strong { display: block; font-family: 'Syne', sans-serif; font-size: 46px; font-weight: 800; color: var(--accent); }
.why-num-card span { font-size: 14px; color: rgba(255,255,255,.6); }

/* ── PORTFOLIO ── */
.portfolio { padding: 90px 0; background: var(--light); }
.portfolio-head { text-align: center; margin-bottom: 52px; }
.portfolio-head .section-sub { margin: 0 auto; }
.portfolio-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.port-card { border-radius: 18px; overflow: hidden; background: var(--white); box-shadow: 0 2px 12px rgba(0,0,0,.06); transition: var(--transition); }
.port-card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(10,37,64,.15); }
.port-img { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.port-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.port-card:hover .port-img img { transform: scale(1.06); }
.port-overlay {
  position: absolute; inset: 0; background: rgba(10,37,64,.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.port-card:hover .port-overlay { opacity: 1; }
.port-overlay a { color: #fff; border: 2px solid #fff; border-radius: 50px; padding: 10px 24px; font-size: 14px; font-weight: 600; font-family: 'Syne', sans-serif; }
.port-overlay a:hover { background: var(--accent); border-color: var(--accent); }
.port-info { padding: 18px 20px; }
.port-info .port-cat { font-size: 11px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 6px; }
.port-info h4 { font-size: 16px; color: var(--primary); margin-bottom: 4px; }
.port-info p { font-size: 13px; color: var(--muted); }

/* ── TESTIMONIALS ── */
.testimonials { padding: 90px 0; }
.testi-head { text-align: center; margin-bottom: 52px; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: 32px; transition: var(--transition); }
.testi-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.testi-stars { color: #f5a623; font-size: 14px; margin-bottom: 16px; }
.testi-card p { font-size: 15px; color: var(--text); line-height: 1.8; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--accent)); display: flex; align-items: center; justify-content: center; font-family: 'Syne', sans-serif; font-weight: 700; color: #fff; font-size: 16px; flex-shrink: 0; }
.testi-author-info strong { display: block; font-size: 14px; color: var(--primary); }
.testi-author-info span { font-size: 12px; color: var(--muted); }

/* ── CTA BAND ── */
.cta-band { background: linear-gradient(135deg, var(--accent) 0%, #e04a18 100%); color: #fff; padding: 80px 0; text-align: center; }
.cta-band h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; }
.cta-band p { font-size: 18px; opacity: .85; margin-bottom: 36px; }
.cta-band .btn-white { background: #fff; color: var(--accent); font-weight: 700; }
.cta-band .btn-white:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }

@media (max-width: 1024px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}
@media (max-width: 640px) {
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-numbers { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
}
@media (max-width: 420px) {
  .portfolio-grid { grid-template-columns: 1fr; }
}
