/* LIGHT THEME DESIGN SYSTEM & CUSTOM TOKENS */
:root {
  --bg-color: #ffffff;
  --card-bg: #f8fafc;
  --text-color: #0f172a;
  --text-muted: #64748b;
  
  /* Accents (optimized for light theme contrast) */
  --accent-green: #00c853; /* dark green for readability */
  --accent-pink: #d81b60; /* deep pink */
  --accent-blue: #0288d1; /* primary blue */
  
  /* Fonts */
  --font-display: 'Unbounded', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Shadows & Borders */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
  --shadow-lg: 0 10px 30px rgba(15, 23, 42, 0.05);
  --border-light: 1px solid #e2e8f0;
}

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* TYPOGRAPHY */
h1, h2, h3, .logo-text, .why-label, .stats-value, .vacancy-title {
  font-family: var(--font-display);
  font-weight: 700;
}

h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: -1px;
  color: var(--text-color);
}

.text-glow {
  text-shadow: none;
}

.section-header {
  margin-bottom: 40px;
  text-align: center;
}

.decor-icons {
  list-style: none;
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background-color: #000000;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--accent-green);
  color: #000;
  box-shadow: 0 0 15px rgba(0, 200, 83, 0.4);
  transform: translateY(-2px);
}

.btn-telegram {
  background-color: #229ED9;
  color: #ffffff;
  gap: 8px;
}

.btn-telegram:hover {
  background-color: #1e8ec3;
  box-shadow: 0 0 15px rgba(34, 158, 217, 0.4);
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 36px;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
  display: flex;
}

.btn-glow {
  animation: pulse-glow-light 2s infinite alternate;
}

@keyframes pulse-glow-light {
  0% { box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); }
  100% { box-shadow: 0 0 20px rgba(0, 200, 83, 0.3); }
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.3s ease;
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: var(--border-light);
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
}

.logo-img {
  width: 32px;
  height: 32px;
}

.logo-text {
  color: #fff;
  font-size: 1.1rem;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.header.scrolled .logo-text {
  color: var(--text-color);
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.header.scrolled .nav-link {
  color: var(--text-muted);
}

.header.scrolled .nav-link:hover {
  color: var(--accent-green);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone-link {
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.header.scrolled .phone-link {
  color: var(--text-color);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.header.scrolled .menu-toggle span {
  background-color: var(--text-color);
}

/* HERO SECTION (Kept dark to read overlay on video) */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
  background-color: #000;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.85) 100%);
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: 680px;
  text-align: center;
  margin: 0 auto;
}

.hero-title {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-logo-wrap {
  margin: 30px 0;
}

.hero-logo-img {
  width: 150px;
  height: auto;
}

.hero-text {
  margin-top: 30px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-text p {
  margin-bottom: 10px;
}

.hero-gif {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 3;
  width: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-gif img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-decor {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  width: 30%;
  pointer-events: none;
}

.hero-decor img {
  width: 100%;
  height: auto;
}

/* OK IF YOU SECTION */
.ok-section {
  padding: 80px 0;
  position: relative;
  background-color: var(--bg-color);
}

.ok-container {
  max-width: 800px;
}

.ok-card {
  background: var(--card-bg);
  border: var(--border-light);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.ok-subtitle {
  color: var(--accent-pink);
  font-size: 1.1rem;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.ok-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.ok-list {
  list-style: none;
}

.ok-list li {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-color);
}

.ok-list li i {
  color: var(--accent-green);
}

.ok-image {
  width: 120px;
}

.ok-image img {
  width: 100%;
  height: auto;
}

.ok-footer {
  text-align: center;
  margin-top: 30px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--accent-green);
  font-weight: 600;
}

/* CONDITIONS SECTION */
.conditions {
  padding: 80px 0;
  background-color: #f8fafc;
  border-top: var(--border-light);
  border-bottom: var(--border-light);
}

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.condition-card {
  background: #ffffff;
  border: var(--border-light);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.condition-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-green);
  box-shadow: var(--shadow-md);
}

.condition-label {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 15px;
  border-left: 3px solid var(--accent-green);
  padding-left: 12px;
}

.condition-text {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* WHY US SECTION */
.why-us {
  padding: 80px 0;
}

.why-us-header {
  border-top: var(--border-light);
  border-bottom: var(--border-light);
  padding: 30px 0;
  margin-bottom: 60px;
  background-color: #f8fafc;
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.why-us-title {
  font-size: 2.2rem;
  margin-bottom: 0;
  color: var(--text-color);
}

.why-us-blocks {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.why-block {
  padding: 40px 0;
  border-radius: 16px;
}

/* Custom background colors mimicking original style */
.why-block:nth-child(1) { background-color: #f0fdf4; } /* Mint */
.why-block:nth-child(2) { background-color: #fff5f5; } /* Rose */
.why-block:nth-child(3) { background-color: #f0f9ff; } /* Sky */
.why-block:nth-child(4) { background-color: #faf5ff; } /* Lavender */

.why-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 40px;
}

.why-container.reverse {
  flex-direction: row-reverse;
}

.why-image {
  width: 200px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.why-image img {
  width: 100%;
  height: auto;
  display: block;
}

.cursor-img {
  width: 120px;
  box-shadow: none !important;
}

.why-content {
  max-width: 500px;
  width: 100%;
}

.why-label {
  font-size: 1.2rem;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.why-label.left-align {
  color: var(--accent-blue);
  border-bottom: 2px solid var(--accent-blue);
  display: inline-block;
  padding-bottom: 5px;
}

.why-label.right-align {
  color: var(--accent-pink);
  border-bottom: 2px solid var(--accent-pink);
  display: inline-block;
  padding-bottom: 5px;
}

.why-list {
  list-style: none;
}

.why-list li {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--text-color);
}

.why-note {
  margin-top: 25px;
  padding: 15px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  color: var(--text-muted);
  border: var(--border-light);
}

/* STATS SECTION */
.stats {
  padding: 80px 0;
  background-color: #f8fafc;
  border-top: var(--border-light);
  border-bottom: var(--border-light);
}

.stats-title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}

.stats-title {
  font-size: 1.8rem;
  margin-bottom: 0;
  color: var(--text-color);
}

.stats-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
}

.stats-subtitle span {
  color: var(--accent-pink);
  font-weight: 600;
}

.stats-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-top: 60px;
  min-height: 380px;
}

.stats-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stats-bar-wrap {
  position: relative;
  width: 60px;
  height: 250px;
  background-color: #ffffff;
  border: var(--border-light);
  border-radius: 30px;
  display: flex;
  flex-direction: column-reverse;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.stats-bar {
  width: 100%;
  background: linear-gradient(180deg, var(--accent-pink) 0%, var(--accent-blue) 100%);
  border-radius: 30px;
  transition: height 1s ease-out;
}

.stats-value {
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 20px;
  color: #fff;
  font-size: 1rem;
}

.stats-label {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 160px;
}

/* INTERIORS (COMPARISON SLIDER) */
.interiors {
  padding: 80px 0;
}

.interiors-slider-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.compare-slider {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  border: var(--border-light);
  user-select: none;
  box-shadow: var(--shadow-md);
}

.compare-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.compare-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.base-layer {
  z-index: 1;
}

.overlay-layer {
  z-index: 2;
  width: 50%; /* JS will control this */
}

/* Force image to remain at full width inside cropped overlay container */
.overlay-layer .compare-img {
  width: 900px; /* matches container max-width */
  max-width: none;
}

.compare-label {
  position: absolute;
  bottom: 20px;
  padding: 8px 16px;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  z-index: 3;
}

.compare-label.left {
  left: 20px;
  border-left: 3px solid var(--accent-pink);
}

.compare-label.right {
  right: 20px;
  border-right: 3px solid var(--accent-green);
}

.compare-handle {
  position: absolute;
  top: 0;
  left: 50%; /* JS will control this */
  width: 4px;
  height: 100%;
  background-color: #fff;
  z-index: 4;
  cursor: ew-resize;
  transform: translateX(-50%);
}

.handle-line {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--accent-green);
  box-shadow: 0 0 10px var(--accent-green);
}

.handle-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  border: 4px solid var(--accent-green);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

/* REVIEWS SECTION */
.reviews {
  padding: 80px 0;
}

.arrow-divider {
  text-align: center;
  margin-top: 15px;
}

.arrow-divider img {
  width: 40px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.review-card {
  background: #ffffff;
  border: var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.review-card:hover {
  transform: scale(1.02);
  border-color: var(--accent-pink);
  box-shadow: var(--shadow-md);
}

.review-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background-color: #000;
}

.review-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--accent-pink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 0 15px rgba(216, 27, 96, 0.4);
  transition: all 0.3s ease;
  z-index: 2;
}

.review-card:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: #000;
  color: #fff;
}

.review-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  display: none;
}

.review-card.playing .review-poster,
.review-card.playing .play-btn {
  display: none;
}

.review-card.playing .review-video {
  display: block;
}

/* VACANCIES SECTION */
.vacancies {
  padding: 80px 0;
}

.vacancies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  position: relative;
}

.vacancy-card-decor {
  position: absolute;
  top: -50px;
  left: -50px;
  width: 100px;
  pointer-events: none;
  opacity: 0.15;
}

.vacancy-card-decor img {
  width: 100%;
  height: auto;
}

.vacancy-card {
  background: #ffffff;
  border: var(--border-light);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.vacancy-card:hover {
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.vacancy-title {
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.vacancy-income {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.vacancy-income strong {
  display: block;
  margin-top: 10px;
  font-size: 1.2rem;
  color: var(--accent-green);
  font-family: var(--font-display);
}

.vacancies-action {
  text-align: center;
  margin-top: 50px;
}

/* FAQ SECTION */
.faq-section {
  padding: 80px 0;
}

.faq-title {
  text-align: center;
  margin-bottom: 45px;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.accordion-item {
  border: var(--border-light);
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion-header {
  width: 100%;
  padding: 20px;
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: #f8fafc;
}

.accordion-header i {
  color: var(--accent-green);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.accordion-content {
  padding: 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-top: var(--border-light);
  background-color: #f8fafc;
}

/* FOOTER (Kept dark to ground the layout as original) */
.footer {
  background-color: #0c0c14;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 0 30px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-title {
  font-size: 1.4rem;
  color: var(--accent-green);
}

.footer-phone {
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.footer-phone a {
  color: #fff;
  text-decoration: none;
}

.social-links {
  list-style: none;
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.03);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background-color: var(--accent-green);
  color: #000;
  box-shadow: 0 0 10px var(--accent-green);
}

.footer-map {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  min-height: 200px;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: rgba(255, 255, 255, 0.6);
}

.map-placeholder i {
  font-size: 2.5rem;
  color: var(--accent-pink);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* MODAL POPUP */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-dialog {
  background-color: #ffffff;
  border: var(--border-light);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  border-radius: 16px;
  width: 100%;
  max-width: 440px;
  padding: 40px;
  position: relative;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.modal.open .modal-dialog {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--text-color);
}

.modal-title {
  font-size: 1.4rem;
  color: var(--text-color);
  margin-bottom: 10px;
}

.modal-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

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

.form-input {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  background-color: #f8fafc;
  border: var(--border-light);
  color: var(--text-color);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-input:focus {
  border-color: var(--accent-green);
}

.select-input {
  appearance: none;
  cursor: pointer;
}

/* RESPONSIVE DESIGN */
@media (max-width: 991px) {
  h2 { font-size: 1.8rem; }
  .hero-title { font-size: 2.2rem; }
  .why-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .why-container.reverse {
    flex-direction: column;
  }
  .why-label.left-align,
  .why-label.right-align {
    text-align: center;
    display: inline-block;
  }
  .stats-grid {
    min-height: auto;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
  .stats-item {
    flex: none;
    width: 45%;
  }
  .stats-bar-wrap {
    height: 180px;
  }
}

@media (max-width: 767px) {
  .nav-menu {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .header-actions .phone-link, 
  .header-actions .btn {
    display: none;
  }
  .ok-content {
    flex-direction: column;
    text-align: center;
  }
  .ok-image {
    order: -1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
