/* General Styles */
body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f7f9fb;
  color: #222;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  background: #10151a;
  color: #fff;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  box-shadow: 0 2px 12px rgba(44, 62, 80, 0.07);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  margin-right: 32px;
}

nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

nav a,
.nav-dropbtn {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 10px 16px;
  border-radius: 4px;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

nav a:hover,
nav a:focus,
.nav-dropbtn:hover,
.nav-dropbtn:focus {
  background: #222c36;
  color: #7fffd4;
}

.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-caret {
  font-size: 0.8em;
  margin-left: 4px;
}

.nav-dropdown-content {
  display: none;
  position: absolute;
  left: 0;
  top: 110%;
  min-width: 220px;
  background: #0d1a2b;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(25, 118, 210, 0.13);
  z-index: 200;
  padding: 12px 0;
  flex-direction: column;
  gap: 0;
  animation: fadeIn 0.18s;
}

.nav-dropdown:hover .nav-dropdown-content,
.nav-dropdown:focus-within .nav-dropdown-content {
  display: flex;
}

.nav-dropdown-content a {
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  border-radius: 0;
  background: none;
  transition: background 0.18s, color 0.18s;
  font-weight: 500;
}

.nav-dropdown-content a:hover,
.nav-dropdown-content a:focus {
  background: #1976d2;
  color: #7fffd4;
}

.nav-icon {
  font-size: 1.3em;
  margin-right: 6px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px);}
  to { opacity: 1; transform: translateY(0);}
}

main {
  flex: 1;
  padding: 0;
  max-width: 100vw;
  margin: 0;
}

.hero {
  background: linear-gradient(90deg, #e3f0ff 0%, #f7f9fb 100%);
  padding: 80px 0 60px 0;
  text-align: center;
  box-shadow: 0 2px 12px rgba(44, 62, 80, 0.04);
}

.hero-dark {
  background: radial-gradient(ellipse at 60% 40%, #1a232b 60%, #10151a 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-dark::after {
  content: "";
  position: absolute;
  left: 0; top: 0; width: 100%; height: 100%;
  background: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" viewBox="0 0 1440 320" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="white" fill-opacity="0.03" d="M0,160L60,170.7C120,181,240,203,360,197.3C480,192,600,160,720,133.3C840,107,960,85,1080,101.3C1200,117,1320,171,1380,197.3L1440,224L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z"></path></svg>');
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-block;
  color: #7fffd4;
  background: rgba(127,255,212,0.08);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  border-radius: 6px;
  padding: 6px 18px;
  margin-bottom: 28px;
  margin-top: 8px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #e0e6ed;
  margin-bottom: 38px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-bottom: 8px;
}

.cta-button {
  display: inline-block;
  background: #1976d2;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 32px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.10);
  transition: background 0.2s, transform 0.2s, color 0.2s, border 0.2s;
  border: none;
  outline: none;
  cursor: pointer;
}

.cta-mint {
  background: #7fffd4;
  color: #10151a;
}

.cta-mint:hover,
.cta-mint:focus {
  background: #5ee6b7;
  color: #10151a;
  transform: translateY(-2px) scale(1.03);
}

.cta-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.cta-outline:hover,
.cta-outline:focus {
  background: #fff;
  color: #1976d2;
  border: 2px solid #fff;
  transform: translateY(-2px) scale(1.03);
}

.highlights {
  background: #fff;
  padding: 56px 0 40px 0;
  text-align: center;
}

.highlights h2 {
  color: #1976d2;
  font-size: 2rem;
  margin-bottom: 36px;
  font-weight: 700;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin: 0 auto;
  max-width: 1100px;
}

.service-card {
  background: #f7f9fb;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(44, 62, 80, 0.06);
  padding: 32px 28px 28px 28px;
  width: 220px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover,
.service-card:focus-within {
  box-shadow: 0 6px 24px rgba(25, 118, 210, 0.13);
  transform: translateY(-4px) scale(1.03);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 18px;
}

.service-card h3 {
  color: #1976d2;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.service-card p {
  color: #333;
  font-size: 1rem;
  margin: 0;
}

.case-studies {
  background: #fff;
  padding: 56px 0 40px 0;
  text-align: center;
}

.case-studies h2 {
  color: #1976d2;
  font-size: 2rem;
  margin-bottom: 36px;
  font-weight: 700;
}

.case-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin: 0 auto;
  max-width: 1100px;
}

.case-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(44, 62, 80, 0.10);
  width: 340px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  text-align: left;
}

.case-card:hover,
.case-card:focus-within {
  box-shadow: 0 6px 24px rgba(25, 118, 210, 0.13);
  transform: translateY(-4px) scale(1.03);
}

.case-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.case-content {
  padding: 24px 22px 18px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.case-label {
  display: inline-block;
  color: #10151a;
  background: #e3f0ff;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  border-radius: 6px;
  padding: 5px 14px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.case-content h3 {
  font-size: 1.15rem;
  color: #222c36;
  font-weight: 600;
  margin-bottom: 18px;
  margin-top: 0;
}

.case-button {
  display: inline-block;
  background: #10151a;
  color: #7fffd4;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 32px;
  text-decoration: none;
  margin-top: auto;
  border: none;
  outline: none;
  transition: background 0.2s, color 0.2s;
}

.case-button:hover,
.case-button:focus {
  background: #7fffd4;
  color: #10151a;
}

/* Promise Section */
.promise-section {
  background: #fff;
  padding: 64px 0 48px 0;
  display: flex;
  justify-content: center;
}

.promise-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.promise-content > div:first-child {
  flex: 1 1 320px;
  min-width: 280px;
}

.promise-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222c36;
  margin-bottom: 18px;
}

.promise-content .accent {
  color: #1ec9a7;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 1px;
}

.promise-content p {
  font-size: 1.15rem;
  color: #333;
  margin-bottom: 0;
}

.promise-img-metrics {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  flex: 1 1 400px;
  min-width: 320px;
}

.promise-img {
  width: 320px;
  height: 180px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(44, 62, 80, 0.10);
}

.promise-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.metric-card {
  background: #f7f9fb;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.07);
  padding: 22px 28px;
  min-width: 120px;
  text-align: center;
  margin: 0 2px;
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 6px;
}

.metric-label {
  font-size: 1rem;
  color: #222c36;
}

/* How It Works Section */
.howitworks-section {
  background: #f7f9fb;
  padding: 64px 0 48px 0;
  text-align: center;
}

.howitworks-section h2 {
  color: #1976d2;
  font-size: 2rem;
  margin-bottom: 36px;
  font-weight: 700;
}

.howitworks-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.howitworks-step {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(44, 62, 80, 0.08);
  padding: 32px 24px 28px 24px;
  width: 220px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.howitworks-step:hover,
.howitworks-step:focus-within {
  box-shadow: 0 6px 24px rgba(25, 118, 210, 0.13);
  transform: translateY(-4px) scale(1.03);
}

.howitworks-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.howitworks-step h3 {
  color: #1976d2;
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.howitworks-step p {
  color: #333;
  font-size: 1rem;
  margin: 0;
}

/* Ameelo Advantage Section */
.advantage-section {
  background: #fff;
  padding: 64px 0 48px 0;
  text-align: center;
}

.advantage-section h2 {
  color: #1976d2;
  font-size: 2rem;
  margin-bottom: 36px;
  font-weight: 700;
}

.advantage-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.advantage-card {
  background: #f7f9fb;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(44, 62, 80, 0.08);
  padding: 32px 24px 28px 24px;
  width: 220px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.advantage-card:hover,
.advantage-card:focus-within {
  box-shadow: 0 6px 24px rgba(25, 118, 210, 0.13);
  transform: translateY(-4px) scale(1.03);
}

.advantage-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.advantage-card h3 {
  color: #1976d2;
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.advantage-card p {
  color: #333;
  font-size: 1rem;
  margin: 0;
}

footer {
  background: #2d3e50;
  color: #fff;
  text-align: center;
  padding: 18px 0;
  font-size: 1rem;
  margin-top: 40px;
}

@media (max-width: 1200px) {
  .promise-content {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }
  .promise-img-metrics {
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  .service-cards {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .service-card {
    width: 90vw;
    max-width: 350px;
  }
  .case-cards {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .case-card {
    width: 90vw;
    max-width: 400px;
  }
  .howitworks-steps,
  .advantage-cards,
  .promise-metrics {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
}

@media (max-width: 700px) {
  header {
    flex-direction: column;
    height: auto;
    padding: 16px;
    gap: 12px;
  }
  .hero {
    padding: 48px 0 32px 0;
  }
  .highlights {
    padding: 32px 0 24px 0;
  }
  .case-studies {
    padding: 32px 0 24px 0;
  }
  .promise-section,
  .howitworks-section,
  .advantage-section {
    padding: 32px 0 24px 0;
  }
}
