:root {
  --bg: #ffffff;
  --panel: #ffffff;
  --text: #1a1a1a;
  --muted: #555555;

  --brand: #ff7a18;     /* ORANGE */
  --brand-hover: #e6690f;

  --border: #e5e5e5;
  --radius: 14px;
}


*{box-sizing:border-box}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
}

a{color: var(--brand);text-decoration:none}
.container{width:min(1100px,92vw);margin:auto}

/*.site-header{
  position:sticky;top:0;
  backdrop-filter:blur(14px);
  background:rgba(11,18,32,.6);
  border-bottom:1px solid rgba(255,255,255,.08);
}*/
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 0;
}
.brand{display:flex;gap:12px;align-items:center}
.brand-logo{width:44px;height:44px;border-radius:14px}
.brand-name{font-weight:800}
.brand-tag{font-size:12px;color:var(--muted)}

.nav{display:flex;gap:12px}
.nav-link{padding:10px 12px;border-radius:12px;color:var(--muted)}
.nav-link.active{background:rgba(255,255,255,.08);color:#fff}

.menu-btn{display:none;background:none;border:1px solid rgba(255,255,255,.2);border-radius:12px;padding:8px}
.menu-btn span{display:block;width:22px;height:2px;background:#fff;margin:4px 0}

.mobile-nav{padding:10px}
.mobile-nav a{display:block;padding:12px;border-radius:12px;color:var(--muted)}

.site-main{padding:24px 0}


.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  ox-shadow: 0 6px 18px rgba(0,0,0,0.06);
}


.hero h1{font-size:clamp(28px,4vw,44px)}
.hero p{color:var(--muted);line-height:1.6}

.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 10px;
  border: none;
  background: #f2f2f2;
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
}

.btn.primary {
  background: var(--brand);
  color: #ffffff;
}

.btn.primary:hover {
  background: var(--brand-hover);
}


.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.site-footer {
  background: #fafafa;
  border-top: 1px solid var(--border);
  padding: 18px 0;
}



/* ================= SECTIONS ================= */

.section {
  margin-top: 32px;
  padding: 28px;
}

.section h1,
.section h2 {
  margin: 0 0 12px;
  font-size: clamp(22px, 3vw, 32px);
}

.section p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.7;
}

/* ================= ABOUT GRID ================= */

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.about-grid h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.about-grid p {
  margin: 0;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
}

/* ================= CONTACT FORM ================= */

.contact-form {
  display: grid;
  gap: 14px;
  max-width: 520px;
  margin-top: 16px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(124,92,255,.3);
  background: rgba(124,92,255,.06);
  color: var(--text);
  font-family: inherit;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(124,92,255,.3);
}

.form-note {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(232,238,252,.6);
}

/* ================= MOBILE RESPONSIVE ================= */

@media (max-width: 820px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 22px;
  }

  .contact-form {
    max-width: 100%;
  }
}


.footer-inner{display:flex;justify-content:space-between;flex-wrap:wrap}
.footer-right{display:flex;gap:16px}

@media(max-width:760px){
  .nav{display:none}
  .menu-btn{display:block}
}