@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Open+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --brown: #8b5e32;
  --brown-dark: #6b4420;
  --gold: #c49b5a;
  --gold-light: #e8cfa0;
  --bg: #fefbf6;
  --bg-warm: #f2e9dc;
  --bg-dark: #2d1c0a;
  --text: #2d1c0a;
  --muted: #7a6350;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(139, 94, 50, 0.13);
  --shadow-hover: 0 8px 40px rgba(139, 94, 50, 0.22);
  --radius: 12px;
  --radius-btn: 30px;
  --transition: 0.3s ease;
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--brown);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}
::-webkit-scrollbar-corner {
  background: transparent;
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--brown) transparent;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Raleway', sans-serif;
  color: var(--text);
  line-height: 1.3;
  margin-top: 0;
}

h1 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.5px;
}
h2 {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 600;
}
h3 {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 600;
}
h4 {
  font-size: 18px;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  color: var(--text);
}

a {
  color: var(--brown);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--gold);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
.phone-show-desk {
  color: beige;
}
.btn-primary-custom {
  display: inline-block;
  background: var(--brown);
  color: var(--white) !important;
  padding: 14px 36px;
  border-radius: var(--radius-btn);
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: 2px solid var(--brown);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none !important;
}
.btn-primary-custom:hover {
  background: var(--brown-dark);
  border-color: var(--brown-dark);
  color: var(--white) !important;
  box-shadow: 0 6px 20px rgba(139, 94, 50, 0.35);
}

.btn-outline-custom {
  display: inline-block;
  background: transparent;
  color: var(--brown) !important;
  padding: 12px 32px;
  border-radius: var(--radius-btn);
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid var(--brown);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none !important;
  text-align: center;
}
.btn-outline-custom:hover {
  background: var(--brown);
  color: var(--white) !important;
}

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--bg-dark) !important;
  padding: 14px 36px;
  border-radius: var(--radius-btn);
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none !important;
}
.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 6px 20px rgba(196, 155, 90, 0.4);
}

.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--brown) !important;
  padding: 14px 36px;
  border-radius: var(--radius-btn);
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none !important;
}
.btn-white:hover {
  background: var(--gold-light);
}

.container {
  width: 100% !important;
  max-width: 1440px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
}

.topbar {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  padding: 7px 0;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-msg {
  flex: 1;
  min-width: 200px;
}
.topbar-social {
  display: flex;
  gap: 14px;
  align-items: center;
}
.topbar-social a {
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: color var(--transition);
}
.topbar-social a svg {
  display: block;
}
.topbar-social a img {
  display: block;
}
.topbar-social a:hover {
  color: var(--gold);
}
.topbar-social a:hover img {
  filter: brightness(10) sepia(1) saturate(5) hue-rotate(5deg) !important;
  opacity: 1 !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(139, 94, 50, 0.1);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(139, 94, 50, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
  flex-shrink: 0;
}
.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--brown), var(--gold));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.logo-text {
  font-family: 'Raleway', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--brown) !important;
  line-height: 1.1;
}
.logo-sub {
  font-size: 10px;
  font-family: 'Open Sans', sans-serif;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active {
  background: var(--bg-warm);
  color: var(--brown);
}

.header-cta {
  flex-shrink: 0;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  outline: none;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--bg-warm);
  padding: 16px 0 20px;
}
.mobile-nav.open {
  display: block;
}
.mobile-nav a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  padding: 10px 20px;
  border-bottom: 1px solid var(--bg-warm);
  transition: background var(--transition);
}
.mobile-nav a:hover {
  background: var(--bg-warm);
}
.mobile-nav .btn-primary-custom {
  margin: 12px 20px 0;
  display: block;
  text-align: center;
}

.hero-section {
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-warm) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C49B5A' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content {
  grid-column: 1;
  grid-row: 1;
}
.hero-media {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.hero-badge {
  display: inline-block;
  background: var(--bg-warm);
  border: 1px solid var(--gold);
  color: var(--brown);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.25;
}
.hero-title em {
  font-style: italic;
  color: var(--brown);
}
.hero-title-sub {
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin-top: -20px;
  margin-bottom: 18px;
}
.hero-title-sub em {
  font-style: italic;
  color: var(--brown);
}

.hero-subtitle {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.hero-feature {
  background: var(--white);
  border: 1px solid var(--gold-light);
  border-radius: 20px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-media {
  position: relative;
}
.hero-video-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  position: relative;
  width: 100%;
}
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-main-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.hero-video-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(45, 28, 10, 0.8);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 500;
}

.section {
  padding: 80px 0;
}
.section-warm {
  background: var(--bg-warm);
}
.section-dark {
  background: var(--bg-dark);
  color: var(--white);
}
.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-label {
  display: inline-block;
}
.section-label.text-center {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 48px;
}

.text-center {
  text-align: center;
}

.emotion-section {
  background: linear-gradient(135deg, var(--bg-warm) 0%, #ede0cc 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.emotion-section::after {
  content: '"';
  position: absolute;
  right: 5%;
  top: 20px;
  font-size: 280px;
  font-family: 'Raleway', sans-serif;
  color: var(--gold);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
}

.emotion-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.emotion-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 28px;
  line-height: 1.25;
}
.emotion-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 20px;
}
.emotion-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--brown), var(--gold));
  border-radius: 2px;
  margin: 32px auto;
}

.formats-slider-section {
  padding: 90px 0;
  background: var(--bg);
  overflow: hidden;
}

.format-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.format-card:hover {
  box-shadow: var(--shadow-hover);
}

.format-card-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.format-card:hover .format-card-img {
  transform: scale(1.04);
}
.format-card-img-wrap {
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.format-card-label {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--brown);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}
.format-card-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.format-card-title {
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.format-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 18px;
}
.format-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.format-card-price {
  font-weight: 700;
  color: var(--brown);
  font-size: 17px;
}

.fmt-slider {
  overflow: hidden;
  position: relative;
  margin: 40px 0 0;
}
.fmt-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  align-items: stretch;
  position: relative;
}
.fmt-slide {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.fmt-slide .format-card {
  flex: 1;
}
@media (max-width: 1023px) {
  .fmt-slide {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}
@media (max-width: 639px) {
  .fmt-slide {
    flex: 0 0 100%;
  }
  .fmt-track {
    gap: 0;
  }
}

.fmt-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}
.fmt-btn {
  width: 46px;
  height: 46px;
  background: var(--white);
  border: 2px solid var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--brown);
  font-size: 18px;
  flex-shrink: 0;
}
.fmt-btn:hover:not(:disabled) {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--white);
}
.fmt-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.fmt-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.fmt-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.fmt-dot.active {
  background: var(--brown);
  width: 24px;
  border-radius: 4px;
}

.process-section {
  background: var(--bg-warm);
  padding: 90px 0;
}

.process-timeline {
  display: flex;
  gap: 0;
  position: relative;
  counter-reset: step;
  overflow-x: auto;
  padding-bottom: 10px;
}

.process-step {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 50%;
  right: -50%;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  z-index: 0;
}
.process-step:last-child::before {
  display: none;
}

.step-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--brown), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(139, 94, 50, 0.3);
}

.step-title {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.process-meta {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 50px;
  flex-wrap: wrap;
}
.process-meta-item {
  text-align: center;
}
.process-meta-value {
  font-family: 'Raleway', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--brown);
  display: block;
}
.process-meta-label {
  font-size: 13px;
  color: var(--muted);
}

.order-section {
  background: var(--bg);
  padding: 90px 0;
}

.order-form-wrap {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 48px;
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid var(--bg-warm);
}
.order-form-title {
  font-family: 'Raleway', sans-serif;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 8px;
}
.order-form-sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 32px;
}

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

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
  letter-spacing: 0.3px;
}
.form-control-custom {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e5d9c8;
  border-radius: 10px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  outline: none;
}
.form-control-custom:focus {
  border-color: var(--brown);
  box-shadow: 0 0 0 3px rgba(139, 94, 50, 0.12);
  background: var(--white);
}
.form-control-custom::placeholder {
  color: #b5a49a;
}

textarea.form-control-custom {
  resize: vertical;
  min-height: 100px;
}

.file-upload-label {
  display: block;
  border: 2px dashed #e5d9c8;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--bg);
  color: var(--muted);
  font-size: 14px;
}
.file-upload-label:hover {
  border-color: var(--brown);
  background: var(--bg-warm);
  color: var(--brown);
}
.file-upload-label .file-icon {
  font-size: 28px;
  margin-bottom: 8px;
  display: block;
}
input[type='file'] {
  display: none;
}

.form-submit {
  text-align: center;
  margin-top: 8px;
}
.form-submit .btn-primary-custom {
  min-width: 200px;
  font-size: 16px;
  padding: 16px 40px;
}
.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}

.form-instant {
  background: var(--bg-warm);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 24px;
  text-align: center;
}
.form-instant-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.form-instant-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.form-instant-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius-btn);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none !important;
  transition: all var(--transition);
  color: var(--white) !important;
}
.form-instant-btn.tg {
  background: #2aabee;
}
.form-instant-btn.tg:hover {
  background: #1a9cd8;
  box-shadow: 0 4px 16px rgba(42, 171, 238, 0.4);
}
.form-instant-btn.mx {
  background: var(--brown);
}
.form-instant-btn.mx:hover {
  background: var(--brown-dark);
  box-shadow: 0 4px 16px rgba(139, 94, 50, 0.35);
}

.form-alert {
  display: none;
  padding: 14px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
}
.form-alert.success {
  background: #eaf7ee;
  color: #2d7a4a;
  border: 1px solid #b2e4c4;
}
.form-alert.error {
  background: #fef0ee;
  color: #c0392b;
  border: 1px solid #f5b7b1;
}

.video-section {
  background: var(--bg-dark);
  padding: 90px 0;
  overflow: hidden;
}
.video-section .section-title {
  color: var(--white);
}
.video-section .section-sub {
  color: rgba(255, 255, 255, 0.6);
}

.swiper-videos .swiper-slide {
  width: 260px !important;
}
.video-card {
  background: #1a0e04;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 9/16;
  cursor: pointer;
}
.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(45, 28, 10, 0.8) 0%,
    transparent 50%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.video-card-step {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.video-card-title {
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--brown);
  transition: all var(--transition);
  pointer-events: none;
}
.video-card:hover .video-play-btn {
  background: var(--white);
  transform: translate(-50%, -50%) scale(1.1);
}
.video-card.playing .video-play-btn {
  display: none;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 991px) {
  .materials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .materials-grid {
    grid-template-columns: 1fr;
  }
}
.material-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.material-card-img {
  height: 180px;
  overflow: hidden;
}
.material-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.material-card:hover .material-card-img img {
  transform: scale(1.05);
}
.material-card-body {
  padding: 20px;
}
.material-card-title {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.material-card-desc {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.crosslink-section {
  background: var(--bg-warm);
  padding: 90px 0;
}
.crosslink-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.crosslink-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  text-decoration: none !important;
  display: block;
}
.crosslink-card:hover {
  box-shadow: var(--shadow-hover);
}
.crosslink-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.crosslink-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.crosslink-card:hover .crosslink-img-wrap img {
  transform: scale(1.05);
}
.crosslink-title {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  padding: 20px 20px 0;
}
.crosslink-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0;
  padding: 0 20px 24px;
}

.pricing-section {
  background: var(--bg);
  padding: 90px 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.pricing-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 30px;
  border: 2px solid transparent;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.pricing-card.featured {
  border-color: var(--brown);
  transform: scale(1.04);
}
.pricing-card.featured::before {
  content: 'Популярный';
  position: absolute;
  top: 28px;
  right: -38px;
  background: var(--brown);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 40px;
  transform: rotate(45deg);
  letter-spacing: 1px;
}
.pricing-card:hover {
  box-shadow: var(--shadow-hover);
}

.pricing-name {
  font-family: 'Raleway', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.pricing-desc {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}
.pricing-price {
  font-family: 'Raleway', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--brown);
  line-height: 1;
  margin-bottom: 6px;
}
.pricing-price-unit {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.pricing-features li {
  font-size: 14px;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--bg-warm);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li::before {
  content: '✓';
  color: var(--brown);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-factors {
  background: var(--bg-warm);
  border-radius: 12px;
  padding: 28px 32px;
  margin-top: 50px;
}
.pricing-factors h4 {
  font-family: 'Raleway', sans-serif;
  margin-bottom: 16px;
}
.pricing-factors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.pricing-factor {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}
.pricing-factor::before {
  content: '→';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.faq-section {
  background: var(--bg-warm);
  padding: 90px 0;
}
.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
}
.faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid rgba(196, 155, 90, 0.2);
  transition: box-shadow var(--transition);
}
.faq-item:hover {
  box-shadow: var(--shadow);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 24px;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color var(--transition);
  outline: none;
}
.faq-question:hover {
  color: var(--brown);
}
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--bg-warm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown);
  font-size: 16px;
  transition: all var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--brown);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding var(--transition);
  padding: 0 24px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 24px 22px;
}

.final-cta {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #3d2510 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 10 L60 40 L90 40 L67 58 L76 88 L50 70 L24 88 L33 58 L10 40 L40 40 Z' fill='%23C49B5A' fill-opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}
.final-cta-title {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}
.final-cta-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 40px;
  position: relative;
}
.final-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.site-footer {
  background: #1a0e04;
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand .logo-text {
  color: var(--gold) !important;
}
.footer-brand p {
  font-size: 14px;
  margin-top: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}
.footer-col-title {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}
.footer-contact-item span:first-child {
  color: var(--gold);
  flex-shrink: 0;
  font-size: 16px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--brown);
  color: var(--white);
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(45, 28, 10, 0.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.modal-overlay.active {
  display: flex;
}
.modal-box {
  background: var(--white);
  border-radius: 20px;
  padding: 48px;
  max-width: 560px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 80px rgba(45, 28, 10, 0.3);
  animation: modalIn 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}
@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: var(--bg-warm);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text);
  transition: all var(--transition);
}
.modal-close:hover {
  background: var(--brown);
  color: var(--white);
}
.modal-title {
  font-family: 'Raleway', sans-serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}
.modal-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
}

.formats-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 0;
  align-items: stretch;
}
.formats-catalog-item {
  display: flex;
  flex-direction: column;
}
.formats-catalog-item .format-card {
  flex: 1;
}
@media (max-width: 991px) {
  .formats-catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .formats-catalog-grid {
    grid-template-columns: 1fr;
  }
}

.format-hero {
  background: linear-gradient(135deg, var(--bg-warm) 0%, #ede0cc 100%);
  padding: 50px 0 60px;
}
.breadcrumb-custom {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumb-custom a {
  color: var(--muted);
}
.breadcrumb-custom a:hover {
  color: var(--brown);
}
.breadcrumb-custom .sep {
  color: var(--gold-light);
}
.breadcrumb-custom .current {
  color: var(--text);
  font-weight: 600;
}

.format-page-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  margin-bottom: 16px;
}
.format-page-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
}
.format-gallery {
  background: var(--bg);
  padding: 60px 0;
}
.gallery-main-img {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
  aspect-ratio: 4/3;
}
.gallery-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-thumb {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  border: 3px solid transparent;
  transition: border-color var(--transition);
}
.gallery-thumb.active {
  border-color: var(--brown);
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.gallery-thumb:hover img {
  transform: scale(1.05);
}
.format-details {
  padding: 60px 0;
  background: var(--bg-warm);
}
.format-fit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.format-fit-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(196, 155, 90, 0.2);
  font-size: 15px;
  color: var(--text);
}
.format-fit-list li::before {
  content: '✦';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.other-formats {
  background: var(--bg);
  padding: 70px 0;
}
.other-formats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.other-format-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  text-decoration: none !important;
  display: block;
}
.other-format-card:hover {
  box-shadow: var(--shadow-hover);
}
.other-format-img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.other-format-info {
  background: var(--white);
  padding: 14px 16px;
}
.other-format-name {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.other-format-price {
  font-size: 13px;
  color: var(--brown);
  font-weight: 600;
}
.about-hero {
  background: linear-gradient(135deg, var(--bg-warm) 0%, #ede0cc 100%);
  padding: 70px 0;
}
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.about-value {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.about-value-icon {
  font-size: 40px;
  margin-bottom: 16px;
}
.about-value-title {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.about-value-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-warm);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.contact-info-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-info-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.contact-info-sub {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.catalog-hero {
  background: linear-gradient(135deg, var(--bg-warm) 0%, #ede0cc 100%);
  padding: 70px 0;
  text-align: center;
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.catalog-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.catalog-card:hover {
  box-shadow: var(--shadow-hover);
}
.catalog-card-img {
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
}
.catalog-card-body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.catalog-card-title {
  font-family: 'Raleway', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}
.catalog-card-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}
.catalog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.catalog-price {
  font-family: 'Raleway', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--brown);
}
.mt-0 {
  margin-top: 0 !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mt-20 {
  margin-top: 20px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-40 {
  margin-top: 40px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-40 {
  margin-bottom: 40px;
}
.text-brown {
  color: var(--brown);
}
.text-gold {
  color: var(--gold);
}
.text-muted-custom {
  color: var(--muted);
}
.separator {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--brown), var(--gold));
  border-radius: 2px;
  margin: 20px auto 36px;
}
.separator.left {
  margin-left: 0;
}
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-media {
    display: flex;
    justify-content: center;
  }
  .hero-video-wrap {
    max-width: 480px;
  }
  .hero-content {
    grid-column: 1;
    grid-row: 2;
  }
  .hero-media {
    grid-column: 1;
    grid-row: 1;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .pricing-card.featured {
    transform: none;
  }
  .other-formats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-video-wrap {
    width: 100%;
    max-width: 100%;
    border-radius: 16px;
  }
  .hero-media {
    width: 100%;
  }

  .section {
    padding: 60px 0;
  }
  .emotion-section,
  .formats-slider-section,
  .process-section,
  .order-section,
  .video-section,
  .crosslink-section,
  .pricing-section,
  .faq-section,
  .final-cta {
    padding: 60px 0;
  }

  .main-nav {
    display: none;
  }
  .header-cta {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 10px;
  }
  /* On phones keep only the clickable phone in the header, hide the bulky button (it stays in the mobile menu) */
  .header-cta .btn-primary-custom {
    display: none;
  }
  .burger {
    display: flex;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
  .order-form-wrap {
    padding: 28px 20px;
  }

  .crosslink-grid {
    grid-template-columns: 1fr;
  }
  .catalog-grid {
    grid-template-columns: 1fr;
  }
  .other-formats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-values {
    grid-template-columns: 1fr;
  }
  .contacts-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-timeline {
    flex-direction: column;
    overflow: visible;
    padding-bottom: 0;
    gap: 0;
  }
  .process-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto auto;
    column-gap: 20px;
    text-align: left;
    padding: 0 0 36px 0;
    min-width: unset;
    flex: none;
    position: relative;
  }
  .process-step::before {
    display: none;
  }
  .process-step::after {
    content: '';
    position: absolute;
    left: 29px;
    top: 60px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), var(--gold-light));
  }
  .process-step:last-child::after {
    display: none;
  }
  .step-circle {
    grid-column: 1;
    grid-row: 1 / 3;
    margin: 0;
    align-self: start;
  }
  .step-title {
    grid-column: 2;
    grid-row: 1;
    padding-top: 10px;
    font-size: 16px;
  }
  .step-desc {
    grid-column: 2;
    grid-row: 2;
  }
  .process-meta {
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(3, 1fr);
  }

  .modal-box {
    padding: 32px 20px;
  }
  .pricing-factors-grid {
    grid-template-columns: 1fr;
  }

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

  .swiper-videos .swiper-slide {
    width: 180px !important;
  }

  .topbar .container {
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-width: 480px) {
  .hero-features {
    flex-direction: column;
  }
  .hero-btns {
    flex-direction: column;
  }
  .hero-feature {
    justify-content: center;
  }
  .other-formats-grid {
    grid-template-columns: 1fr;
  }
  .gallery-thumbs {
    grid-template-columns: repeat(2, 1fr);
  }
}
.section-head {
  margin-bottom: 48px;
}
.section-head .separator {
  margin-bottom: 0;
}
.btn-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.8;
}
.btn-loading::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  margin-top: -8px;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.swiper-formats-page .swiper-slide {
  height: auto;
}

.accent-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin: 0 6px;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .hero-grid {
    display: flex;
    flex-direction: column;
  }

  .hero-content {
    order: 2;
  }

  .hero-media {
    order: 1;
    margin-top: 0;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

[class^='col-'] {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .col-md-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
  .col-md-5 {
    flex: 0 0 41.6667%;
    max-width: 41.6667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.3333%;
    max-width: 58.3333%;
  }
  .col-md-8 {
    flex: 0 0 66.6667%;
    max-width: 66.6667%;
  }
}

/* === Phone: text on desktop (span), clickable link on mobile (a) === */
.phone-show-desk { display: inline-block; }
.phone-show-mob  { display: none; }

@media (max-width: 768px) {
  .phone-show-desk { display: none; }
  .phone-show-mob  { display: inline-block; }
}

/* Header phone wrapper */
.header-phone {
  font-size: 15px;
  font-weight: 600;
  color: var(--brown);
  text-decoration: none;
  white-space: nowrap;
  margin-right: 8px;
}
@media (max-width: 900px) {
  /* Hide only the non-clickable desktop phone text on tablets; the clickable
     mobile phone link (.phone-show-mob) stays visible in the header on phones */
  .phone-show-desk { display: none !important; }
}

/* Consent checkbox */
.form-consent {
  margin: 14px 0 4px;
}
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}
.consent-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--brown);
  cursor: pointer;
}
.consent-label a {
  color: var(--brown);
  text-decoration: underline;
}
.btn-primary-custom:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}
.btn-outline-custom:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}