/* ==========================================================================
   CSS VARIABLES & SETUP
   ========================================================================== */
:root {
  /* Colors */
  --clr-bg-deep: #050a14;
  --clr-bg-panel: #0d1424;
  --clr-bg-card: #131b2f;

  --clr-primary: #f59e0b; /* Amber */
  --clr-primary-hover: #d97706;
  --clr-secondary: #10b981; /* Emerald */
  --clr-secondary-hover: #059669;

  --clr-text-main: #f3f4f6;
  --clr-text-muted: #9ca3af;
  --clr-border: #1f2937;

  /* Typography */
  --font-heading: "Syne", sans-serif;
  --font-body: "DM Sans", sans-serif;

  /* Variables */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--clr-bg-deep);
  color: var(--clr-text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

body.lock-scroll {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 120px 0;
  position: relative;
}

.bg-darker {
  background-color: var(--clr-bg-panel);
}
.bg-pattern {
  background-image: radial-gradient(
    rgba(245, 158, 11, 0.05) 1px,
    transparent 1px
  );
  background-size: 40px 40px;
}
.bg-accent-gradient {
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.1),
    rgba(16, 185, 129, 0.1)
  );
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.text-amber {
  color: var(--clr-primary) !important;
}
.text-emerald {
  color: var(--clr-secondary) !important;
}
.text-center {
  text-align: center;
}
.text-light {
  color: #e5e7eb !important;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--clr-text-main);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.section-header {
  max-width: 800px;
  margin: 0 auto 60px;
}
.section-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.2rem;
  color: var(--clr-text-muted);
}

.text-body p {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  margin-bottom: 20px;
}
.text-body p:last-child {
  margin-bottom: 0;
}

.full-width {
  width: 100%;
}

/* Buttons */
.btn-amber {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background-color: var(--clr-primary);
  color: #000;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}
.btn-amber:hover {
  background-color: var(--clr-primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.6);
}

.btn-emerald {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background-color: var(--clr-secondary);
  color: #000;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}
.btn-emerald:hover {
  background-color: var(--clr-secondary-hover);
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.6);
}

.btn-outline-emerald {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  border: 2px solid var(--clr-secondary);
  color: var(--clr-secondary);
  background: rgba(16, 185, 129, 0.05);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: var(--transition);
  backdrop-filter: blur(5px);
}
.btn-outline-emerald:hover {
  background: var(--clr-secondary);
  color: #000;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

/* ==========================================================================
   HEADER (BURGER ONLY)
   ========================================================================== */
.app-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background: rgba(5, 10, 20, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.app-header.scrolled {
  padding: 12px 0;
  background: rgba(5, 10, 20, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  padding: 0 40px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-svg {
  width: 45px;
  height: 45px;
}
.brand-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--clr-text-main);
  letter-spacing: 0.5px;
}

.menu-toggle {
  background: none;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  color: var(--clr-text-main);
  padding: 10px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-toggle:hover {
  color: var(--clr-primary);
  border-color: var(--clr-primary);
}

/* ==========================================================================
   SIDE MENU WITH CUSTOM SCROLLBAR
   ========================================================================== */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.side-panel {
  position: fixed;
  top: 0;
  right: -450px;
  width: 450px;
  max-width: 100vw;
  height: 100vh;
  background-color: var(--clr-bg-panel);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid var(--clr-border);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}
.side-panel.active {
  right: 0;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px;
  border-bottom: 1px solid var(--clr-border);
}
.panel-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
}
.close-panel {
  background: none;
  border: 1px solid var(--clr-border);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--clr-text-main);
  cursor: pointer;
  transition: var(--transition);
}
.close-panel:hover {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
  transform: rotate(90deg);
}

/* Custom Scrollbar Styling for Menu */
.panel-scroll-area {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.panel-scroll-area::-webkit-scrollbar {
  width: 6px;
}
.panel-scroll-area::-webkit-scrollbar-track {
  background: var(--clr-bg-deep);
}
.panel-scroll-area::-webkit-scrollbar-thumb {
  background-color: var(--clr-border);
  border-radius: 10px;
}
.panel-scroll-area::-webkit-scrollbar-thumb:hover {
  background-color: var(--clr-primary);
}

.panel-nav {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--clr-text-main);
  transition: var(--transition);
}
.nav-link i {
  color: var(--clr-primary);
  width: 24px;
  height: 24px;
  transition: var(--transition);
}
.nav-link:hover {
  color: var(--clr-primary);
  transform: translateX(10px);
}
.nav-link:hover i {
  transform: scale(1.2);
}
.highlight-nav {
  color: var(--clr-secondary);
  margin-top: 10px;
}
.highlight-nav i {
  color: var(--clr-secondary);
}
.highlight-nav:hover {
  color: var(--clr-secondary-hover);
}

.panel-footer {
  padding: 30px 40px;
  border-top: 1px solid var(--clr-border);
  color: var(--clr-text-muted);
}
.panel-email {
  color: var(--clr-primary);
  font-weight: 700;
  margin-top: 8px;
  font-size: 1.1rem;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(5, 10, 20, 0.95) 0%,
    rgba(5, 10, 20, 0.7) 50%,
    rgba(16, 185, 129, 0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: flex-start;
}

.hero-box {
  background: rgba(13, 20, 36, 0.6);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px;
  border-radius: var(--radius-lg);
  max-width: 800px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border-left: 4px solid var(--clr-primary);
}
.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(245, 158, 11, 0.1);
  color: var(--clr-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  border-radius: 30px;
  border: 1px solid rgba(245, 158, 11, 0.3);
  margin-bottom: 24px;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}
.hero-title {
  font-size: clamp(3rem, 5vw, 4.5rem);
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero-title span {
  color: transparent;
  -webkit-text-stroke: 2px var(--clr-secondary);
  display: block;
}
.hero-desc {
  font-size: 1.2rem;
  color: #e5e7eb;
  margin-bottom: 20px;
}
.hero-actions {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* ==========================================================================
   GRIDS & SPLIT LAYOUTS
   ========================================================================== */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.reverse-grid {
  grid-template-columns: 1.1fr 1fr;
}
.split-text {
  position: relative;
}
.split-visual {
  position: relative;
}

.visual-frame {
  position: relative;
  padding: 20px;
}
.visual-frame img {
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.frame-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 80%;
  border: 2px dashed var(--clr-primary);
  border-radius: var(--radius-lg);
  z-index: 1;
  opacity: 0.5;
}

.stats-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
}
.floating-stat {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: var(--clr-bg-panel);
  border: 1px solid var(--clr-border);
  padding: 20px 30px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  z-index: 3;
  border-left: 4px solid var(--clr-secondary);
}
.floating-stat i {
  width: 32px;
  height: 32px;
  color: var(--clr-secondary);
}
.floating-stat span {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-text-main);
}

/* ==========================================================================
   CARDS (TECHNOLOGIES)
   ========================================================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}
.tech-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  padding: 50px 40px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.tech-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.tech-card:hover {
  transform: translateY(-10px);
  background: #1a243a;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.tech-card:hover::before {
  transform: scaleX(1);
}
.tech-icon {
  width: 64px;
  height: 64px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--clr-primary);
  margin-bottom: 24px;
  border: 1px solid rgba(245, 158, 11, 0.2);
}
.tech-icon i {
  width: 32px;
  height: 32px;
}
.tech-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.tech-card p {
  color: var(--clr-text-muted);
}

/* ==========================================================================
   REGION BANNER
   ========================================================================== */
.region-banner {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 80px;
  display: flex;
  gap: 60px;
  align-items: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}
.region-banner::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.1) 0%,
    transparent 70%
  );
}
.region-icon-wrap {
  width: 100px;
  height: 100px;
  background: rgba(16, 185, 129, 0.1);
  border: 2px solid var(--clr-secondary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--clr-secondary);
  flex-shrink: 0;
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
  z-index: 2;
}
.region-icon-wrap i {
  width: 48px;
  height: 48px;
}
.region-content {
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   STEPS
   ========================================================================== */
.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  position: relative;
}
.step-card {
  background: var(--clr-bg-deep);
  border: 1px solid var(--clr-border);
  padding: 50px 40px;
  border-radius: var(--radius-lg);
  position: relative;
  transition: var(--transition);
  border-top: 4px solid var(--clr-primary);
}
.step-card:hover {
  border-color: var(--clr-secondary);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
  border-top-color: var(--clr-secondary);
}
.step-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px var(--clr-border);
  position: absolute;
  top: 20px;
  right: 30px;
  line-height: 1;
  transition: var(--transition);
}
.step-card:hover .step-number {
  -webkit-text-stroke: 1px var(--clr-secondary);
  opacity: 0.3;
}
.step-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
.step-card p {
  position: relative;
  z-index: 2;
  color: var(--clr-text-muted);
}

/* ==========================================================================
   CONSULTING BANNER
   ========================================================================== */
.consulting-box {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.consulting-text {
  flex: 1;
}
.consulting-icon {
  flex-shrink: 0;
}
.consulting-icon i {
  width: 140px;
  height: 140px;
  color: var(--clr-primary);
  opacity: 0.8;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover {
  border-color: var(--clr-secondary);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 30px;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--clr-text-main);
  cursor: pointer;
  text-align: left;
}
.faq-question i {
  color: var(--clr-primary);
  transition: transform 0.4s ease;
  flex-shrink: 0;
  margin-left: 20px;
}
.faq-item.active .faq-question i {
  transform: rotate(45deg);
  color: var(--clr-secondary);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 30px 30px;
  color: var(--clr-text-muted);
  font-size: 1.1rem;
}

/* ==========================================================================
   CONTACT FORM
   ========================================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.contact-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact-list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.icon-circle {
  width: 48px;
  height: 48px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--clr-secondary);
  flex-shrink: 0;
}
.info-content .info-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-text-main);
  margin-bottom: 4px;
}
.info-content .info-value {
  color: var(--clr-text-muted);
}

.contact-form-wrapper {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  padding: 50px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}
.contact-form-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-secondary));
}
.tech-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form-title {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--clr-text-main);
}
.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.input-wrap i {
  position: absolute;
  left: 16px;
  color: var(--clr-text-muted);
  width: 20px;
  height: 20px;
}
.input-wrap input {
  width: 100%;
  padding: 16px 16px 16px 48px;
  background: var(--clr-bg-deep);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--clr-text-main);
  transition: var(--transition);
}
.input-wrap input:focus {
  outline: none;
  border-color: var(--clr-secondary);
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}
.captcha-group {
  padding-top: 16px;
  border-top: 1px dashed var(--clr-border);
}
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 8px;
}
.checkbox-group input {
  margin-top: 5px;
  width: 20px;
  height: 20px;
  accent-color: var(--clr-primary);
  cursor: pointer;
  flex-shrink: 0;
}
.checkbox-label {
  font-size: 0.9rem !important;
  color: var(--clr-text-muted) !important;
  font-weight: 400 !important;
  cursor: pointer;
  line-height: 1.5;
}
.styled-link {
  color: var(--clr-primary);
  text-decoration: underline;
  font-weight: 700;
}
.styled-link:hover {
  color: var(--clr-secondary);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.app-footer {
  background: var(--clr-bg-panel);
  border-top: 1px solid var(--clr-border);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-logo {
  margin-bottom: 24px;
  display: inline-flex;
}
.footer-desc {
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  max-width: 350px;
}
.footer-col-title {
  font-size: 1.2rem;
  margin-bottom: 24px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: var(--clr-text-muted);
  transition: var(--transition);
}
.footer-nav a:hover {
  color: var(--clr-primary);
}
.footer-contacts li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--clr-text-muted);
  margin-bottom: 12px;
}
.footer-contacts i {
  color: var(--clr-secondary);
  width: 18px;
  height: 18px;
  margin-top: 4px;
}
.highlight-contact {
  color: var(--clr-text-main) !important;
  font-weight: 700;
  text-decoration: underline;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 8px;
  display: inline-block;
}
.footer-copyright {
  text-align: center;
  border-top: 1px solid var(--clr-border);
  padding-top: 30px;
  color: var(--clr-text-muted);
  font-size: 0.9rem;
}

/* ==========================================================================
   COOKIE POPUP
   ========================================================================== */
.cookie-modal {
  position: fixed;
  bottom: -150%;
  left: 0;
  width: 100%;
  background: var(--clr-bg-card);
  border-top: 4px solid var(--clr-secondary);
  z-index: 3000;
  padding: 24px 0;
  transition: bottom 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}
.cookie-modal.show {
  bottom: 0;
}
.cookie-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cookie-content {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1 1 400px;
}
.cookie-icon {
  background: rgba(16, 185, 129, 0.1);
  color: var(--clr-secondary);
  padding: 16px;
  border-radius: 50%;
  display: flex;
  flex-shrink: 0;
}
.cookie-text h4 {
  margin-bottom: 4px;
  font-size: 1.2rem;
}
.cookie-text p {
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* ==========================================================================
   MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .header-wrap {
    padding: 0 24px;
  }
  .hero-section {
    min-height: 800px;
  }
  .split-grid,
  .reverse-grid,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .split-text,
  .contact-info {
    text-align: center;
  }
  .split-visual {
    order: -1;
    padding: 0 20px;
  }
  .reverse-grid .split-visual {
    order: -1;
  }
  .floating-stat {
    bottom: -20px;
    left: 20px;
  }
  .region-banner {
    flex-direction: column;
    text-align: center;
    padding: 50px 30px;
  }
  .consulting-box {
    flex-direction: column;
    text-align: center;
    padding: 50px 30px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .header-wrap {
    height: 75px;
  }
  .side-panel {
    width: 100vw;
    right: -100vw;
  }
  section {
    padding: 80px 0;
  }
  .hero-section {
    padding-top: 100px;
    min-height: 600px;
    text-align: center;
  }
  .hero-box {
    padding: 40px 24px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions a {
    width: 100%;
    text-align: center;
  }
  .contact-form-wrapper {
    padding: 30px 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-logo,
  .footer-contacts li {
    justify-content: center;
  }
  .footer-desc {
    margin: 16px auto 0;
  }
  .cookie-flex {
    flex-direction: column;
    text-align: center;
  }
  .cookie-content {
    flex-direction: column;
  }
  #accept-cookies {
    width: 100%;
  }
}

.pages {
  padding: 120px 0;
}

.pages-wrap {
  max-width: 1000px;
  padding: 0 10px;
  margin: 0 auto 20px;
}

.pages h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 40px;
  text-align: center;
}

.text-wrapper {
  background: #f8fafc;
  padding: 50px 40px;
  border-radius: 20px;
  line-height: 1.8;
}

.text-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(99, 102, 241, 0.2);
  padding-bottom: 5px;
}

.text-wrapper h3 {
  color: #000000;
  margin-bottom: 20px;
}

.text-wrapper p {
  color: #64748b;
  margin-bottom: 20px;
}

.text-wrapper ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.text-wrapper ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: #1e293b;
}

.text-wrapper ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1;
  color: var(--primary);
  top: 0;
}

.text-wrapper strong {
  color: var(--color-error);
}

.text-wrapper a {
  color: #001eff;
  text-decoration: underline;
  font-weight: 600;
}

.text-wrapper ol {
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: #000000;
}

.margin {
  margin: 120px 0 50px;
  font-size: 40px;
  color: var(--accent);
}

@media (max-width: 768px) {
  .pages {
    padding: 100px 0 60px;
  }
  .pages h1 {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 24px;
    margin-top: 30px;
  }
  .margin {
    font-size: 28px;
  }
}

/* --- CONTACT PAGE SPECIFIC STYLES --- */
.contact-page-main {
  padding-top: 180px;
  padding-bottom: 120px;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cp-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  letter-spacing: -2px;
  color: var(--accent);
  margin-bottom: 30px;
  line-height: 1;
  display: flex;
  justify-content: center;
}

.cp-divider {
  width: 60px;
  height: 1px;
  background-color: var(--accent);
  margin: 0 auto 40px auto;
}

.cp-status {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-muted);
  border: 1px solid var(--line);
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 60px;
  background: #fcfcfc;
}

.cp-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cp-label {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.cp-phone-link {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--accent);
  line-height: 1.2;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
  margin-bottom: 40px;
}

.cp-phone-link:hover {
  border-bottom-color: var(--accent);
  opacity: 0.8;
}

.cp-address-box {
  border-top: 1px solid var(--line);
  padding-top: 40px;
  width: 100%;
  max-width: 400px;
}

.cp-addr {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 10px;
}

.cp-email {
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-size: 1rem;
}

.cp-email a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cp-email a:hover {
  color: var(--accent);
}

@media (max-width: 600px) {
  .contact-page-main {
    padding-top: 140px;
    text-align: center;
  }

  .cp-phone-link {
    font-size: 2rem;
  }
}
