html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #111;
  line-height: 1.8;
  letter-spacing: 0.01em;
}

h1, h2, h3 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

p {
  font-size: 1.05rem;
  max-width: 65ch;
}

section {
  padding: 7rem 2rem;
}

.navbar {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  z-index: 100;
  border-bottom: 1px solid #eee;
}

.nav-links a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff2f7d;
  transition: width .3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.navbar {
  display: flex;
  justify-content: space-between;
  padding: 1.2rem 2rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

.hero {
  max-width: 100%;
  margin: auto;
  padding-top: 8rem;
}

.hero-sub {
  font-size: 1.15rem;
  color: #444;
}

.highlight::after {
  height: 10px;
  opacity: 0.85;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.service-item {
  background: white;
  padding: 2.5rem;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  transition: transform .3s ease;
}

.service-item:hover {
  transform: translateY(-6px);
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section {
  animation: fadeUp 0.8s ease both;
}

.cta-btn {
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: transform .2s ease, box-shadow .2s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

input, textarea {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
}

input:focus, textarea:focus {
  outline: 2px solid #ff2f7d;
}


.hero {
  text-align: center;
  padding: 6rem 2rem 4rem;
}

.highlight {
  color: #ff2f7d;
  position: relative;
}

.highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 6px;
  background: #ffd400;
  z-index: -1;
}

.underline {
  height: 8px;
  background: #ffd400;
  margin: 1.2rem auto;
  border-radius: 20px;
  width: 0;
  animation: drawLine 1.2s forwards;
}

@keyframes drawLine {
  to { width: 180px; }
}

.hero-sub {
  max-width: 600px;
  margin: 1.5rem auto;
}

.cta-btn {
  background: #ff2f7d;
  color: white;
  padding: .9rem 1.8rem;
  border-radius: 30px;
  display: inline-block;
}

.arrow-down {
  width: 28px;
  height: 28px;
  border-left: 4px solid #ffd400;
  border-bottom: 4px solid #ffd400;
  transform: rotate(-45deg);
  margin: 3rem auto 0;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  50% { transform: translateY(10px) rotate(-45deg); }
}

.proof {
  background: #f5f5f5;
  padding: 1.5rem;
  text-align: center;
}

.problem {
  background: #081d63;
  color: white;
  padding: 5rem 2rem;
}

.problem span { color: #38e1d9; }

.problem-inner {
  max-width: 800px;
  margin: auto;
}

.philosophy {
  padding: 5rem 2rem;
}

.philosophy-grid {
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.philosophy-box {
  border: 3px solid #ffd400;
  padding: 2rem;
}

.services-pro {
  background: #fff5f8;
  padding: 5rem 2rem;
}

.services-list {
  max-width: 900px;
  margin: auto;
}

.service-item span {
  color: #ff2f7d;
  font-weight: bold;
}

.process-pro {
  padding: 5rem 2rem;
}

.timeline {
  max-width: 800px;
  margin: auto;
  border-left: 3px solid #ffd400;
  padding-left: 2rem;
}

.cta-break {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(135deg,#ff2f7d,#ff9bbd);
  color: white;
}

.contact {
  background: #111;
  color: white;
  padding: 5rem 2rem;
  text-align: center;
}

form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, textarea, button {
  padding: .9rem;
  border-radius: 8px;
  border: none;
}

footer {
  text-align: center;
  padding: 1.5rem;
  font-size: .9rem;
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; }
  .hamburger { display: block; }
  .philosophy-grid { grid-template-columns: 1fr; }
}

.services-pro {
  background: #fff5f8;
  text-align: center;
}

.services-pro h2 {
  margin-bottom: 4rem;
}

.services-list {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.service-item {
  background: white;
  padding: 3rem 2.5rem;
  border-radius: 22px;
  text-align: left;
  box-shadow: 0 25px 60px rgba(0,0,0,0.06);
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease;
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 80px rgba(0,0,0,0.1);
}

.service-number {
  font-size: 3rem;
  font-family: 'DM Serif Display', serif;
  color: rgba(255,47,125,0.15);
  position: absolute;
  top: 2rem;
  right: 2rem;
}

.service-item h3 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.service-item p {
  margin-bottom: 2rem;
  color: #444;
}

.service-btn {
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
  color: #ff2f7d;
  border-bottom: 2px solid transparent;
  transition: all .25s ease;
}

.service-btn:hover {
  border-color: #ff2f7d;
  transform: translateX(4px);
}

.process-pro {
  background: #fff;
}

.process-pro h2 {
  text-align: center;
  margin-bottom: 5rem;
}

.process-timeline {
  max-width: 900px;
  margin: auto;
  position: relative;
  padding-left: 3rem;
}

/* vertical line */
.process-timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    #ffd400,
    transparent
  );
}

.process-step {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 4rem;
  position: relative;
}

.step-number {
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem;
  color: #ff2f7d;
  min-width: 60px;
  line-height: 1;
  position: relative;
}

/* dot on timeline */
.step-number::before {
  content: '';
  position: absolute;
  left: -38px;
  top: 12px;
  width: 14px;
  height: 14px;
  background: #ffd400;
  border-radius: 50%;
}

.step-content h3 {
  margin-bottom: .5rem;
}

.step-content p {
  color: #444;
  max-width: 520px;
}

/* subtle interaction */
.process-step:hover .step-number {
  transform: translateX(4px);
  transition: transform .3s ease;
}

/* CTA BREAK */
.cta-break {
  background: linear-gradient(135deg, #ff2f7d, #ff9bbd);
  color: white;
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}

.cta-break::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  top: -200px;
  right: -200px;
}

.cta-inner {
  max-width: 700px;
  margin: auto;
  text-align: center;
  position: relative;
}

.cta-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: .75rem;
  opacity: .9;
}

.cta-break h2 {
  margin: 1rem 0 2.5rem;
}

/* CONTACT */
.contact {
  background: #0e0e0e;
  color: white;
}

.contact-inner {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: .75rem;
  opacity: .6;
}

.contact-lead {
  max-width: 420px;
  margin: 1.5rem 0 3rem;
  color: #ccc;
}

.address {
  font-size: .9rem;
  color: #888;
}

/* FORM */
.contact-form input,
.contact-form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid #444;
  color: white;
  padding: .9rem 0;
  font-size: 1rem;
}

.contact-form textarea {
  min-height: 120px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #777;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ff2f7d;
}

.contact-form button {
  margin-top: 2rem;
  align-self: flex-start;
  background: #ff2f7d;
  color: white;
  padding: .9rem 2.2rem;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255,47,125,0.4);
}

/* FOOTER */
.site-footer {
  background: #0e0e0e;
  color: #666;
  text-align: center;
  padding: 2rem;
  font-size: .85rem;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .contact-form button {
    width: 100%;
    text-align: center;
  }
}

.philosophy {
  background: #fff;
  padding: 8rem 2rem;
}

.philosophy-inner {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: center;
}

.philosophy-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: .75rem;
  color: #888;
  margin-bottom: 1.5rem;
}

.philosophy-copy h2 {
  margin-bottom: 1.8rem;
}

.philosophy-copy .emphasis {
  position: relative;
  display: inline-block;
}

.philosophy-copy .emphasis::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 10px;
  background: #ffd400;
  z-index: -1;
}

.philosophy-lead {
  font-size: 1.15rem;
  color: #444;
  max-width: 480px;
}

/* Manifesto block (not a card) */
.philosophy-manifesto {
  position: relative;
  padding-left: 3rem;
}

.philosophy-manifesto::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    #ff2f7d,
    transparent
  );
}

.philosophy-manifesto p {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  line-height: 1.4;
}

.philosophy-manifesto span {
  color: #ff2f7d;
}

/* subtle motion */
.philosophy-manifesto p {
  animation: fadeUp 0.8s ease both;
}

/* MOBILE */
@media (max-width: 768px) {
  .philosophy-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .philosophy-manifesto {
    padding-left: 2rem;
  }
}

.problem {
  background: #081d63;
  color: white;
  padding: 9rem 2rem;
  position: relative;
  overflow: hidden;
}

/* subtle background accent */
.problem::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(56,225,217,0.15);
  border-radius: 50%;
  top: -200px;
  left: -200px;
}

.problem-inner {
  max-width: 800px;
  margin: auto;
  position: relative;
}

.problem-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: .75rem;
  opacity: .7;
  margin-bottom: 1.5rem;
}

.problem h2 {
  margin-bottom: 2.5rem;
}

.problem-highlight {
  position: relative;
  display: inline-block;
  color: #38e1d9;
}

.problem-highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 10px;
  background: rgba(255,212,0,0.8);
  z-index: -1;
}

.problem-lead {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  max-width: 600px;
  opacity: .95;
}

.problem-body p {
  color: #d9e0ff;
  margin-bottom: 1.8rem;
}

.problem-bold {
  font-weight: 600;
  color: white;
}

/* subtle entrance */
.problem-inner {
  animation: fadeUp 0.9s ease both;
}

/* MOBILE */
@media (max-width: 768px) {
  .problem {
    padding: 7rem 2rem;
  }

  .problem-lead {
    font-size: 1.15rem;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 5rem;
  background: linear-gradient(
    135deg,
    #fff5f8 0%,
    #ffffff 50%,
    #f4f7ff 100%
  );
  overflow: hidden;
}

/* soft floating shapes */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
}

.hero::before {
  width: 420px;
  height: 420px;
  background: #ff9bbd;
  top: -150px;
  left: -150px;
}

.hero::after {
  width: 480px;
  height: 480px;
  background: #38e1d9;
  bottom: -200px;
  right: -200px;
}

.hero-inner {
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.2rem;
  color: #444;
  margin: 2rem auto 3rem;
  max-width: 620px;
}

/* underline animation refinement */
.underline {
  height: 10px;
  background: #ffd400;
  margin: 1.5rem auto;
  border-radius: 30px;
  width: 0;
  animation: drawLine 1.3s ease forwards;
}

/* CTA */
.cta-btn {
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform .25s ease, box-shadow .25s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(255,47,125,0.35);
}

/* arrow */
.arrow-down {
  margin-top: 4rem;
  opacity: 0.8;
}

/* subtle fade-in */
.hero-inner {
  animation: fadeUp 1s ease both;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-top: 7rem;
  }
}

.form-message {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #ff2f7d;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-size: .95rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all .4s ease;
  z-index: 999;
}

.form-message.show {
  opacity: 1;
  transform: translateY(0);
}
/* FAQ Section */
.faq-section {
  background: #fff;
  color: #111;
  padding: 7rem 2rem;
}

.faq-inner {
  max-width: 900px;
  margin: auto;
}

.faq-inner h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.faq-item {
  border-bottom: 1px solid #eee;
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 12px;
  background: #fafafa;
  box-shadow: 0 8px 20px rgba(0,0,0,0.03);
  transition: transform 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-toggle {
  font-size: 1.5rem;
  color: #ff2f7d;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.5rem;
  font-size: 1rem;
  color: #444;
}

.faq-item.active .faq-answer {
  max-height: 200px; /* enough for a paragraph */
  padding: 1rem 1.5rem 1.5rem;
}
