:root {
  /* Colors - Purple Theme */
  --primary-dark: #1a0b2e;
  --primary-black: #0d0517;
  --primary-purple: #4a1f8c;
  --accent-purple: #642e8b;
  --accent-purple-light: #8e5ce6;
  --accent-purple-glow: rgba(100, 46, 139, 0.4);
  --accent-purple-soft: rgba(100, 46, 139, 0.15);
  --accent-purple-very-soft: rgba(100, 46, 139, 0.1);

  /* Neutrals */
  --text-white: #ffffff;
  --text-light: #e5e5e5;
  --text-muted: #b0bec5;
  --border-dark: #2d1454;
  --bg-card-dark: rgba(26, 11, 46, 0.7);
  --bg-card-light: rgba(255, 255, 255, 0.97);

  /* Success/Error/Warning */
  --color-success: #10b981;
  --color-success-soft: rgba(16, 185, 129, 0.15);
  --color-error: #ef4444;
  --color-error-soft: rgba(239, 68, 68, 0.15);
  --color-warning: #f59e0b;
  --color-warning-soft: rgba(245, 158, 11, 0.15);

  /* Gradients */
  --gradient-purple: linear-gradient(135deg, #4a1f8c 0%, #642e8b 100%);
  --gradient-dark: linear-gradient(180deg, #1a0b2e 0%, #0d0517 50%, #251042 100%);

  /* Shared values */
  --blur-amount: blur(10px);
  --border-radius-sm: 0.5rem;
  --border-radius-md: 0.75rem;
  --border-radius-lg: 1rem;
  --border-radius-xl: 1.5rem;
  --border-radius-full: 2rem;
  --transition-fast: all 0.2s ease;
  --transition-normal: all 0.3s ease;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===========================================
   BASE & RESET
   =========================================== */
html, body {
  overflow-x: hidden !important;
}

body.modal-open {
  overflow: hidden !important;
}

body {
  background: var(--primary-black) !important;
  color: var(--text-white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--accent-purple); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-purple-light); }

/* ===========================================
   KEYFRAME ANIMATIONS
   =========================================== */
@keyframes float1 {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(80px, -60px); }
  50%  { transform: translate(-40px, 80px); }
  75%  { transform: translate(-80px, -40px); }
  100% { transform: translate(0, 0); }
}

@keyframes float2 {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-60px, 80px); }
  50%  { transform: translate(80px, -40px); }
  75%  { transform: translate(40px, 60px); }
  100% { transform: translate(0, 0); }
}

@keyframes float3 {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(60px, 60px); }
  50%  { transform: translate(-80px, -60px); }
  75%  { transform: translate(40px, -80px); }
  100% { transform: translate(0, 0); }
}

@keyframes float4 {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-50px, -70px); }
  50%  { transform: translate(70px, 50px); }
  75%  { transform: translate(-60px, 30px); }
  100% { transform: translate(0, 0); }
}

@keyframes slideInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes dropdownOpen {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===========================================
   ANIMATED BACKGROUND
   =========================================== */
.animated-bg {
  position: fixed;
  inset: 0;
  background: var(--gradient-dark);
  z-index: -1;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}

.blob-1 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--accent-purple-glow) 0%, transparent 70%);
  top: -80px;
  left: -60px;
  animation: float1 7s infinite ease-in-out;
}

.blob-2 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(74, 31, 140, 0.45) 0%, transparent 70%);
  bottom: 80px;
  right: -60px;
  animation: float2 9s infinite ease-in-out;
}

.blob-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(142, 92, 230, 0.3) 0%, transparent 70%);
  top: 40%;
  left: 40%;
  animation: float3 6s infinite ease-in-out;
}

.blob-4 {
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, var(--accent-purple-glow) 0%, transparent 70%);
  top: 20%;
  right: 20%;
  animation: float4 8s infinite ease-in-out;
}

/* ===========================================
   LAYOUT STRUCTURE
   =========================================== */
.main.bg {
  position: relative;
  min-height: 100vh;
}

.container-wrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  box-sizing: border-box;
}

.main-content {
  flex: 1;
  width: 100%;
  padding: 1rem;
  padding-bottom: 5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-sizing: border-box;
}

/* ===========================================
   HEADER
   =========================================== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-dark);
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo {
  font-size: 1.3rem;
  font-weight: 700;
  background: var(--accent-purple-light);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-image {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* ===========================================
   REDESIGNED EXCHANGE CONTAINER (Dark Theme)
   =========================================== */
.exchange-container {
  margin-top: -1rem;
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 2rem);
  max-width: 568px;
  position: relative;
  z-index: 5;
  animation: slideInUp 0.5s ease-out;
  box-sizing: border-box !important;
}

.exchange-header {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
  width: 100%;
}

.exchange-rate-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1.25rem;
  border-radius: var(--border-radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.exchange-rate-badge .rate-label {
  color: var(--text-white);
}

.exchange-rate-badge .rate-value {
  color: var(--color-success);
}

.rate-label {
  color: var(--text-white);
}

.exchange-boxes-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

.exchange-box {
  background: var(--primary-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-xl);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.exchange-box-top {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 0.75rem;
}

.exchange-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.exchange-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.amount-input {
  flex: 1;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-white);
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  min-width: 0;
  width: 100%;
}

.amount-input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.currency-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.rub-icon { background: var(--accent-purple); }
.usdt-icon { background: #26a17b; }

.swap-btn-floating {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  background: var(--accent-purple);
  border: 4px solid var(--primary-black);
  border-radius: 50%;
  color: var(--text-white);
  font-size: 0.8rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  transition: var(--transition-normal);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.swap-btn-floating:hover {
  background: var(--accent-purple-light);
  transform: translate(-50%, -50%) scale(1.05);
}

.currency-selector-inline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.currency-name,
#giveCurName,
#getCurName {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-white);
  white-space: nowrap;
}

.long-name {
  display: inline-block;
  max-width: 200px;
  overflow: hidden;
  white-space: nowrap;
  transition: all 0.3s ease;
  vertical-align: bottom;
}

.is-typing .long-name {
  max-width: 0;
  opacity: 0;
  margin-right: 0;
}

.discount-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 1.25rem 0 1rem;
  font-style: italic;
}

.continue-btn {
  width: 100%;
  padding: 1.1rem;
  background: var(--gradient-purple);
  border: none;
  border-radius: var(--border-radius-full);
  color: var(--text-white);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px var(--accent-purple-soft);
}

.continue-btn:hover:not(:disabled) {
  box-shadow: 0 6px 25px var(--accent-purple-glow);
  transform: translateY(-2px);
}

.continue-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: var(--border-dark);
  box-shadow: none;
}

/* ===========================================
   OFFICE PHOTOS CAROUSEL
   =========================================== */
.office-carousel {
  margin-top: 1.5rem;
  position: relative;
  width: 100%;
  height: 180px;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  background: var(--primary-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.carousel-track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.4s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.carousel-title {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.carousel-dots {
  display: flex;
  gap: 6px;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.3s;
}

.carousel-dot.active {
  background: white;
  transform: scale(1.2);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  border: none;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 0.8rem;
}

.carousel-btn:hover { background: rgba(0, 0, 0, 0.7); }
.prev-btn { left: 10px; }
.next-btn { right: 10px; }

/* ===========================================
   ЧИСТАЯ ВЁРСТКА КАРТОЧКИ ОФИСА
   =========================================== */
.office-section-card {
  background: var(--primary-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-xl);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  margin: 1.25rem 0;
}

.office-card-header {
  margin-bottom: 1rem;
}

.office-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.office-card-title i {
  color: var(--accent-purple-light);
}

.office-card-body {
  display: flex;
  flex-direction: row !important;
  align-items: center;
  gap: 1rem;
}

.office-preview-box {
  position: relative;
  width: 90px;
  height: 130px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.office-img-static {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.office-preview-box:hover .office-img-static {
  transform: scale(1.05);
  filter: brightness(1.15);
}

.office-info-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  justify-content: center;
}

.zoom-icon-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 5, 23, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
  color: #fff;
  font-size: 1.1rem;
}

.office-preview-box:hover .zoom-icon-overlay {
  opacity: 1;
}

.office-info-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.office-address-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
  margin: 0;
}

.office-room {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.schedule-badges {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0;
}

.schedule-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.25rem 0.6rem;
  border-radius: var(--border-radius-sm);
  gap: 8px;
  font-size: 0.75rem;
}

.schedule-badge .badge-days {
  color: var(--text-muted);
}

.schedule-badge .badge-time {
  color: var(--text-white);
  font-weight: 600;
}

.schedule-badge.weekend {
  opacity: 0.6;
}

.yandex-maps-mini-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.4rem 0.8rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--border-radius-sm);
  color: var(--text-white);
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-fast);
}

.yandex-maps-mini-btn:hover {
  background: var(--accent-purple-soft);
  border-color: var(--accent-purple-light);
  color: #fff;
}

/* ===========================================
   ПОЛНОЭКРАННЫЙ ЛАЙТБОКС (ФИОЛЕТОВАЯ ТОНИРОВКА)
   =========================================== */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 5, 23, 0.95);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 0 30px var(--accent-purple-glow);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(142, 92, 230, 0.15);
  border: 1px solid var(--border-dark);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.2s;
}

.lightbox-arrow:hover {
  background: var(--accent-purple);
  box-shadow: 0 0 15px var(--accent-purple-glow);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-counter {
  position: absolute;
  bottom: 30px;
  color: var(--text-muted);
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 12px;
  border-radius: var(--border-radius-full);
}

@media (max-width: 600px) {
  .lightbox-arrow {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}

/* ===========================================
   CUSTOM SELECT & DROPDOWNS
   =========================================== */
.custom-select-wrapper,
.location-wrapper {
  position: relative;
}

.location-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  background: var(--accent-purple-soft);
  border: 1px solid var(--border-dark) !important;
  border-radius: var(--border-radius-full);
  color: var(--text-white);
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.location-btn:hover {
  background: rgba(100, 46, 139, 0.25);
  border-color: var(--accent-purple) !important;
}

.location-btn:focus {
  outline: none;
  border-color: var(--accent-purple-light) !important;
}

.location-btn i:first-child {
  font-size: 0.8rem;
  color: var(--accent-purple-light);
}

.chevron-small {
  font-size: 0.65rem;
  transition: transform 0.3s ease;
}

.location-btn.active .chevron-small {
  transform: rotate(180deg);
}

.location-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 200px;
  background: var(--primary-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: none;
  overflow: hidden;
  backdrop-filter: var(--blur-amount);
  animation: dropdownOpen 0.3s ease-out;
}

.location-dropdown.show {
  display: block;
}

.location-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.75rem 1rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-white);
  transition: var(--transition-fast);
  border-bottom: 1px solid var(--border-dark);
}

.location-option:last-child {
  border-bottom: none;
}

.location-option:hover {
  background: var(--accent-purple-glow);
}

.location-option.selected {
  background: rgba(100, 46, 139, 0.2);
  color: var(--accent-purple-light);
  font-weight: 600;
}

.location-option i {
  font-size: 0.85rem;
  color: var(--accent-purple-light);
  min-width: 14px;
}

/* ===========================================
   SERVICES GRID
   =========================================== */
.services-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 1rem !important;
  animation: slideInUp 0.8s ease-out 0.3s backwards;
}

.service-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-lg);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  backdrop-filter: blur(15px) saturate(160%);
  -webkit-backdrop-filter: blur(15px) saturate(160%);
  transition: var(--transition-smooth);
  overflow: hidden;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02);
}

.service-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
  transition: transform 0.6s ease;
}

.service-card:hover::before {
  transform: translate(10%, 10%);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--accent-purple-light);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
              0 0 20px var(--accent-purple-soft);
}

.service-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient-purple);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  box-shadow: 0 4px 15px var(--accent-purple-soft);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-icon.referral-icon {
  background: var(--gradient-purple);
}

.service-icon.antiscam-icon {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

.service-icon.policy-icon {
  background: linear-gradient(135deg, #dc2626 0%, #f97316 100%);
}

.service-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
  margin: 0;
  line-height: 1.3;
}

.service-description {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
  flex: 1;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1rem;
  background: rgba(100, 46, 139, 0.2);
  border: 1px solid var(--border-dark);
  border-radius: var(--border-radius-sm);
  color: var(--text-white);
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition-normal);
  cursor: pointer;
}

.service-btn:hover {
  background: var(--accent-purple-glow);
  border-color: var(--accent-purple);
  color: var(--text-white);
}

.service-btn-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-btn-small {
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
}

.policy-card .service-title {
  font-size: 0.85rem;
}

/* ===========================================
   FOOTER
   =========================================== */
.footer {
  text-align: center;
  padding: 2rem 1rem;
  border-top: 1px solid var(--border-dark);
  color: var(--text-muted);
  font-size: 0.9rem;
}

#footer {
  display: none !important;
}

/* ===========================================
   DESKTOP
   =========================================== */

/* ===========================================
   RESPONSIVE - TABLET (max-width: 600px)
   =========================================== */
@media (max-width: 600px) {
  .header {
    padding: 0.75rem 1rem;
  }

  .main-content {
    gap: 1.25rem;
    padding: 1rem;
    padding-bottom: 5rem;
  }

  .hero-banner {
    height: 120px;
  }

  .hero-banner-title {
    font-size: 1.6rem;
  }

  .hero-banner-logo {
    width: 40px;
    height: 40px;
  }

  .blob-1 {
    width: 220px;
    height: 220px;
  }

  .blob-2 {
    width: 180px;
    height: 180px;
  }

  .blob-3 {
    width: 140px;
    height: 140px;
  }

  .blob-4 {
    width: 160px;
    height: 160px;
  }
}

/* ===========================================
   RESPONSIVE - MOBILE (max-width: 400px)
   =========================================== */
@media (max-width: 400px) {
  .logo {
    font-size: 1.1rem;
  }

  .amount-input {
    font-size: 1.8rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 1rem;
  }

  .service-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}
