/* =============================================
   STYLE.CSS — SK Version 2
   design-style: bold-editorial | color-mode: dark
   border-style: sharp | shadow-style: dramatic
   ============================================= */

:root {
  --primary-color: #B22B5B;
  --secondary-color: #F1A9B8;
  --accent-color: #8F1F47;
  --light-color: #1e0d13;
  --dark-color: #0d060a;
  --gradient-primary: linear-gradient(135deg, #8F1F47 0%, #B22B5B 100%);
  --hover-color: #D4355F;
  --background-color: #120810;
  --text-color: #d8c8ce;
  --border-color: rgba(178,43,91,0.3);
  --divider-color: rgba(178,43,91,0.18);
  --shadow-color: rgba(0,0,0,0.5);
  --highlight-color: #F2D57F;
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Roboto', sans-serif;
  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;
  --radius-btn: 0px;
  --shadow-card: 0 20px 60px rgba(0,0,0,0.45);
  --shadow-hover: 0 32px 80px rgba(0,0,0,0.6);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--alt-font);
  font-size: clamp(14px, 4vw, 17px);
  color: var(--text-color);
  background-color: var(--background-color);
  overflow-x: hidden;
  line-height: 1.75;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--highlight-color); text-decoration: none; transition: color .25s; }
a:hover { color: #ffe099; }
h1, h2, h3, h4 { font-family: var(--main-font); line-height: 1.15; color: #fff; font-weight: 700; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 16px; }

/* ── PATTERN BG ── */
.pattern-bg {
  background-image:
    repeating-linear-gradient(45deg, rgba(178,43,91,0.05) 0px, rgba(178,43,91,0.05) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(-45deg, rgba(242,213,127,0.04) 0px, rgba(242,213,127,0.04) 1px, transparent 1px, transparent 40px);
}

/* ── HEADER ── */
header {
  position: relative;
  width: 100%;
  background-color: var(--dark-color);
  border-bottom: 2px solid var(--primary-color);
  z-index: 100;
  padding: 1.1rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo img { height: 42px; width: auto; }

#nav-toggle { display: none; }

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  min-height: 44px;
  min-width: 44px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--highlight-color);
  transition: transform .3s, opacity .3s;
}
#nav-toggle:checked ~ header .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#nav-toggle:checked ~ header .hamburger span:nth-child(2) { opacity: 0; }
#nav-toggle:checked ~ header .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navigation {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--dark-color);
  border-bottom: 2px solid var(--primary-color);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  padding: 16px;
  z-index: 99;
}
#nav-toggle:checked ~ header .navigation { display: block; }

.navigation ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.navigation a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  min-height: 44px;
  font-family: var(--main-font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .2s;
}

@media (min-width: 768px) {
  .hamburger { display: none; }
  .navigation {
    display: block !important;
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }
  .navigation ul { flex-direction: row; gap: 4px; align-items: center; }
}

/* ── BTN ── */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 13px 32px;
  min-height: 44px;
  font-family: var(--main-font);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .25s, transform .2s, box-shadow .25s;
}
.btn-primary { background: var(--highlight-color); color: var(--dark-color); }
.btn-primary:hover { background: #ffe099; color: var(--dark-color); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(242,213,127,0.3); }
.btn-outline { background: transparent; color: var(--highlight-color); border: 2px solid var(--highlight-color); }
.btn-outline:hover { background: var(--highlight-color); color: var(--dark-color); }

/* ── HERO — bold-text-only ── */
.hero {
  min-height: 86vh;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 48px 16px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 60px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 60px);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 900px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--main-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--highlight-color);
  margin-bottom: 28px;
}
.hero-eyebrow::before { content: ''; display: block; width: 36px; height: 2px; background: var(--highlight-color); }

.hero h1 {
  font-size: clamp(42px, 8vw, 96px);
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.05;
}
.hero h1 em { font-style: normal; color: var(--highlight-color); display: block; }

.hero-subtitle {
  font-size: clamp(15px, 2.5vw, 19px);
  color: rgba(255,255,255,0.78);
  margin-bottom: 40px;
  max-width: 580px;
  line-height: 1.7;
}
@media (min-width: 768px) { .hero { padding: 80px 24px; } }

/* ── INTRO ── */
.intro-section {
  padding: 48px 16px;
  background: var(--light-color);
  border-bottom: 1px solid var(--border-color);
}
@media (min-width: 768px) { .intro-section { padding: 80px 24px; } }
.intro-section h2 { font-size: clamp(22px, 4vw, 38px); margin-bottom: 18px; color: #fff; }
.intro-section p { font-size: clamp(14px, 3vw, 17px); max-width: 820px; line-height: 1.85; }

/* ── BETWEEN — checklist ── */
.between-section {
  width: 100%;
  padding: 48px 16px;
  background: var(--background-color);
  border-top: 3px solid var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
}
@media (min-width: 768px) { .between-section { padding: 72px 24px; } }

.between-section h2 { font-size: clamp(22px, 4vw, 36px); text-align: center; margin-bottom: 40px; color: #fff; }

.checklist-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) { .checklist-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .checklist-grid { grid-template-columns: repeat(4, 1fr); } }

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--border-color);
  background: var(--light-color);
}
.check-mark {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}
.checklist-item p { font-size: clamp(13px, 2vw, 15px); line-height: 1.65; color: var(--text-color); }
.checklist-item strong { color: #fff; }

/* ── FEATURES — icon-row ── */
.features-section {
  padding: 48px 16px;
  background: var(--light-color);
}
@media (min-width: 768px) { .features-section { padding: 80px 24px; } }

.section-title { font-size: clamp(22px, 4vw, 40px); text-align: center; margin-bottom: 12px; color: #fff; }
.section-subtitle { text-align: center; font-size: clamp(14px, 3vw, 17px); color: var(--text-color); max-width: 600px; margin: 0 auto 48px; }

.features-icon-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border-color);
}
@media (min-width: 640px) { .features-icon-strip { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .features-icon-strip { grid-template-columns: repeat(6, 1fr); } }

.icon-feat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 32px 16px;
  background: var(--background-color);
  transition: background .25s;
}
.icon-feat:hover { background: var(--light-color); }

.icon-feat-emoji {
  font-size: 44px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
}

.feature-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.icon-feat h3 { font-size: clamp(13px, 2vw, 15px); color: #fff; font-family: var(--main-font); margin: 0; }
.icon-feat p { font-size: clamp(12px, 1.8vw, 13px); color: var(--text-color); line-height: 1.55; }

/* ── IMG + TEXT — img-right ── */
.imgtext-section {
  padding: 48px 16px;
  background: var(--background-color);
  border-top: 1px solid var(--border-color);
}
@media (min-width: 768px) { .imgtext-section { padding: 80px 24px; } }

.imgtext-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 1024px) { .imgtext-inner { grid-template-columns: 55% 45%; } }

.imgtext-content h2 { font-size: clamp(22px, 4vw, 36px); margin-bottom: 20px; color: #fff; }
.imgtext-content p { font-size: clamp(14px, 2.5vw, 16px); line-height: 1.85; margin-bottom: 14px; color: var(--text-color); }
.imgtext-content .cta-wrap { margin-top: 28px; }

.imgtext-img img { width: 100%; box-shadow: var(--shadow-hover); }

/* ── TESTIMONIALS — quotes ── */
.testimonials-section {
  padding: 48px 16px;
  background: var(--light-color);
}
@media (min-width: 768px) { .testimonials-section { padding: 80px 24px; } }

.testimonials-list { margin-top: 48px; max-width: 860px; margin-left: auto; margin-right: auto; }

.testimonial-quote {
  padding: 32px 0 32px 28px;
  border-left: 4px solid var(--primary-color);
  margin-bottom: 40px;
  position: relative;
}
.testimonial-quote::before {
  content: '\201C';
  font-family: var(--main-font);
  font-size: 72px;
  color: var(--primary-color);
  line-height: 1;
  position: absolute;
  top: 0; left: -6px;
  opacity: .5;
}
.testimonial-text { font-family: var(--main-font); font-size: clamp(16px, 2.5vw, 20px); font-style: italic; color: rgba(255,255,255,0.9); line-height: 1.65; margin-bottom: 18px; }
.testimonial-meta { display: flex; align-items: center; gap: 14px; }
.testimonial-name { font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--highlight-color); }
.stars { color: var(--highlight-color); font-size: 14px; letter-spacing: 2px; }

/* ── CONTACT ── */
.contact-section {
  padding: 48px 16px;
  background: var(--background-color);
  border-top: 1px solid var(--border-color);
}
@media (min-width: 768px) { .contact-section { padding: 80px 24px; } }

.contact-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px) { .contact-wrap { width: 80%; grid-template-columns: 1fr 1.4fr; } }

.contact-info h2 { font-size: clamp(20px, 3.5vw, 30px); margin-bottom: 24px; color: #fff; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-detail-icon { font-size: 18px; flex-shrink: 0; margin-top: 3px; }
.contact-detail p { font-size: 15px; line-height: 1.6; }

.contact-form h3 { font-size: clamp(16px, 2.5vw, 20px); margin-bottom: 24px; color: #fff; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; color: rgba(255,255,255,0.55); }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  min-height: 44px;
  border: 1px solid var(--border-color);
  background: var(--light-color);
  font-family: var(--alt-font);
  font-size: 15px;
  color: #fff;
  outline: none;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--highlight-color); }
.form-group textarea { min-height: 110px; resize: vertical; }

.btn-submit {
  width: 100%;
  padding: 15px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--highlight-color);
  color: var(--dark-color);
  border: none;
  cursor: pointer;
  font-family: var(--main-font);
  min-height: 44px;
  transition: background .25s, transform .2s;
}
.btn-submit:hover { background: #ffe099; transform: translateY(-2px); }

/* ── FAQ ── */
.faq-section {
  padding: 48px 16px;
  background: var(--light-color);
}
@media (min-width: 768px) { .faq-section { padding: 80px 24px; } }

.faq-list { margin-top: 36px; max-width: 860px; margin-left: auto; margin-right: auto; }
.faq-item { padding: 28px 0; border-bottom: 1px solid var(--divider-color); }
.faq-item:first-child { border-top: 1px solid var(--divider-color); }
.faq-question { font-family: var(--main-font); font-size: clamp(15px, 2.5vw, 19px); color: var(--highlight-color); margin-bottom: 14px; }
.faq-answer { font-size: clamp(14px, 2.5vw, 16px); line-height: 1.85; }

/* ── FOOTER ── */
footer {
  background: var(--dark-color);
  color: rgba(255,255,255,0.7);
  padding: 48px 16px 24px;
  border-top: 3px solid var(--primary-color);
}
footer img[alt="logo"] { filter: brightness(0) invert(1); }

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer-logo img { height: 40px; width: auto; }
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 8px; align-items: center; }
.footer-nav a { color: rgba(255,255,255,0.55); font-size: 14px; transition: color .2s; display: flex; align-items: center; min-height: 44px; }
.footer-nav a:hover { color: var(--highlight-color); }
.footer-copy { max-width: 1200px; margin: 24px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; font-size: 13px; color: rgba(255,255,255,0.32); }

@media (min-width: 768px) {
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; align-items: center; }
  .footer-nav ul { flex-direction: row; gap: 24px; align-items: center; }
}

.bg-gray-100,
.bg-white,
.bg-yellow-100,
.bg-blue-100,
.bg-red-100,
.bg-green-100  {
  color: #111A13;
}