/* ===== SINMOR — Company Profile Styles ===== */
:root {
  --orange: #ff6a00;
  --orange-light: #ff8a33;
  --orange-soft: rgba(255, 106, 0, 0.12);
  --black: #0c0c0e;
  --black-2: #121317;
  --black-3: #1a1c22;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f3f3f5;
  --muted: #a3a4ab;
  --radius: 16px;
  --container: 1140px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Sora', 'Inter', sans-serif; line-height: 1.15; letter-spacing: -0.02em; }

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

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.accent { color: var(--orange); }

/* ===== Header / Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 12, 14, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; }

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 20px;
  box-shadow: 0 6px 20px rgba(255, 106, 0, 0.35);
}

.brand-name { font-family: 'Sora', sans-serif; font-size: 22px; letter-spacing: 0.04em; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: var(--muted); font-weight: 500; font-size: 15px; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }

.nav-cta {
  color: #fff !important;
  background: var(--orange);
  padding: 9px 20px;
  border-radius: 999px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--orange-light); transform: translateY(-1px); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.25s; }

/* ===== Hero ===== */
.hero { position: relative; overflow: hidden; padding: 96px 0 104px; }

.hero-inner { position: relative; z-index: 2; max-width: 820px; }

.eyebrow {
  display: inline-block;
  color: var(--orange);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid var(--orange-soft);
  background: var(--orange-soft);
  border-radius: 999px;
}

.hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 800; }

.lead { color: var(--muted); font-size: clamp(1rem, 2vw, 1.2rem); margin-top: 24px; max-width: 660px; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 36px; }

.btn {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 999px;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 10px 30px rgba(255, 106, 0, 0.3); }
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); }
.btn-ghost { border: 1px solid var(--line); color: var(--text); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 56px; }
.stat { display: flex; flex-direction: column; }
.stat strong { font-family: 'Sora', sans-serif; font-size: 20px; color: var(--orange); }
.stat span { color: var(--muted); font-size: 14px; }

.hero-glow {
  position: absolute;
  top: -120px;
  right: -160px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.22), transparent 62%);
  filter: blur(20px);
  z-index: 1;
}

/* ===== Sections ===== */
.section { padding: 88px 0; }
.section-alt { background: var(--black-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-tag {
  color: var(--orange);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; }

.section-head { max-width: 640px; margin-bottom: 52px; }
.section-sub { color: var(--muted); margin-top: 14px; font-size: 1.05rem; }

.grid-2 { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.about-body p { color: var(--muted); margin-bottom: 18px; font-size: 1.08rem; }

/* ===== Cards (Services) ===== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.card {
  background: var(--black-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-6px); border-color: var(--orange); box-shadow: 0 18px 40px rgba(0,0,0,0.45); }

.card-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 22px;
}
.card h3 { font-size: 1.35rem; margin-bottom: 12px; }
.card p { color: var(--muted); }

/* ===== Sectors ===== */
.sectors { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.sector {
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 36px 32px;
  background: var(--black-2);
}
.sector h3 { font-size: 1.5rem; margin-bottom: 12px; color: var(--orange); }
.sector p { color: var(--muted); }

/* ===== Why ===== */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-item { padding: 28px 24px; border-radius: var(--radius); background: var(--black-3); border: 1px solid var(--line); }
.why-item h4 { font-size: 1.15rem; margin-bottom: 10px; color: var(--orange); }
.why-item p { color: var(--muted); font-size: 0.97rem; }

/* ===== Contact ===== */
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.contact-cards { display: grid; gap: 16px; }
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--black-3);
  transition: border-color 0.2s, transform 0.2s;
}
a.contact-card:hover { border-color: var(--orange); transform: translateY(-2px); }
.contact-label { color: var(--muted); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; }
.contact-value { font-family: 'Sora', sans-serif; font-size: 1.15rem; }

/* ===== Footer ===== */
.site-footer { border-top: 1px solid var(--line); padding: 36px 0; background: var(--black-2); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand strong { font-family: 'Sora', sans-serif; font-size: 18px; }
.footer-brand p { color: var(--muted); font-size: 14px; }
.footer-copy { color: var(--muted); font-size: 14px; }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .grid-2, .sectors, .contact-inner { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--black-2);
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 24px;
    transform: translateY(-130%);
    transition: transform 0.3s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav-cta { width: auto; margin-top: 12px; border-bottom: 0 !important; }
  .nav-toggle { display: flex; }
}

@media (max-width: 520px) {
  .why-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
}
