:root {
  --primary-color: #6B2D6B;
  --secondary-color: #4E1F4E;
  --accent-color: #A05AA0;
  --light-color: #F5EEF5;
  --dark-color: #1C0A1C;
  --gradient-primary: linear-gradient(135deg, #6B2D6B 0%, #A05AA0 100%);
  --hover-color: #5A245A;
  --background-color: #FBF7FB;
  --text-color: #2E1A2E;
  --border-color: rgba(107, 45, 107, 0.2);
  --divider-color: rgba(78, 31, 78, 0.15);
  --shadow-color: rgba(107, 45, 107, 0.11);
  --highlight-color: #C07A30;
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Poppins', 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 — icon in coloured square, bottom accent underline */
.feature-card {
  background: white;
  border-radius: 14px;
  padding: 2.2rem 1.8rem;
  box-shadow: 0 2px 14px var(--shadow-color);
  transition: all 0.35s ease;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  border-bottom: 4px solid transparent;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px var(--shadow-color);
  border-bottom-color: var(--accent-color);
}
.feature-icon {
  font-size: 1.9rem;
  margin: 0 auto 1.4rem auto;
  color: white;
  width: 66px;
  height: 66px;
  background: var(--gradient-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(107, 45, 107, 0.3);
  transition: all 0.35s ease;
}
.feature-card:hover .feature-icon {
  border-radius: 50%;
  transform: scale(1.08);
  box-shadow: 0 6px 22px rgba(107, 45, 107, 0.4);
}
.feature-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-color);
  background: var(--light-color);
  border-radius: 20px;
  padding: 0.2rem 0.8rem;
  margin-bottom: 0.7rem;
}

/* Testimonials */
.testimonial {
  background: white;
  border-radius: 14px;
  padding: 2.2rem 1.8rem;
  margin: 1rem 0;
  box-shadow: 0 3px 16px var(--shadow-color);
  position: relative;
  transition: all 0.3s ease;
  border-right: 4px solid var(--accent-color);
}
.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px var(--shadow-color);
  border-right-color: var(--primary-color);
}
.testimonial::before {
  content: '"';
  position: absolute;
  bottom: 12px;
  right: 20px;
  font-size: 5rem;
  line-height: 1;
  opacity: 0.07;
  color: var(--primary-color);
  font-family: Georgia, serif;
}

/* FAQ */
.faq-item {
  background: white;
  border-radius: 12px;
  margin: 1.2rem 0;
  box-shadow: 0 2px 12px var(--shadow-color);
  transition: all 0.3s ease;
  padding: 2rem 2.2rem;
  position: relative;
  border-top: 3px solid transparent;
}
.faq-item:hover {
  box-shadow: 0 8px 26px var(--shadow-color);
  border-top-color: var(--accent-color);
  transform: translateY(-2px);
}
.faq-item h3 {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.faq-dot {
  min-width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gradient-primary);
  flex-shrink: 0;
  margin-top: 8px;
}

/* 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(107, 45, 107, 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(107, 45, 107, 0.3);
}
button:hover, .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(107, 45, 107, 0.4);
}

/* Typography */
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;
}
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: 2rem;
  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 background — soft diamond/cross hatch */
.pattern-bg {
  background-image:
    radial-gradient(circle at 25% 25%, rgba(107, 45, 107, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(160, 90, 160, 0.07) 0%, transparent 50%),
    repeating-linear-gradient(
      0deg,
      rgba(107, 45, 107, 0.025) 0px,
      rgba(107, 45, 107, 0.025) 1px,
      transparent 1px,
      transparent 28px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(107, 45, 107, 0.025) 0px,
      rgba(107, 45, 107, 0.025) 1px,
      transparent 1px,
      transparent 28px
    );
}

/* Random block: Day timeline */
.timeline-banner {
  width: 100%;
  background: var(--dark-color);
  padding: 3.5rem 0;
}
.timeline-track {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline-track::before {
  content: '';
  position: absolute;
  left: 90px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(160, 90, 160, 0.35);
}
.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.4rem 0;
  position: relative;
}
.timeline-time {
  min-width: 80px;
  text-align: right;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent-color);
  padding-top: 3px;
  font-family: var(--main-font);
}
.timeline-dot {
  position: relative;
  z-index: 1;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-color);
  margin-top: 5px;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(160, 90, 160, 0.2);
}
.timeline-dot.highlight {
  background: var(--highlight-color);
  box-shadow: 0 0 0 4px rgba(192, 122, 48, 0.25);
}
.timeline-body {
  flex: 1;
}
.timeline-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.3rem;
  font-family: var(--main-font);
}
.timeline-body p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
}
.timeline-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.15rem 0.6rem;
  border-radius: 10px;
  margin-left: 0.5rem;
  vertical-align: middle;
}
.badge-tip {
  background: rgba(192, 122, 48, 0.25);
  color: #f0c070;
  border: 1px solid rgba(192,122,48,0.4);
}

/* Contact */
.contact-inner { width: 80%; margin: 0 auto; }

/* Responsive */
* { box-sizing: border-box; }
body { overflow-x: hidden; }
.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 2rem;
}

@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: 1.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 2rem; }
  .feature-card, .testimonial, .faq-item {
    margin: 0.8rem 0;
    padding: 1.8rem 1.4rem;
    max-width: 100%;
    word-wrap: break-word;
  }
  .timeline-track::before { left: 76px; }
  .timeline-time { min-width: 66px; font-size: 0.8rem; }
  .contact-inner { width: 100%; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; line-height: 1.2; padding: 0 0.5rem; }
  .hero p { font-size: 1rem; padding: 0 0.5rem; }
  .feature-card, .testimonial, .faq-item { padding: 1.4rem 1rem; }
  .container { padding: 0 0.5rem; }
  input, textarea { font-size: 16px; padding: 1rem; }
  .btn { padding: 1rem 2rem; font-size: 0.95rem; }
  .timeline-track::before { display: none; }
  .timeline-item { flex-direction: column; gap: 0.5rem; padding: 1rem 0; }
  .timeline-time { text-align: left; }
}