:root {
  --primary-color: #8B2252;
  --secondary-color: #6A1040;
  --accent-color: #C45C82;
  --light-color: #FAF0F4;
  --dark-color: #3A0D1F;
  --gradient-primary: linear-gradient(135deg, #8B2252 0%, #C45C82 100%);
  --hover-color: #6A1040;
  --background-color: #FDF7F9;
  --text-color: #3A2030;
  --border-color: rgba(139, 34, 82, 0.18);
  --divider-color: rgba(106, 16, 64, 0.13);
  --shadow-color: rgba(139, 34, 82, 0.1);
  --highlight-color: #F4D03F;
  --main-font: 'Playfair Display', serif;
  --alt-font: 'Lato', sans-serif;
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  background: white;
  border-radius: 6px;
  border: 1px solid var(--border-color);
}
.hamburger .line {
  width: 24px;
  height: 2px;
  background: var(--primary-color);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 1px;
}
#menu-toggle { display: none; }
#menu-toggle:checked ~ .mobile-nav {
  max-height: 350px;
  opacity: 1;
}
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  border-bottom: 2px solid var(--border-color);
  z-index: 1000;
}
.mobile-nav ul { padding: 2rem; margin: 0; list-style: none; }
.mobile-nav li { margin: 0.8rem 0; }
.mobile-nav a {
  display: block;
  padding: 1rem 0;
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid transparent;
}
.mobile-nav a:hover {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

/* Feature Cards — diamond/rhombus icon style */
.feature-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 20px var(--shadow-color);
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  border-bottom: 4px solid transparent;
  border-image: var(--gradient-primary) 1;
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px var(--shadow-color);
}
.feature-icon {
  font-size: 2rem;
  margin: 0 auto 1.4rem auto;
  color: var(--primary-color);
  width: 68px;
  height: 68px;
  background: var(--light-color);
  border: 2px solid var(--border-color);
  border-radius: 14px;
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.feature-icon span {
  transform: rotate(-45deg);
  display: inline-block;
}
.feature-card:hover .feature-icon {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
}

/* Testimonials */
.testimonial {
  background: white;
  border-radius: 14px;
  padding: 2.2rem 1.8rem;
  margin: 1rem 0;
  box-shadow: 0 4px 18px var(--shadow-color);
  position: relative;
  transition: all 0.3s ease;
  border-right: 4px solid var(--primary-color);
}
.testimonial::before {
  content: '❝';
  position: absolute;
  top: -14px;
  left: 20px;
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 0.18;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px var(--shadow-color);
}

/* FAQ Items */
.faq-item {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  margin: 1.2rem 0;
  box-shadow: 0 3px 14px var(--shadow-color);
  transition: all 0.3s ease;
  padding: 2.2rem;
  position: relative;
  border-top: 3px solid var(--accent-color);
}
.faq-item:hover {
  box-shadow: 0 6px 26px var(--shadow-color);
  border-top-color: var(--primary-color);
}
.faq-item h3 {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}
.faq-item h3::before {
  content: 'Q';
  font-family: var(--main-font);
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.4;
}

/* Form */
input, textarea {
  transition: all 0.3s ease;
  font-family: var(--alt-font);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.1rem;
  background-color: white;
  color: var(--text-color);
  font-size: 1rem;
  width: 100%;
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(139, 34, 82, 0.1);
}
input:hover, textarea:hover { border-color: var(--secondary-color); }

/* Buttons */
button, .btn {
  transition: all 0.3s ease;
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 1.2rem 2.6rem;
  border-radius: 8px;
  font-weight: 600;
  font-family: var(--alt-font);
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 3px 14px rgba(139, 34, 82, 0.3);
}
button:hover, .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(139, 34, 82, 0.4);
}

/* Base */
html { scroll-behavior: smooth; }
body {
  font-family: var(--alt-font);
  color: var(--text-color);
  background: var(--background-color);
  line-height: 1.7;
  max-width: 100vw;
  overflow-x: hidden;
}
* { box-sizing: border-box; }
.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 2rem;
}
h1, h2, h3 {
  font-family: var(--main-font);
  font-weight: 700;
  color: var(--primary-color);
}

/* Header / Footer */
header {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  color: var(--text-color);
  padding: 1.2rem 0;
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 18px var(--shadow-color);
}
footer {
  background: var(--dark-color);
  color: var(--light-color);
  padding: 3.5rem 0 1.5rem;
}

/* Focus */
a:focus, button:focus, input:focus, textarea:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Grids */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  margin: 2.5rem 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
  margin: 2.5rem 0;
}

/* Pattern bg */
.pattern-bg {
  background-image:
    radial-gradient(ellipse at 10% 20%, rgba(139, 34, 82, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 80%, rgba(196, 92, 130, 0.07) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 50%, rgba(244, 208, 63, 0.04) 0%, transparent 55%);
}

/* Random block: timeline steps */
.timeline-block {
  width: 100%;
  background: linear-gradient(160deg, #FAF0F4 0%, #F2D9E4 100%);
  padding: 4rem 0;
}
.timeline-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2.5rem;
  position: relative;
}
.timeline-wrap::before {
  content: '';
  position: absolute;
  left: 36px;
  top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}
.timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
  position: relative;
}
.timeline-num {
  width: 72px;
  height: 72px;
  min-width: 72px;
  background: var(--gradient-primary);
  color: white;
  font-size: 1.6rem;
  font-weight: 900;
  font-family: var(--main-font);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(139, 34, 82, 0.3);
  position: relative;
  z-index: 1;
}
.timeline-content {
  background: white;
  border-radius: 12px;
  padding: 1.4rem 1.6rem;
  box-shadow: 0 3px 14px var(--shadow-color);
  flex: 1;
}
.timeline-content strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--primary-color);
}

/* Stats */
.stat-card {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 14px;
  padding: 2.2rem;
  text-align: center;
  box-shadow: 0 4px 20px var(--shadow-color);
  transition: all 0.3s ease;
}
.stat-card:hover { transform: scale(1.03); }
.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--main-font);
  line-height: 1;
}
.stat-text {
  font-size: 0.95rem;
  color: var(--text-color);
  margin-top: 0.7rem;
  font-weight: 500;
}

/* Contact */
.contact-inner { width: 80%; margin: 0 auto; }

/* Responsive */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .navigation { display: none; }
  .mobile-nav { display: block; }
  .hero h1 { font-size: 2.5rem; line-height: 1.2; padding: 0 1rem; }
  .container { padding: 0 1rem; max-width: 100vw; }
  .features-grid { grid-template-columns: 1fr; gap: 2rem; padding: 0 0.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 2rem; padding: 0 0.5rem; }
  .feature-card, .testimonial, .faq-item { margin: 1rem 0; padding: 2rem 1.5rem; max-width: 100%; word-wrap: break-word; }
  .timeline-wrap::before { left: 30px; }
  .timeline-num { width: 60px; height: 60px; min-width: 60px; font-size: 1.3rem; }
  .contact-inner { width: 100%; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; padding: 0 0.5rem; }
  .hero p { font-size: 1rem; padding: 0 0.5rem; }
  .feature-card, .testimonial, .faq-item { padding: 1.5rem 1rem; }
  .container { padding: 0 0.5rem; }
  input, textarea { font-size: 16px; padding: 1rem; }
  .btn { padding: 1rem 2rem; font-size: 0.95rem; }
  .timeline-wrap::before { display: none; }
  .timeline-step { flex-direction: column; align-items: center; text-align: center; }
}