@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&family=Fraunces:wght@600;700;800;900&display=swap');

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

:root {
  --teal:      #14b8a6;
  --teal-dark: #0d9488;
  --orange:    #fb923c;
  --orange-dark:#f97316;
  --purple:    #a855f7;
  --pink:      #ec4899;
  --slate:     #1e293b;
  --slate-light:#334155;
  --white:     #ffffff;
  --gray-50:   #f8fafc;
  --gray-100:  #f1f5f9;
  --gray-400:  #94a3b8;
  --gray-600:  #475569;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--gray-50);
  color: var(--slate);
  font-size: 16px;
  line-height: 1.7;
}
h1,h2,h3,h4 { font-family: 'Fraunces', serif; line-height: 1.25; color: var(--slate); }
a { text-decoration: none; color: inherit; }

.nav {
  background: var(--white);
  border-bottom: 2px solid var(--gray-100);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--orange) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.logo-text {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--slate);
}
.menu { display: flex; gap: 2rem; }
.menu a { font-weight: 600; font-size: 0.95rem; color: var(--gray-600); transition: color 0.2s; }
.menu a:hover, .menu a.active { color: var(--teal); }
.nav-btn {
  background: var(--teal);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-btn:hover { background: var(--teal-dark); }

.hero {
  background: linear-gradient(135deg, var(--slate) 0%, var(--slate-light) 100%);
  color: var(--white);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(20,184,166,0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(251,146,60,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero-tag {
  display: inline-block;
  background: rgba(20,184,166,0.2);
  border: 1px solid rgba(20,184,166,0.4);
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 1.25rem;
  color: var(--white);
}
.hero h1 .grad {
  background: linear-gradient(135deg, var(--teal) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-text {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
  max-width: 750px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-hero {
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 36px;
  border-radius: 8px;
  transition: all 0.2s;
}
.btn-hero:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 32px;
  border-radius: 8px;
  transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--teal); }

.section { padding: 5rem 2rem; }
.section.white { background: var(--white); }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-top {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}
.section-label {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 1.25rem;
}
.section-desc { font-size: 1.1rem; color: var(--gray-600); line-height: 1.8; }

.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.box {
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  transition: all 0.3s;
}
.box:hover { border-color: var(--teal); transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,0.08); }
.box-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--orange) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.box h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.85rem; }
.box p { font-size: 0.95rem; color: var(--gray-600); line-height: 1.75; }

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: 12px;
  overflow: hidden;
  margin: 2.5rem 0;
}
.data-table thead { background: var(--gray-100); }
.data-table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--slate);
  border-bottom: 2px solid var(--gray-100);
}
.data-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.95rem;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover { background: var(--gray-50); }

.cta-block {
  background: linear-gradient(135deg, var(--teal) 0%, var(--orange) 100%);
  color: var(--white);
  border-radius: 16px;
  padding: 4rem 3rem;
  text-align: center;
  margin-top: 4rem;
}
.cta-block h2 { color: var(--white); font-size: 2.8rem; margin-bottom: 1rem; }
.cta-block p { font-size: 1.2rem; opacity: 0.95; margin-bottom: 2.5rem; }
.cta-block .btn-hero { background: var(--white); color: var(--teal); }
.cta-block .btn-hero:hover { background: var(--gray-50); }

.footer {
  background: var(--slate);
  color: rgba(255,255,255,0.8);
  padding: 4rem 2rem 2.5rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-about p { font-size: 0.95rem; margin-top: 1.5rem; line-height: 1.8; }
.footer-col h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul li a { font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--teal); }
.footer-legal {
  padding-top: 2.5rem;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

.page-top {
  background: var(--white);
  border-bottom: 2px solid var(--gray-100);
  padding: 4rem 2rem;
  text-align: center;
}
.page-top h1 { font-size: clamp(2.5rem, 4.5vw, 4rem); margin-bottom: 1rem; }
.page-top p { font-size: 1.2rem; color: var(--gray-600); }

@media (max-width: 1024px) {
  .grid3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .menu { display: none; }
  .grid3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
