*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #181c09;
  --bg2:       #1e2310;
  --bg3:       #252b12;
  --card:      #1c2109;
  --card2:     #222810;
  --gold:      #c9a420;
  --gold2:     #d4b030;
  --orange:    #d07a1a;
  --orange2:   #e08c28;
  --text:      #f0eedf;
  --muted:     #9a9e80;
  --border:    #2e3418;
  --radius:    14px;
}

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: #080b04;
}

.hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 675px 1fr;
  align-items: center;
  padding: 48px 50px 0;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 90% at 0% 80%, rgba(60,80,10,.55) 0%, transparent 65%),
    radial-gradient(ellipse 55% 90% at 100% 50%, rgba(55,72,8,.6) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-left {
  z-index: 2;
}

.hero-left h1 {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1.05;
  text-transform: uppercase;
}

.hero-left .subtitle {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin: 10px 0 12px;
  line-height: 1.6;
}

.hero-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 22px;
}

.hero-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: .03em;
  transition: color .2s;
}

.hero-contact-item:hover {
  color: var(--gold);
}

.hero-contact-item svg {
  flex-shrink: 0;
  opacity: .7;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: border-color .2s, color .2s, background .2s;
}

.social-icon:hover { border-color: var(--orange); color: var(--orange); }

.hero-center {
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
}

.orange-circle {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #e89020 0%, #b85c00 55%, #6b3000 100%);
  z-index: 1;
}

.photo-ring {
  position: relative;
  z-index: 2;
  width: 675px;
  height: 675px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.photo-ring img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.hero-right {
  z-index: 2;
  text-align: right;
}

.hero-right h2 {
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.hero-right .sub2 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin: 6px 0 22px;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.4;
}

.btn-hire {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 12px 32px;
  border-radius: 4px;
  transition: background .2s, transform .2s;
}

.btn-hire:hover { background: var(--orange2); transform: translateY(-2px); }

.hero-star {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  color: var(--gold);
  z-index: 3;
  animation: spin 8s linear infinite;
}

@keyframes spin { to { transform: translateY(-50%) rotate(360deg); } }

/* ── STATS STRIP ──────────────────────────────────────── */
.stats-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.stats-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-card {
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border-right: 1px solid var(--border);
  transition: background .2s;
}

.stat-card:last-child { border-right: none; }
.stat-card:hover { background: var(--bg3); }

.stat-icon {
  font-size: 1.8rem;
  color: var(--gold);
}

.stat-icon svg { width: 32px; height: 32px; fill: none; stroke: var(--gold); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.stat-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-align: center;
  color: var(--text);
}

.stat-count {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
}

/* ── SECTIONS ─────────────────────────────────────────── */
.section {
  padding: 80px 0;
}

.section-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
}

.section-heading {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -.01em;
  margin-bottom: 28px;
  position: relative;
  display: inline-block;
}

.section-heading::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--gold);
  margin-top: 8px;
}

.section-heading.center {
  display: block;
  text-align: center;
}

.section-heading.center::after {
  margin: 8px auto 0;
}

/* ── ABOUT ────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
}

.about-text p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 16px;
  max-width: 580px;
}

.about-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.sign-img {
  width: 420px;
  height: 420px;
  object-fit: contain;
}

/* ── EXPERTISE ────────────────────────────────────────── */
.expertise-bg {
  background: var(--bg2);
}

.expertise-sub {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 48px;
  max-width: 100%;
  text-align: center;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 100%;
}

.exp-card {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: transform .2s, box-shadow .2s;
}

.exp-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,.4); }

.exp-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.exp-icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.exp-icon svg { width: 28px; height: 28px; fill: none; stroke: var(--gold); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.exp-title {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
}

.exp-desc {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.55;
}

/* circular progress */
.circle-wrap {
  position: relative;
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}

.circle-wrap svg {
  transform: rotate(-90deg);
  width: 70px;
  height: 70px;
}

.circle-bg { fill: none; stroke: var(--border); stroke-width: 5; }
.circle-fg { fill: none; stroke: var(--gold); stroke-width: 5; stroke-linecap: round; transition: stroke-dashoffset .8s ease; }

.circle-pct {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
}

/* ── EXPERIENCE ───────────────────────────────────────── */
.exp-section-sub {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 48px;
  max-width: 100%;
  text-align: center;
}

.experience-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 100%;
}

.exp-item {
  display: grid;
  grid-template-columns: 183px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.exp-item:last-child { border-bottom: none; }

.company-logo {
  width: 183px;
  height: 183px;
  border-radius: 50%;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  padding: 6px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: .04em;
  overflow: hidden;
}

.company-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.exp-info { display: flex; flex-direction: column; gap: 4px; }

.exp-job {
  font-size: 1.05rem;
  font-weight: 700;
}

.exp-company {
  font-size: 0.82rem;
  color: var(--muted);
}

.exp-location {
  font-size: 0.78rem;
  color: var(--muted);
}

.exp-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }

.exp-date {
  font-size: 0.78rem;
  color: var(--muted);
  white-space: nowrap;
}

.btn-visit {
  display: inline-block;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 6px;
  transition: background .2s, border-color .2s;
  white-space: nowrap;
}

.btn-visit:hover { background: var(--gold); border-color: var(--gold); color: #000; }

/* ── PORTFOLIO ────────────────────────────────────────── */
.portfolio-bg {
  background: var(--bg2);
}

.portfolio-sub {
  color: var(--muted);
  font-size: 0.88rem;
  max-width: 100%;
  line-height: 1.7;
  text-align: center;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  max-width: 1000px;
}

.portfolio-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--border);
  font-size: 2rem;
  overflow: hidden;
  transition: transform .2s, border-color .2s;
  cursor: pointer;
}

.portfolio-item:hover { transform: translateY(-4px); border-color: var(--gold); }

/* ── FOOTER ───────────────────────────────────────────── */
footer {
  background: #0c0f05;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold);
}

footer p { font-size: 0.8rem; color: var(--muted); }

.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--muted); font-size: 0.82rem; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }

/* ── SCROLL INDICATOR ─────────────────────────────────── */
.scroll-dot {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .6;
  z-index: 999;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */

/* ── 1200px ── */
@media (max-width: 1200px) {
  .hero-inner { grid-template-columns: 1fr 520px 1fr; padding: 40px 36px 0; }
  .photo-ring { width: 520px; height: 520px; }
  .section-inner { padding: 0 36px; }
  .footer-inner  { padding: 36px; }
}

/* ── 992px — tablet ── */
@media (max-width: 992px) {
  /* Hero — stack vertically */
  .hero { height: auto; min-height: 100vh; padding-bottom: 40px; }
  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding: 60px 28px 40px;
    text-align: center;
    gap: 24px;
  }
  .hero-left  { order: 2; }
  .hero-center { order: 1; height: auto; }
  .hero-right  { order: 3; text-align: center; }
  .photo-ring  { width: 340px; height: 340px; margin: 0 auto; }
  .hero-left h1 { font-size: 2.2rem; }
  .hero-right h2 { font-size: 1.4rem; }
  .hero-star { display: none; }
  .socials { justify-content: center; }
  .hero-contact { align-items: center; }

  /* Stats */
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-card:nth-child(2) { border-right: none; }
  .stat-card:nth-child(3) { border-right: 1px solid var(--border); }
  .stat-card:nth-child(4) { border-right: none; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .sign-img    { width: 260px; height: 260px; }
  .about-logo  { align-items: center; }

  /* Expertise */
  .expertise-grid { grid-template-columns: 1fr; }

  /* Experience */
  .exp-item { grid-template-columns: 80px 1fr; gap: 16px; }
  .company-logo { width: 80px; height: 80px; }
  .exp-meta { flex-direction: row; align-items: center; grid-column: 1/-1; padding-left: 96px; }

  /* Section spacing */
  .section       { padding: 60px 0; }
  .section-inner { padding: 0 28px; }
  .section-heading { font-size: 1.7rem; }

  /* Footer */
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; padding: 32px 28px; }
  .footer-links { justify-content: center; }
}

/* ── 768px — mobile ── */
@media (max-width: 768px) {
  .hero-inner { padding: 52px 20px 32px; }
  .photo-ring { width: 280px; height: 280px; }
  .hero-left h1  { font-size: 1.9rem; }
  .hero-right h2 { font-size: 1.2rem; }
  .hero-right .sub2 { font-size: .82rem; }

  .section       { padding: 48px 0; }
  .section-inner { padding: 0 20px; }
  .section-heading { font-size: 1.5rem; }

  .stat-card { padding: 24px 16px; }

  .exp-item { grid-template-columns: 1fr; }
  .company-logo { width: 64px; height: 64px; }
  .exp-meta { padding-left: 0; flex-direction: row; flex-wrap: wrap; }

  .footer-inner { padding: 28px 20px; }
}

/* ── 480px — small phone ── */
@media (max-width: 480px) {
  .hero-inner { padding: 48px 16px 28px; }
  .photo-ring { width: 240px; height: 240px; }
  .hero-left h1 { font-size: 1.6rem; }
  .hero-right h2 { font-size: 1.05rem; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-card { padding: 20px 10px; }
  .stat-icon svg { width: 24px; height: 24px; }

  .section       { padding: 40px 0; }
  .section-inner { padding: 0 14px; }
  .section-heading { font-size: 1.3rem; }

  .exp-card { flex-direction: column; align-items: flex-start; gap: 16px; padding: 20px; }

  .btn-hire { padding: 10px 24px; font-size: .78rem; }
  .footer-inner { padding: 24px 14px; }
  .footer-links { gap: 16px; flex-wrap: wrap; justify-content: center; }
}
