:root {
  --dark: #041a3a;
  --dark-2: #0b2f5c;
  --light: #f3f4f6;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #0b1f3a;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: white;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.logo {
  font-weight: 800;
  letter-spacing: 0.04em;
}

.logo span {
  font-weight: 400;
  font-style: italic;
}

.hero h1 {
  font-size: 56px;
  line-height: 1.1;
  margin: 32px 0;
}

.name {
  font-weight: 600;
}

.role {
  opacity: 0.8;
  margin-bottom: 32px;
}

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: white;
  color: #000;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
}

.hero-image,
.cta-image {
  position: relative;
}

.star {
  position: absolute;
  top: 15%;
  right: -40px;
  font-size: 80px;
  color: white;
}

/* INTRO */
.intro {
  background: var(--light);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro h2 {
  font-size: 32px;
}

/* SERVICES */
.services {
  background: var(--dark);
  color: white;
  text-align: center;
}

.section-title {
  font-size: 36px;
  margin-bottom: 60px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.card {
  background: #0d2f5c;
  padding: 32px;
  border-radius: 16px;
  text-align: left;
}

.card h3 {
  margin-top: 24px;
}

.services-footnote {
  margin-top: 48px;
  opacity: 0.7;
}

/* TESTIMONIALS */
.testimonials {
  background: var(--light);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial {
  background: white;
  padding: 32px;
  border-radius: 16px;
}

.stars {
  color: #f5a623;
}

.author {
  display: block;
  margin-top: 12px;
  opacity: 0.7;
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: white;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.btn-secondary {
  display: inline-block;
  margin: 24px 0;
  padding: 14px 32px;
  border: 2px solid white;
  border-radius: 40px;
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.contact-details p {
  margin-top: 16px;
}

/* FOOTER */
.footer {
  background: #02122c;
  color: white;
  text-align: center;
  padding: 24px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid,
  .intro-grid,
  .service-grid,
  .testimonial-grid,
  .cta-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .star {
    display: none;
  }

  .hero h1 {
    font-size: 44px;
  }
}