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

:root {
  --white:    #ffffff;
  --bg:       #f5f4f1;
  --bg-dark:  #1a1a18;
  --text:     #1a1a18;
  --text-2:   #6e6e68;
  --text-3:   #b0b0a8;
  --orange:   #ff6b2b;
  --orange-2: #e05520;
  --line:     #e4e4de;
  --heading:  'Montserrat', sans-serif;
  --body:     'Inter', sans-serif;
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
a { text-decoration: none; color: inherit; }

/* ===== SECTION LABEL ===== */
.section-label {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--text-3);
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-family: var(--body);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 13px 26px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
  letter-spacing: 0.01em;
}
.btn-primary:hover { background: var(--orange-2); transform: translateY(-1px); }

.btn-text {
  display: inline-flex;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-2);
  gap: 6px;
  transition: color 0.2s, gap 0.2s;
}
.btn-text:hover { color: var(--text); gap: 10px; }

.btn-white {
  background: #fff;
  color: var(--orange);
}
.btn-white:hover { background: #f5f4f1; }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-outline-white:hover { color: #fff; border-color: #fff; }

.btn-cta {
  display: inline-flex;
  background: var(--orange);
  color: #fff;
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 4px;
  transition: background 0.2s;
}
.btn-cta:hover { background: var(--orange-2); }

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 0.92rem;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.3s, padding 0.3s, border-bottom 0.3s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  padding: 16px 0;
  border-bottom-color: var(--line);
}

.nav-inner { display: flex; align-items: center; gap: 48px; }

.logo {
  display: flex;
  align-items: baseline;
  gap: 5px;
  font-family: var(--heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.logo-mark { color: var(--orange); font-size: 0.8em; line-height: 1; position: relative; top: -1px; }
.logo-sub { font-weight: 400; color: var(--text-2); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-2);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text);
  transition: all 0.2s;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 40px;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
}
.mobile-menu.open { transform: translateX(0); }

.close-menu {
  position: absolute;
  top: 24px; right: 28px;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-2);
  padding: 8px;
}

.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu nav a {
  font-family: var(--heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s;
}
.mobile-menu nav a:hover { color: var(--orange); }

.mobile-cta {
  display: inline-flex;
  margin-top: 32px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--orange);
  width: fit-content;
}

/* ===== HERO ===== */
.hero {
  background: var(--bg);
  padding-top: 88px;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}

.hero-inner {
  padding-top: 56px;
  padding-bottom: 56px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
}

.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-badge {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 0.08em;
}

.hero-phone {
  font-size: 0.85rem;
  color: var(--text-2);
  transition: color 0.2s;
}
.hero-phone:hover { color: var(--orange); }

.hero-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: end;
}

.hero-title {
  font-family: var(--heading);
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
}

.ht-line {
  font-size: clamp(3.2rem, 6.5vw, 6rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  font-weight: 700;
  display: block;
}
.ht-light { color: var(--text); }
.ht-accent { color: var(--orange); }

.hero-desc {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 32px;
  font-weight: 300;
}

.hero-actions { display: flex; align-items: center; gap: 24px; }

.hero-deco {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  flex-shrink: 0;
}

.deco-box {
  background: var(--orange);
  color: #fff;
  padding: 28px 32px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.deco-num {
  font-family: var(--heading);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}
.deco-num sup { font-size: 1.3rem; vertical-align: super; }
.deco-label { font-size: 0.78rem; opacity: 0.85; white-space: nowrap; }

.deco-img {
  width: 90px; height: 90px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  flex-shrink: 0;
}
.deco-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hstat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  padding: 0 32px;
}
.hstat:first-child { padding-left: 0; }

.hstat strong {
  font-family: var(--heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hstat span {
  font-size: 0.8rem;
  color: var(--text-2);
  font-weight: 300;
}

.hstat-divider {
  width: 1px;
  height: 36px;
  background: var(--line);
  flex-shrink: 0;
}

/* ===== ABOUT ===== */
.about { padding: 120px 0; background: var(--white); }

.about-wrap {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}

.about-left { position: sticky; top: 120px; }

.about-title {
  font-family: var(--heading);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 32px;
}
.about-title em { color: var(--orange); font-style: normal; }

.about-right { display: flex; flex-direction: column; gap: 40px; }

.about-visual {
  position: relative;
  border-radius: 12px;
  overflow: visible;
}

.av-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  border: 1px solid var(--line);
}

.av-badge {
  position: absolute;
  bottom: -16px; right: 24px;
  background: var(--orange);
  color: #fff;
  border-radius: 8px;
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 8px 24px rgba(255,107,43,0.3);
}
.av-badge strong { font-family: var(--heading); font-size: 1.1rem; font-weight: 700; }
.av-badge span { font-size: 0.72rem; opacity: 0.85; }

.about-body p {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.75;
  font-weight: 300;
  padding-top: 24px;
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.about-list li {
  font-size: 0.9rem;
  color: var(--text-2);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 8px;
}
.about-list li span {
  color: var(--text);
  font-weight: 500;
  flex-shrink: 0;
}

/* ===== SERVICES ===== */
.services { padding: 120px 0; background: var(--bg); }

.services-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.services-title {
  font-family: var(--heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}

.services-list { display: flex; flex-direction: column; }

.srv-item {
  display: grid;
  grid-template-columns: 56px 1fr auto 48px;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 8px;
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 -16px;
}
.srv-item:hover { background: var(--white); }
.srv-item:hover .srv-arrow { color: var(--orange); transform: translateX(4px); }

.srv-n {
  font-family: var(--heading);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: 0.08em;
}

.srv-content h3 {
  font-family: var(--heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.srv-content p { font-size: 0.85rem; color: var(--text-2); font-weight: 300; }

.srv-icon-right { font-size: 1.5rem; justify-self: end; }

.srv-arrow {
  font-size: 1.2rem;
  color: var(--text-3);
  transition: color 0.2s, transform 0.2s;
  justify-self: end;
}

/* ===== PROJECTS ===== */
.projects { padding: 120px 0; background: var(--white); }

.proj-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
}

.proj-title {
  font-family: var(--heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}

.proj-tabs {
  display: flex;
  gap: 4px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 4px;
}

.ptab {
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-2);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.2s;
  white-space: nowrap;
}
.ptab.active { background: var(--orange); color: #fff; }
.ptab:not(.active):hover { color: var(--text); }

.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 14px;
}

.proj-card {
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.proj-card.hidden { display: none; }

.proj-wide {
  grid-column: span 2;
}
.proj-tall {
  grid-row: span 2;
}

.proj-inner {
  width: 100%;
  height: 100%;
  min-height: 220px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease);
}
.proj-card:hover .proj-inner { transform: scale(1.01); }

.proj-img-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.proj-card:hover .proj-img-bg { transform: scale(1.04); }

.proj-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,15,13,0.85) 0%, rgba(15,15,13,0.1) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 1;
  transition: background 0.3s;
}
.proj-card:hover .proj-overlay {
  background: linear-gradient(to top, rgba(15,15,13,0.92) 0%, rgba(15,15,13,0.3) 60%, transparent 100%);
}

.proj-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.proj-overlay h3 {
  font-family: var(--heading);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.proj-overlay p { font-size: 0.78rem; color: rgba(255,255,255,0.6); }

/* ===== PRICES ===== */
.prices { padding: 120px 0; background: var(--bg); }

.prices-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}

.prices-title {
  font-family: var(--heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}

.prices-note-top {
  font-size: 0.82rem;
  color: var(--text-3);
  max-width: 220px;
  text-align: right;
  line-height: 1.5;
}

.price-tabs {
  display: flex;
  gap: 4px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 4px;
  width: fit-content;
  margin-bottom: 32px;
}

.price-panel { display: none; }
.price-panel.active { display: block; }

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.price-table thead tr {
  background: var(--text);
}

.price-table th {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  padding: 14px 24px;
  text-align: left;
}
.price-table th:last-child { text-align: right; color: var(--orange); }

.price-table tbody tr {
  border-bottom: 1px solid var(--line);
  transition: background 0.15s;
}
.price-table tbody tr:last-child { border-bottom: none; }
.price-table tbody tr:hover { background: var(--bg); }

.price-table td {
  font-size: 0.92rem;
  padding: 18px 24px;
  color: var(--text);
}
.price-table td:nth-child(2) { color: var(--text-3); font-size: 0.82rem; }
.price-table td:last-child {
  text-align: right;
  font-family: var(--heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: -0.01em;
}

/* ===== WHY US ===== */
.why-us { padding: 120px 0; background: var(--white); }

.why-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: start;
}

.why-left { position: sticky; top: 120px; }

.why-title {
  font-family: var(--heading);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 16px;
}
.why-left p { font-size: 0.92rem; color: var(--text-2); line-height: 1.65; font-weight: 300; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.why-item {
  background: var(--white);
  padding: 32px 28px;
  transition: background 0.2s;
}
.why-item:hover { background: var(--bg); }

.why-icon { font-size: 1.6rem; display: block; margin-bottom: 14px; }

.why-item h3 {
  font-family: var(--heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.why-item p { font-size: 0.85rem; color: var(--text-2); line-height: 1.6; font-weight: 300; }

/* ===== TEAM ===== */
.team { padding: 120px 0; background: var(--bg); }

.team > .container > .section-label { margin-bottom: 4px; }

.team-title {
  font-family: var(--heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 48px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.07);
}

.tc-photo {
  aspect-ratio: 1;
  background: var(--bg);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.tc-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s var(--ease);
}
.team-card:hover .tc-photo img { transform: scale(1.05); }

.tc-info { padding: 20px 18px; }
.tc-info h3 {
  font-family: var(--heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.tc-info span {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.tc-info p { font-size: 0.82rem; color: var(--text-2); line-height: 1.55; font-weight: 300; }

/* ===== CTA ===== */
.cta-section {
  background: var(--bg-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-bg-text {
  position: absolute;
  bottom: -60px; right: -20px;
  font-family: var(--heading);
  font-size: 18rem;
  font-weight: 700;
  color: rgba(255,255,255,0.02);
  letter-spacing: -0.05em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.cta-inner { position: relative; z-index: 1; }

.cta-content { max-width: 600px; }

.cta-content h2 {
  font-family: var(--heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.cta-content p { font-size: 1rem; color: rgba(255,255,255,0.5); margin-bottom: 36px; font-weight: 300; }

.cta-btns { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact { padding: 120px 0; background: var(--white); }

.contact-wrap {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}

.contact-left { position: sticky; top: 120px; }

.contact-title {
  font-family: var(--heading);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 12px;
}

.contact-left > p {
  font-size: 0.92rem;
  color: var(--text-2);
  margin-bottom: 36px;
  font-weight: 300;
}

.contact-info { display: flex; flex-direction: column; }

.ci-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
}
.ci-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  padding-top: 2px;
}
.ci-row > span:last-child { color: var(--text-2); line-height: 1.6; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cf-group { display: flex; flex-direction: column; gap: 8px; }

.cf-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
}

.cf-group input,
.cf-group select,
.cf-group textarea {
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
  border-color: var(--orange);
  background: var(--white);
}
.cf-group input::placeholder,
.cf-group textarea::placeholder { color: var(--text-3); }
.cf-group select { appearance: none; cursor: pointer; }
.cf-group textarea { resize: vertical; min-height: 110px; }

/* ===== FOOTER ===== */
.footer { background: var(--text); padding: 72px 0 0; }

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 56px;
  padding-bottom: 56px;
}

.logo-footer { color: #fff; }
.logo-footer .logo-mark { color: var(--orange); }
.logo-footer .logo-sub { color: rgba(255,255,255,0.35); }

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.65;
  max-width: 240px;
  margin: 14px 0 24px;
  font-weight: 300;
}

.footer-socials { display: flex; gap: 8px; }
.footer-socials a {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 7px 12px;
  border-radius: 4px;
  transition: color 0.2s, border-color 0.2s;
}
.footer-socials a:hover { color: var(--orange); border-color: var(--orange); }

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
  font-weight: 300;
}
.footer-col ul a:hover { color: rgba(255,255,255,0.85); }

.footer-col p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
  font-weight: 300;
}
.footer-col a { transition: color 0.2s; }
.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
}
.footer-bottom span { font-size: 0.78rem; color: rgba(255,255,255,0.2); }

/* ===== MODAL ===== */
.modal {
  position: fixed; inset: 0;
  background: rgba(26,26,24,0.6);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.modal.show { opacity: 1; pointer-events: all; }

.modal-box {
  background: var(--white);
  border-radius: 12px;
  padding: 44px 36px;
  max-width: 380px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: translateY(12px) scale(0.97);
  transition: transform 0.25s var(--ease);
}
.modal.show .modal-box { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  border: none;
  color: var(--text-3);
  cursor: pointer;
  font-size: 1rem;
  padding: 6px;
}
.modal-close:hover { color: var(--text); }

.modal-icon {
  width: 52px; height: 52px;
  background: #e8faf0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #16a34a;
  margin: 0 auto 16px;
}

.modal-box h3 {
  font-family: var(--heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.modal-box p { font-size: 0.88rem; color: var(--text-2); margin-bottom: 24px; font-weight: 300; }

/* ===== SCROLL ANIMATION ===== */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-wrap,
  .why-inner,
  .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
  .about-left,
  .why-left,
  .contact-left { position: static; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-main { grid-template-columns: 1fr; }
  .hero-deco { flex-direction: row; align-items: center; }
}

@media (max-width: 768px) {
  .nav-links, .btn-cta { display: none; }
  .burger { display: flex; }

  .container { padding: 0 20px; }

  .hero-main { gap: 32px; }
  .hero-stats { flex-wrap: wrap; gap: 0; }
  .hstat { min-width: 50%; padding: 16px 16px 16px 0; }

  .services-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .srv-item { grid-template-columns: 40px 1fr 40px; }
  .srv-icon-right { display: none; }

  .proj-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .proj-grid { grid-template-columns: 1fr 1fr; }
  .proj-wide { grid-column: auto; }
  .proj-tall { grid-row: auto; }

  .prices-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .prices-note-top { text-align: left; max-width: none; }

  .price-table th:nth-child(2),
  .price-table td:nth-child(2) { display: none; }

  .why-grid { grid-template-columns: 1fr; }

  .cf-row { grid-template-columns: 1fr; }

  .cta-btns { flex-direction: column; align-items: flex-start; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .ht-line { font-size: 3rem; }
  .hstat { min-width: 100%; }
  .hstat-divider { display: none; }
  .proj-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
