/* ==========================
   Geopoint Techcz AI – light
   ========================== */

:root {
  --gp-bg-page: #f5f1ea;
  --gp-bg-body: #fdfaf6;

  --gp-surface: #ffffff;
  --gp-surface-soft: #f8f2eb;
  --gp-surface-contrast: #f2e5d6;

  --gp-border: #ddcdbb;
  --gp-border-soft: #e4d6c6;
  --gp-border-strong: #c8b29b;

  --gp-accent-main: #e4572e;
  --gp-accent-main-soft: rgba(228, 87, 46, 0.12);
  --gp-accent-alt: #a87632;
  --gp-accent-olive: #7c9346;

  --gp-text-main: #2d2219;
  --gp-text-muted: #7b6b5a;
  --gp-text-soft: #9a8772;

  --gp-radius-xl: 32px;
  --gp-radius-lg: 24px;
  --gp-radius-md: 18px;
  --gp-radius-pill: 999px;

  --gp-shadow-soft: 0 26px 60px rgba(90, 70, 50, 0.26);
  --gp-shadow-card: 0 22px 50px rgba(80, 58, 40, 0.3);
}

/* ===== BASE ===== */

html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--gp-text-main);
  padding-top: 86px;
  background:
    radial-gradient(circle at 0% 0%, #f4e3d0 0, transparent 55%),
    radial-gradient(circle at 100% 100%, #f1ddc9 0, transparent 50%),
    var(--gp-bg-page);
}

/* чтобы секции не налезали друг на друга */
main > section {
  position: relative;
  z-index: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -0.03em;
  color: var(--gp-text-main);
}

h1 {
  font-size: clamp(2.3rem, 3vw, 3rem);
  line-height: 1.14;
}

h2 {
  font-size: clamp(2rem, 2.6vw, 2.5rem);
  line-height: 1.18;
}

h3 {
  font-size: 1.35rem;
}

h4 {
  font-size: 1.15rem;
}

p {
  margin-bottom: 1rem;
}

/* links */

a {
  color: var(--gp-accent-main);
  text-decoration: none;
}

a:hover {
  color: #f9734c;
}

small,
.small {
  font-size: 0.82em;
}

/* ===== NAVBAR ===== */

.gp-navbar {
  background: rgba(253, 250, 246, 0.98) !important;
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 40px rgba(168, 130, 90, 0.35);
  border-bottom: 1px solid rgba(214, 198, 178, 0.9);
}

.navbar-brand {
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--gp-text-main) !important;
}

.gp-logo {
  width: 36px;
  height: 36px;
  border-radius: var(--gp-radius-pill);
  background:
    conic-gradient(from 140deg, #f9734c, #f4b41a, #7c9346, #f9734c);
  color: #301f13;
  font-size: 1.05rem;
  box-shadow: 0 10px 26px rgba(141, 104, 70, 0.6);
}

.navbar-toggler {
  border-color: rgba(137, 116, 96, 0.8);
}

.navbar-toggler-icon {
  filter: invert(30%);
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gp-text-soft) !important;
  position: relative;
  padding-inline: 1rem;
  transition: color 0.18s ease-out;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.2rem;
  height: 2px;
  border-radius: var(--gp-radius-pill);
  background: linear-gradient(90deg, #f9734c, #f4b41a);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease-out;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
  color: var(--gp-text-main) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* ===== BUTTONS ===== */

.btn {
  font-size: 0.98rem;
  border-radius: var(--gp-radius-pill);
  font-weight: 600;
  padding-inline: 1.6rem;
  padding-block: 0.7rem;
}

.btn-primary {
  --bs-btn-bg: var(--gp-accent-main);
  --bs-btn-border-color: var(--gp-accent-main);
  --bs-btn-hover-bg: #f9734c;
  --bs-btn-hover-border-color: #f9734c;
  --bs-btn-active-bg: #c2410c;
  --bs-btn-active-border-color: #c2410c;
  --bs-btn-focus-shadow-rgb: 228, 87, 46;
  box-shadow: 0 18px 40px rgba(228, 87, 46, 0.4);
}

.btn-primary:hover {
  box-shadow: 0 14px 32px rgba(228, 87, 46, 0.36);
}

.btn-outline-primary {
  --bs-btn-color: var(--gp-text-main);
  --bs-btn-border-color: rgba(173, 146, 114, 0.9);
  --bs-btn-hover-bg: rgba(247, 236, 223, 0.96);
  --bs-btn-hover-color: var(--gp-text-main);
  --bs-btn-focus-shadow-rgb: 173, 146, 114;
}

/* ===== SECTIONS ===== */

.section-shell {
  padding: 4.2rem 0;
}

.section-title {
  margin-bottom: 0.7rem;
}

.section-subtitle {
  font-size: 0.98rem;
  color: var(--gp-text-soft);
  max-width: 42rem;
}

/* backgrounds */

.section-light {
  background:
    radial-gradient(circle at 0 100%, rgba(244, 180, 26, 0.12), transparent 60%),
    radial-gradient(circle at 100% 0, rgba(228, 87, 46, 0.12), transparent 60%),
    var(--gp-bg-body);
}

.section-contrast {
  background:
    radial-gradient(circle at 0 0, rgba(124, 147, 70, 0.18), transparent 60%),
    var(--gp-surface-contrast);
}

.section-contact {
  background:
    radial-gradient(circle at 100% 0, rgba(244, 180, 26, 0.16), transparent 60%),
    linear-gradient(145deg, #fdfaf6, #f3e7d8);
}

/* label */

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.86rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--gp-radius-pill);
  border: 1px solid rgba(214, 191, 163, 0.9);
  background: rgba(255, 252, 247, 0.96);
  color: var(--gp-text-soft);
  margin-bottom: 1rem;
}

.section-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gp-accent-main);
}

/* generic list */

.gp-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.1rem;
}

.gp-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.96rem;
  color: var(--gp-text-main);
  margin-bottom: 0.5rem;
}

.gp-list i {
  margin-top: 0.16rem;
  color: var(--gp-accent-olive);
}

.small-list li {
  font-size: 0.9rem;
}

.section-note {
  font-size: 0.9rem;
  color: var(--gp-text-soft);
  display: inline-flex;
  align-items: center;
  background: #fff7f0;
  border-radius: var(--gp-radius-pill);
  padding: 0.55rem 1.05rem;
  border: 1px dashed rgba(200, 171, 139, 0.9);
}

/* ===== HERO ===== */

.hero-shell {
  padding: 4.4rem 0 3.4rem;
}

.hero-panel {
  border-radius: var(--gp-radius-xl);
  background: linear-gradient(135deg, rgba(255, 252, 247, 0.98), rgba(249, 238, 226, 0.98));
  border: 1px solid var(--gp-border-soft);
  box-shadow: var(--gp-shadow-card);
  padding: 2.3rem 2.3rem 2rem;
  margin-bottom: 1.6rem;
}

.hero-main {
  padding-right: 0.5rem;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.86rem;
  padding: 0.4rem 1rem;
  border-radius: var(--gp-radius-pill);
  border: 1px solid rgba(214, 191, 163, 0.9);
  background: #fffdf9;
  color: var(--gp-text-soft);
  margin-bottom: 1.1rem;
}

.hero-label-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gp-accent-olive);
  box-shadow: 0 0 0 6px rgba(124, 147, 70, 0.35);
}

.hero-title {
  margin-bottom: 0.7rem;
}

.hero-lead {
  font-size: 1rem;
  color: var(--gp-text-soft);
  max-width: 40rem;
  margin-bottom: 1.1rem;
}

.hero-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.1rem;
}

.hero-list li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.96rem;
  color: var(--gp-text-main);
  margin-bottom: 0.45rem;
}

.hero-list i {
  margin-top: 0.2rem;
  color: var(--gp-accent-olive);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.hero-tag {
  font-size: 0.88rem;
  padding: 0.34rem 0.95rem;
  border-radius: var(--gp-radius-pill);
  background: #f9f1e6;
  border: 1px solid rgba(214, 191, 163, 0.9);
  color: var(--gp-text-main);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-tag i {
  color: var(--gp-accent-olive);
}

/* right column hero */

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.hero-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
  gap: 0.8rem;
  margin-bottom: 0.3rem;
}

.hero-image {
  background: #ffffff;
  border-radius: var(--gp-radius-md);
  border: 1px solid var(--gp-border-soft);
  padding: 0.5rem;
  box-shadow: 0 14px 30px rgba(181, 149, 108, 0.25);
}

.hero-image img {
  width: 100%;
  display: block;
  border-radius: 14px;
}

.hero-image figcaption {
  font-size: 0.82rem;
  color: var(--gp-text-soft);
  margin-top: 0.35rem;
}

.hero-image-main {
  align-self: stretch;
}

.hero-image-column {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* side card */

.hero-side-card {
  border-radius: var(--gp-radius-lg);
  background: #fffdf8;
  border: 1px solid var(--gp-border-soft);
  padding: 1.1rem 1.3rem 1.05rem;
  box-shadow: var(--gp-shadow-soft);
}

.side-card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.side-card-label {
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gp-text-soft);
}

.side-card-tag {
  font-size: 0.8rem;
  padding: 0.18rem 0.7rem;
  border-radius: var(--gp-radius-pill);
  background: rgba(244, 180, 26, 0.16);
  color: #6b4b16;
}

.conversation-snippet {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
}

.bubble {
  border-radius: 16px;
  padding: 0.55rem 0.8rem;
  font-size: 0.94rem;
}

.bubble-user {
  background: #f9f2e9;
  border: 1px solid rgba(228, 87, 46, 0.55);
}

.bubble-bot {
  background: #ffffff;
  border: 1px solid rgba(212, 191, 164, 0.95);
}

.side-card-metrics {
  border-top: 1px dashed rgba(214, 191, 163, 0.9);
  padding-top: 0.6rem;
}

.metric-item {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr) auto;
  gap: 0.55rem;
  align-items: center;
  margin-bottom: 0.45rem;
}

.metric-label {
  font-size: 0.86rem;
  color: var(--gp-text-soft);
}

.metric-bar {
  background: #f3e3d2;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(214, 191, 163, 0.9);
  height: 0.6rem;
}

.metric-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f9734c, #f4b41a);
}

.metric-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #9a6a21;
}

.metric-note {
  margin-top: 0.3rem;
  color: var(--gp-text-soft);
}

/* ===== SITUATIONS ===== */

.situation-grid {
  border-radius: var(--gp-radius-lg);
  background: #fffbf6;
  border: 1px solid var(--gp-border-soft);
  box-shadow: var(--gp-shadow-soft);
  padding: 1.6rem 1.7rem 1.5rem;
  margin-bottom: 1.5rem;
}

.situation-card + .situation-card {
  border-top: 1px dashed var(--gp-border);
  margin-top: 1.2rem;
  padding-top: 1.2rem;
}

.situation-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.4rem;
}

.situation-tag {
  font-size: 0.82rem;
  padding: 0.2rem 0.7rem;
  border-radius: var(--gp-radius-pill);
  background: rgba(228, 87, 46, 0.1);
  color: #a63a18;
}

.situation-label {
  font-size: 0.82rem;
  color: var(--gp-text-soft);
}

.situation-card h3 {
  font-size: 1.12rem;
  margin-bottom: 0.3rem;
}

.situation-card p {
  font-size: 0.96rem;
  color: var(--gp-text-main);
}

.situation-list {
  padding-left: 1.1rem;
  margin-bottom: 0;
  font-size: 0.94rem;
}

/* path row */

.path-row {
  border-radius: var(--gp-radius-pill);
  background: #fffdf9;
  border: 1px dashed rgba(214, 191, 163, 0.9);
  padding: 0.8rem 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.path-item {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.path-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 0.22rem 0.7rem;
  border-radius: var(--gp-radius-pill);
  background: rgba(124, 147, 70, 0.16);
  color: #4c5f20;
  margin-bottom: 0.1rem;
}

.path-arrow {
  color: var(--gp-text-soft);
}

/* ===== APPROACH / TIMELINE ===== */

.timeline {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: 1.7rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0.6rem;
  top: 0.2rem;
  bottom: 0.4rem;
  width: 2px;
  background: linear-gradient(to bottom, rgba(244, 180, 26, 0.85), transparent);
}

.timeline-item {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 1.1rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -0.25rem;
  top: 0.15rem;
  width: 26px;
  height: 26px;
  border-radius: var(--gp-radius-pill);
  background: #fffaf4;
  border: 1px solid rgba(244, 180, 26, 0.9);
  color: #8a5a12;
  font-size: 0.86rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.timeline-body p {
  font-size: 0.96rem;
  color: var(--gp-text-main);
}

.approach-panel {
  border-radius: var(--gp-radius-lg);
  background: #fffdf8;
  border: 1px solid var(--gp-border);
  padding: 1.3rem 1.4rem 1.2rem;
  box-shadow: var(--gp-shadow-soft);
}

/* workshop */

.workshop-panel {
  margin-top: 2.7rem;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 1.5rem;
  align-items: center;
}

.workshop-image img {
  border-radius: var(--gp-radius-lg);
  border: 1px solid var(--gp-border);
  box-shadow: var(--gp-shadow-card);
  display: block;
}

.workshop-text {
  border-radius: var(--gp-radius-lg);
  background: #fffaf3;
  border: 1px solid var(--gp-border-soft);
  padding: 1.6rem 1.6rem 1.3rem;
  box-shadow: var(--gp-shadow-soft);
}

/* ===== CONTACT ===== */

.contact-layout {
  align-items: flex-start;
}

.contact-card {
  border-radius: var(--gp-radius-lg);
  background: #ffffff;
  border: 1px solid var(--gp-border-soft);
  box-shadow: var(--gp-shadow-soft);
  padding: 1.3rem 1.4rem;
  margin-bottom: 1.3rem;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}

.contact-row:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--gp-radius-pill);
  background: #fff7ec;
  border: 1px solid rgba(244, 180, 26, 0.9);
  color: #8a5a12;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-photo img {
  border-radius: var(--gp-radius-lg);
  border: 1px solid var(--gp-border);
  box-shadow: var(--gp-shadow-card);
}

/* form */

.contact-form-shell {
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid var(--gp-border-soft);
  padding: 2rem 2.1rem 1.9rem;
  box-shadow: var(--gp-shadow-card);
}

.contact-form-shell .form-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gp-text-soft);
}

.contact-form-shell .form-control,
.contact-form-shell .form-select {
  border-radius: 15px;
  border-color: var(--gp-border);
  background-color: #fdf7f0;
  color: var(--gp-text-main);
  font-size: 0.96rem;
  padding-block: 0.6rem;
}

.contact-form-shell .form-control::placeholder {
  color: rgba(166, 143, 116, 0.9);
}

.contact-form-shell .form-control:focus,
.contact-form-shell .form-select:focus {
  border-color: var(--gp-accent-main);
  box-shadow: 0 0 0 0.12rem rgba(228, 87, 46, 0.35);
}

/* ===== FOOTER (тёмный, но не чёрный) ===== */

.gp-footer {
  padding: 2.6rem 0 1.7rem;
  background: #3b2b22;            /* тёмно-коричневый */
  border-top: 1px solid #4b382c;
  color: #f9eee3;
}

.gp-footer .gp-logo {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
}

.gp-footer p {
  color: #f1e3d3;
}

.footer-heading {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #f1e3d3;
  margin-bottom: 0.65rem;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li + li {
  margin-top: 0.25rem;
}

.footer-links a {
  font-size: 0.94rem;
  color: #f9eee3;
}

.footer-links a:hover {
  color: #ffd7a3;
}

.footer-bottom {
  border-top: 1px solid #4b382c;
  margin-top: 1.6rem;
  padding-top: 0.9rem;
  color: #f1e3d3;
}

.footer-social-link {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: var(--gp-radius-pill);
  align-items: center;
  justify-content: center;
  background: #4a372b;
  color: #f9eee3;
  font-size: 1.02rem;
  border: 1px solid #6a4c38;
}

.footer-social-link:hover {
  background: linear-gradient(135deg, #e4572e, #f4b41a);
  color: #301f13;
  border-color: transparent;
}

/* ===== COOKIE BANNER ===== */

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  max-width: 640px;
  width: calc(100% - 2rem);
  z-index: 1050;
  transition: all 0.32s ease;
}

.cookie-banner.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, calc(100% + 2rem));
}

.cookie-inner {
  padding: 1.05rem 1.2rem;
  border-radius: var(--gp-radius-lg);
  background: #ffffff;
  border: 1px solid var(--gp-border);
  box-shadow: var(--gp-shadow-soft);
}

.cookie-symbol {
  width: 34px;
  height: 34px;
  border-radius: var(--gp-radius-pill);
  background: #fff7ec;
  border: 1px solid rgba(244, 180, 26, 0.9);
  color: #8a5a12;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1199.98px) {
  .hero-shell {
    padding-top: 4rem;
  }

  .hero-panel {
    padding: 2.1rem 2rem 1.9rem;
  }
}

@media (max-width: 991.98px) {
  body {
    padding-top: 76px;
    font-size: 17px;
  }

  .hero-shell {
    padding-top: 3.5rem;
    padding-bottom: 3.1rem;
  }

  .hero-panel {
    padding: 1.9rem 1.7rem 1.7rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-gallery {
    grid-template-columns: 1fr;
  }

  .workshop-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  body {
    font-size: 16px;
  }

  .section-shell {
    padding: 3.3rem 0;
  }

  .hero-shell {
    padding-top: 3.1rem;
    padding-bottom: 2.7rem;
  }

  .hero-panel {
    padding-inline: 1.4rem;
  }

  .contact-form-shell {
    padding-inline: 1.4rem;
  }

  .cookie-inner {
    padding: 0.95rem 0.95rem;
  }

  .path-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
