@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --deep-blue: #0A3D8C;
  --fuchsia: #E91E63;
  --white: #FFFFFF;
  --light-gray: #F2F4F7;
  --ink: #111827;
  --soft-border: #D9DEE7;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

header {
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--soft-border);
  position: relative;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--deep-blue);
  letter-spacing: -1px;
}

nav {
  display: flex;
  gap: 40px;
}

nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--fuchsia);
  transition: width 0.3s;
}

nav a:hover::after {
  width: 100%;
}

.hero {
  padding: 140px 0 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(233, 30, 99, 0.05);
  z-index: -1;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--deep-blue);
}

.hero-text h1 .highlight {
  color: var(--fuchsia);
}

.hero-text p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 32px;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 420px;
  flex-direction: column;
}

.hero-visual-top {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 12px;
  text-align: center;
  letter-spacing: -0.5px;
  max-width: 280px;
}

.hero-visual-svg-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 20px;
  min-height: 100px;
}

.hero-visual svg {
  width: 100%;
  height: auto;
  max-width: 380px;
}

.hero-visual-bottom {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  margin-top: 12px;
  text-align: center;
  letter-spacing: -0.3px;
  line-height: 1.7;
  max-width: 300px;
}

.cta-button {
  display: inline-block;
  padding: 16px 36px;
  background: var(--deep-blue);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--deep-blue);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.cta-button:hover {
  background: var(--white);
  color: var(--deep-blue);
  transform: translateY(-2px);
}

.divider {
  height: 120px;
  display: flex;
  align-items: center;
  position: relative;
}

.divider::before {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--soft-border) 20%, var(--soft-border) 80%, transparent);
}

.problem,
.solution {
  padding: 100px 0;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.problem h2,
.solution h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--deep-blue);
  margin-bottom: 24px;
}

.problem-content p,
.solution-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.problem ul {
  padding-left: 24px;
  margin-top: 24px;
}

.problem li {
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.7;
}

.problem-visual,
.solution-visual {
  background: var(--light-gray);
  padding: 60px;
  border-radius: 8px;
  border-left: 4px solid var(--fuchsia);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--ink);
  text-align: center;
}

.solutions-section {
  padding: 120px 0;
  position: relative;
}

.solutions-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 80px;
  color: var(--deep-blue);
}

.solutions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  grid-auto-rows: auto;
}

.solution-card {
  padding: 40px;
  background: var(--white);
  border: 2px solid var(--soft-border);
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0%;
  background: var(--fuchsia);
  transition: height 0.3s ease;
}

.solution-card:hover {
  border-color: var(--fuchsia);
  transform: translateY(-8px);
}

.solution-card:hover::before {
  height: 100%;
}

.solution-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 16px;
}

.solution-card p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
  color: var(--ink);
}

.solution-card strong {
  color: var(--fuchsia);
}

.process-section {
  padding: 120px 60px;
  background: linear-gradient(135deg, rgba(10, 61, 140, 0.02) 0%, rgba(233, 30, 99, 0.02) 100%);
  border-radius: 8px;
  margin: 80px 0;
}

.process-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 80px;
  color: var(--deep-blue);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.step {
  padding: 32px 24px;
  background: var(--white);
  border: 2px solid var(--deep-blue);
  border-radius: 6px;
  text-align: center;
  position: relative;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--fuchsia);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
}

.step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.step p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink);
}

.about-section {
  padding: 120px 60px;
  background: var(--deep-blue);
  color: var(--white);
  border-radius: 8px;
  margin: 80px 0;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(233, 30, 99, 0.1);
  z-index: 0;
}

.about-content {
  position: relative;
  z-index: 1;
}

.about-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--fuchsia);
  line-height: 1.3;
}

.about-section p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-section strong {
  font-weight: 600;
}

.cta-section {
  padding: 100px 0;
  text-align: center;
}

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--deep-blue);
}

.cta-section p {
  font-size: 17px;
  margin-bottom: 40px;
  color: var(--ink);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

footer {
  padding: 40px 0;
  border-top: 2px solid var(--soft-border);
  text-align: center;
  color: var(--ink);
  font-size: 13px;
}

/* Responsive */
@media (max-width: 900px) {
  .container {
    padding: 0 32px;
  }

  .hero,
  .problem,
  .solution {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero {
    padding: 80px 0 60px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  header {
    flex-direction: column;
    gap: 24px;
  }

  nav {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
}
