@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;700&display=swap');

html {
  box-sizing: border-box;
  font-size: 16px;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
body {
  font-family: 'Syne', Arial, sans-serif;
  margin: 0;
  color: #111;
  background: #fff;
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}

/* Container */
.container {
  width: 92%;
  max-width: 1100px;
  margin: 30px auto;
}

/* Header */
header {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}
.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.logo small {
  display: block;
  font-size: 0.8rem;
  color: #888;
  font-weight: 400;
  margin-top: 2px;
  letter-spacing: 0.5px;
}
nav {
  position: relative;
}
.nav-toggle {
  display: inline-block;
  background: none;
  border: none;
  font-size: 2rem;
  color: #111;
  cursor: pointer;
  margin-top: 2px;
}
.nav-list {
  display: none;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  position: absolute;
  right: 0;
  top: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 18px 28px;
  border-radius: 8px;
  z-index: 10;
}
.nav-list.open {
  display: flex;
  width: 300px;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav a {
  font-weight: 500;
  font-size: 1rem;
  color: #111;
  transition: color 0.2s;
}
nav a:hover {
  color: #7c6ee6;
}
@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }
  .nav-list {
    display: flex !important;
    position: static;
    flex-direction: row;
    gap: 32px;
    background: none;
    box-shadow: none;
    padding: 0;
  }
}

/* Hero */
.hero {
  background: #f6f5ee;
  padding: 48px 0 32px 0;
  text-align: center;
}
.hero-logo {
  max-width: 700px;
  width: 100%;
  margin: 0 auto 18px auto;
  display: block;
}
.hero-subtitle {
  display: inline-block;
  background: #7c6ee6;
  color: #fff;
  padding: 10px 32px;
  border-radius: 8px;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 18px;
  margin-top: 0;
  letter-spacing: 0.2px;
}
.hero .cta-btn {
  margin-top: 28px;
}

/* Section spacing */
main > section {
  margin: 56px 0;
}
@media (min-width: 900px) {
  main > section {
    margin: 72px 0;
  }
}

/* Headings */
h2,
h3 {
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
  color: #111;
}
h2 {
  font-size: 2rem;
  margin-top: 50px;
  text-align: center;
}
h3 {
  font-size: 1.25rem;
  margin-top: 0;
}

/* Intro */
.intro {
  margin-top: 0;
}
.intro-flex {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
.intro-left ul {
  margin: 18px 0 0 0;
  padding-left: 0;
  list-style: none;
}
.intro-left ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 1rem;
}
.intro-left ul li:before {
  content: '✔';
  color: #7c6ee6;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.1em;
}

.intro-right li {
  padding: 5px 0;
}
.intro-right ul {
  list-style-type: none;
}
@media (min-width: 900px) {
  .intro-flex {
    flex-direction: row;
    gap: 56px;
  }
  .intro-left {
    flex: 2;
  }
  .intro-right {
    flex: 1;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }
}

/* CTA Button */
.cta-btn {
  background: #111;
  color: #fff;
  border: none;
  padding: 24px 36px;
  border-radius: 6px;
  font-size: 1.1rem;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
  margin-top: 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  letter-spacing: 0.2px;
  width: 100%;
  max-width: 500px;
  display: block;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #7c6ee6;
  color: #fff;
}

/* Identify */
.identify h3 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1px;
}
.identify ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 18px 0;
}
.identify ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}
.identify ul li:before {
  content: '✔️';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1em;
}
.identify {
  margin-top: 50px;
}
.identify p {
  font-size: 1rem;
  color: #444;
}

/* What we do */
.what-we-do strong {
  display: block;
  margin-top: 18px;
  margin-bottom: 6px;
  color: #111;
  font-weight: 600;
}
.what-we-do ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 12px 0;
}
.what-we-do ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 1rem;
}
.what-we-do ul li:before {
  content: '•';
  color: #7c6ee6;
  font-size: 1.2em;
  position: absolute;
  left: 0;
  top: 0;
}

/* How it works */
.how-it-works ol {
  padding-left: 22px;
  margin-bottom: 18px;
}
.how-it-works li {
  margin-bottom: 10px;
  font-size: 1rem;
}

/* Testimonials */
.testimonials {
  margin-top: 80px;
}
.testimonials h3 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 32px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
.testimonial {
  background: #ffd6d6;
  border-radius: 18px;
  padding: 32px 24px 24px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-height: 220px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  position: relative;
}
.testimonial-img {
  width: 72px;
  height: 72px;
  background: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  margin-top: 6px;
}
.testimonial-content strong {
  font-size: 1.1em;
  font-weight: 700;
  color: #111;
}
.testimonial-content span {
  display: block;
  font-size: 0.95em;
  color: #7c6ee6;
  margin-bottom: 8px;
  font-weight: 500;
}
.testimonial-content p {
  font-size: 1rem;
  color: #222;
  margin: 0;
}

/* Brands */
.brands {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin: 40px 0 0 0;
  align-items: center;
  background-color: #000;
  padding: 30px 0;
  margin-bottom: 50px;
}
.brands img {
  max-height: 200px;
  width: auto;
  filter: grayscale(1) contrast(1.1);
  opacity: 0.85;
}

/* Is for you */
.is-for-you {
  margin: 100px auto;
}
.is-for-you h3 {
  text-align: center;
  font-size: 1.2rem;
}
.is-for-you ul {
  list-style: none;
  padding-left: 0;
  text-align: center;
  max-width: 60%;
  margin: 0 auto;
}
.is-for-you ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  display: block;
  text-align: left;
}
.is-for-you ul li:before {
  content: '✅';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1em;
}
.is-for-you.cta-btn {
  margin: 24px auto 0 auto;
}

/* Gallery */
.gallery {
  margin-bottom: 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin: 64px 0;
}
.gallery-item {
  background: #f6f5ee;
  border-radius: 24px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.gallery-item img {
  width: 400px;
  max-width: 100%;
  border-radius: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.gallery .cta-btn {
  margin: 80px auto;
}
@media (min-width: 700px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (min-width: 1100px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
}
.disclaimer {
  color: #e85d5d;
  font-size: 1.05em;
  margin-top: 18px;
  text-align: center;
  font-weight: 500;
}

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

/* Footer */
footer {
  background: #fff;
  border-top: 1px solid #e5e5e5;
  padding: 32px 0 24px 0;
  text-align: center;
  color: #888;
  font-size: 1rem;
  margin-top: 56px;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .about-me.container {
    padding: 0 20px;
  }

  .about-me .cta-btn {
    max-width: 80%;
  }
  .testimonial {
    flex-direction: column;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
  .hero-logo {
    max-width: 90vw;
  }
  .brands {
    gap: 18px;
  }
  .gallery-item img {
    width: 100%;
    border-radius: 18px;
  }

  .brands img {
    max-width: 80px;
  }
  .is-for-you ul {
    max-width: 100%;
  }
}

.about-me {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 100%;
}
.about-me-flex {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-direction: column;
  justify-content: center;
}
.about-me-img {
  flex-shrink: 0;
  margin-bottom: 18px;
  display: flex;
  justify-content: center;
}
.about-me-content {
  font-size: 1.1rem;
  color: #333;
  max-width: 600px;
  text-align: center;
}

.footer.btn.whatsapp {
  background: #25d366;
  padding: 20px;
  border-radius: 20px;
  color: #fff;
  display: inline-block;
}

@media (min-width: 700px) {
  .about-me-flex {
    flex-direction: row;
    justify-content: center;
  }
  .about-me-img {
    margin-bottom: 0;
  }
  .about-me-content {
    text-align: left;
  }
}
