body {
  font-family: "Inter", sans-serif;
  margin: 0;
  background: #f5f7fa;
  color: #0b1f3b;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;

  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: #0b1f3b;
  color: white;

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

html {
  scroll-behavior: smooth;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
}

.hero {
  text-align: center;
  padding: 60px 20px 50px;
}

.hero h1 {
  font-size: 1.8rem;
  line-height: 1.15;
}

.hero p {
  max-width: 600px;
  margin: 20px auto;
}

.buttons button {
  margin: 10px;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
}

button:hover {
  transform: scale(1.05);
  transition: 0.2s;
}

.primary {
  background: #0b1f3b;
  color: white;
}

.secondary {
  background: #7b8da6;
  color: white;
}

:root{
  --accent: #c8a96b;
}

.section {
  max-width: 1100px;
  margin: auto;
  padding-top: 80px;
  padding-bottom: 40px;
}

.section {
  animation: fadeIn 0.8s ease;
}

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

.light {
  background: white;
}

.grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(280px, 1fr));

  gap: 30px;

  margin-top: 50px;
}

.card {
  background: white;

  padding: 32px;

  border-radius: 24px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);

  transition: all 0.3s ease;
}

#companies .card {
  transition: background 0.3s ease;
  text-align: left;
  padding: 28px;
}

#companies {
  padding-top: 40px;
}

#companies .card:hover {
  background: #f7f9fc;

  transform: translateY(-4px);

  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

#companies p {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.company-closing {
  max-width: 800px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(11,31,59,0.1);
}

#companies h2 {
  margin-bottom: 20px;
}

#companies .card h3 {
  color: #0b1f3b;
  margin-bottom: 18px;
  font-size: 1.5rem;
  text-align: left;
  line-height: 1.3;
}

.card h3 {
  border-left: 4px solid #c8a96b;
  padding-left: 12px;
}

#companies .card p {
  color: #4b5563;
  text-align: left;
}

#companies .grid {
  align-items: stretch;
}

#companies .card {
  height: 70%;
}

#companies .subtitle {
  font-size:1.4rem;
  font-weight: 500;
  color: #2f3f57;
  text-align: center;
  margin-bottom: 25px;
}

#companies p:not(.subtitle) {
  margin-bottom: 40px;
}


.section-divider {
  width: 80px;
  height: 4px;
  background: #7b8da6;
  margin: 30px auto 50px;
  border-radius: 10px;
}

footer {
  background: #0b1f3b;
  color: white;
  text-align: center;
  padding: 10px;
}

.credit {
  font-size: 12px;
  opacity: 0.7;
  margin-left: 5px;
}

.credit a {
  color: white;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.credit a:hover {
  opacity: 1;
}

#why {
  background: white;

  border-radius: 40px;

  max-width: 900px;

  margin: 80px auto;

  padding: 100px 60px;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);

  overflow: hidden;
}

.highlight {
  font-weight: 600;
  margin-top: 30px;
}

.section h2 {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 30px auto;
}

.section p {
  line-height: 1.8;
}

#mission {
  max-width: 900px;
  margin: 0 auto;
}

#mission h2 {
  color: #0b1f3b;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 25px;
}

#mission-statement {
  font-size: 2rem;
  font-weight: 500;
  color: #0b1f3b;
  line-height: 1.6;
  max-width: 850px;
  margin: 0 auto 50px;
  text-align: center;
}

#mission > p {
  line-height: 1.8;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

#mission .highlight {
  font-size: 1.4rem;
  font-weight: 600;
  color: #0b1f3b;
  max-width: 900px;
  margin: 90px auto 0;
  text-align: center;
  line-height: 1.6;
}


.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  max-width: 1200px;
  margin: 50px auto 70px;
}

.mission-card {
  background: white;
  padding: 35px;
  border-radius: 24px;
  border: 1px solid rgba(11, 31, 59, 0.08);
  box-shadow: 0 15px 40px rgba(11, 31, 59, 0.08);
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #0b1f3b;
  opacity: 0.08;
}

.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(11, 31, 59, 0.12);
}

.mission-card h3 {
  color: #0b1f3b;
  margin-bottom: 30px;
  font-size: 1.4rem;
  line-height: 1.2;
}

.mission-card p {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  line-height: 1.7;
}



.socials {
  margin-top: 10px;
}

.socials a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.8;
}


#professionals .highlight {
  margin-top: 60px;
}

.professional-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.3rem;
  color: #44516a;
  font-weight: 500;
}

.socials a:hover {
  opacity: 1;
}
#talent {
  text-align: center;
}

.talent-intro {
  max-width: 700px;
  margin: 0 auto 50px auto;
  line-height: 1.7;
}

.talent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.talent-card {
  background: white;

  padding: 28px;

  border-radius: 14px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

  transition: all 0.3s ease;

  max-width: 420px;

  margin: 0 auto;

  text-align: center;
}

.talent-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.talent-card h3 {
  margin-bottom: 20px;
}

.bio {
  margin-top: 20px;
  line-height: 1.6;
  color: #555;
}

.talent-btn {
  margin-top: 25px;

  background: #0b1f3b;
  color: white;

  border: none;
  padding: 12px 20px;

  border-radius: 8px;

  cursor: pointer;

  transition: 0.3s ease;
}

.talent-btn:hover {
  background: #10294d;
}

.talent-card p {
  margin: 10px 0;
  line-height: 1.5;
}

.bio {
  font-size: 15px;
  color: #555;
}

.modal {
  display: none;

  position: fixed;
  z-index: 2000;

  left: 0;
  top: 0;

  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background: white;

  width: 90%;
  max-width: 600px;

  max-height: 85vh;
  overflow-y: auto;

  margin: 3% auto;

  padding: 35px;

  border-radius: 14px;

  position: relative;
}

.close {
  position: absolute;

  top: 15px;
  right: 20px;

  font-size: 28px;

  cursor: pointer;
}

.modal form {
  display: flex;
  flex-direction: column;
}

.modal input,
.modal textarea {
  margin-bottom: 20px;

  padding: 14px;

  border: 1px solid #ccc;

  border-radius: 8px;

  font-family: inherit;
}

.modal textarea {
  min-height: 120px;
}

.modal button {
  background: #0b1f3b;
  color: white;

  border: none;

  padding: 14px;

  border-radius: 8px;

  cursor: pointer;
}

.talent-controls {
  display: flex;
  justify-content: center;
  gap: 20px;

  margin-bottom: 40px;

  flex-wrap: wrap;
}

.talent-controls input,
.talent-controls select {
  padding: 14px 18px;

  border: 1px solid #ddd;

  border-radius: 10px;

  min-width: 240px;

  font-family: inherit;

  font-size: 14px;
}

.modal select {
  margin-bottom: 20px;

  padding: 14px;

  border: 1px solid #ccc;

  border-radius: 8px;

  font-family: inherit;

  font-size: 16px;

  width: 100%;

  height: 55px;

  background: white;
}

.testimonial-intro {
  max-width: 900px;
  margin: 0 auto 40px auto;
  text-align: center;
  line-height: 1.8;
  font-size: 1.2rem;
}

.testimonial-slider {
  overflow: hidden;

  width: 100%;

  position: relative;

  padding: 40px 0;
}

.testimonial-track {
  display: flex;

  align-items: center;

  gap: 50px;

  width: max-content;

  animation: scrollTestimonials 45s linear infinite;
}

.testimonial-slider:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-card {
  display: flex;
  flex-direction: column;

  min-width: 420px;

  max-width: 420px;

  background: rgba(255, 255, 255, 0.75);

  backdrop-filter: blur(10px);

  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.4);

  padding: 40px;

  border-radius: 32px;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);

  transition: all 0.4s ease;

  transform: none;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

.testimonial-card p {
  flex-grow: 1;

  line-height: 1.9;

  color: #555;

  font-style: italic;

  margin-bottom: 25px;
}

.testimonial-card h4 {
  margin-top: auto;

  color: #0b1f3b;

  font-size: 15px;
}

@keyframes scrollTestimonials {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

#testimonials {
  background: linear-gradient(180deg, #eef1f5 0%, #f8fafc 100%);

  position: relative;

  overflow: hidden;
}
#testimonials::before {
  content: "";

  position: absolute;

  width: 500px;

  height: 500px;

  background: rgba(11, 31, 59, 0.04);

  border-radius: 50%;

  top: -200px;

  right: -100px;

  filter: blur(80px);
}
.testimonial-intro {
  text-align: center;

  max-width: 800px;

  margin: 0 auto 30px;

  line-height: 1.7;

  color: #555;
}

#candidates {
  padding-top: 60px;
  padding-bottom: 60px;
  border-radius: 40px;
  overflow: hidden;
  max-width: 1200px;
}

.content-narrow {
  max-width: 850px;
  margin: 0 auto;
}

.professionals-content {
  max-width: 750px;
  margin: 0 auto;
}

#about {
max-width: 1100px;
margin: 0 auto;
}

#about h2 {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 50px;
}

.founder-intro {
  font-size: 1.35rem;
  line-height: 1.7;
  color: #0b1f3b;
  margin-bottom: 35px;
}

.founder-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
  align-items: start;
}

.founder-photo img {
  width: 220px;
  max-width: 100%;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(11, 31, 59, 0.08);
}

.founder-content {
text-align: left;
}

.founder-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 12px;
  max-width: 650px;
}

.founder-highlight {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.6;
  color: #0b1f3b;
  line-height: 1.6;
  border-left: 4px solid #c8a96a;
  padding-left: 20px;
  margin-top: 30px;
}

.founder-signature {
  margin-top: 40px;
  font-size: 1rem;
  font-weight: 600;
  color: #44516a;
}

.founder-photo {
  text-align: center;
  max-width: 280px;
  margin: 0 auto;
}

.founder-name {
  margin-top: 25px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #0b1f3b;
}

.founder-title {
  color: #6b7280;
  font-size: 1rem;
  margin-top: 5px;
}

.founder-tagline {
  margin-top: 12px;
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.5;
}

#difference {
  max-width: 1100px;
  margin: 0 auto;
}

#difference h2 {
  text-align: center;
  color: #0b1f3b;
  margin-bottom: 25px;
}

#difference-statement {
  text-align: center;
  font-size: 1.4rem;
  color: #44516a;
  max-width: 800px;
  margin: 0 auto 60px;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.difference-card {
  background: white;
  padding: 35px;
  border-radius: 24px;
  border: 1px solid rgba(11,31,59,0.08);
  box-shadow: 0 10px 30px rgba(11,31,59,0.06);
  transition: all 0.3s ease;
}

.difference-card h3 {
  color: #0b1f3b;
  margin-bottom: 15px;
}

.difference-card p {
  margin: 0;
  line-height: 1.8;
}


#how-it-works {
  max-width: 1100px;
  margin: 0 auto;
}

#how-it-works h2 {
  text-align: center;
  color: #0b1f3b;
  margin-bottom: 25px;
}

#how-statement {
  text-align: center;
  font-size: 1.4rem;
  color: #44516a;
  max-width: 700px;
  margin: 0 auto 60px;
}

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

.step-card {
  background: white;
  padding: 35px;
  border-radius: 24px;
  border: 1px solid rgba(11,31,59,0.08);
  box-shadow: 0 10px 30px rgba(11,31,59,0.06);
  text-align: center;
  transition: all 0.3s ease;
}

.step-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #c5a15b;
  margin-bottom: 15px;
}

.step-card h3 {
  color: #0b1f3b;
  margin-bottom: 15px;
}

.hero-bridge {
  text-align: center;
  font-size: 1.15rem;
  font-weight: 700;
  color: #44516a;
  margin: 10px 0 40px;
}

.image-break {
  max-width: 1100px;
  margin: 50px auto 70px;
  padding: 0 20px;
}

.image-break img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(11, 31, 59, 0.15);
}

.cta-section {
  padding: 100px 20px;
}

.cta-content {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.cta-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(11, 31, 59, 0.12);
}

.cta-boxes {
  display: grid;
  gap: 20px;
  margin: 30px 0;
}

.cta-box {
  background: white;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(11, 31, 59, 0.06);
  transition: all 0.3s ease;
}

.cta-box h3 {
  margin-bottom: 10px;
  color: #0b1f3b;
}

.difference-card:hover,
.step-card:hover,
.cta-box:hover{
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(11,31,59,0.12);
}

.section-bridge {
  text-align: center;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0b1f3b;
  max-width: 700px;
  margin: 0 auto 30px;
}

.cta-button {
  display: inline-block;
  background: #0b1f3b;
  color: white;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  margin-top: 20px;
  transition: 0.3s;
}

.cta-button:hover {
  transform: translateY(-2px);
}

.cta-tagline {
  color: #6b7280;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.cta-text {
  padding-right: 20px;
}

.cta-text h2 {
  margin-bottom: 30px;
}

.difference-section {
  max-width: 1200px;
  margin: 120px auto;
  padding: 0 20px;
}

.difference-section h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2.4rem;
}

#difference-statement {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 1.3rem;
  color: #44516a;
}

#companies,
#professionals,
#difference,
#about,
#contact {
  scroll-margin-top: 140px;
}







/* MOBILE */
@media (max-width: 768px) {

  /* Header */

  header {
    flex-direction: column;
    padding: 15px;
    text-align: center;
  }

  .logo {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  nav a {
    margin: 0;
    font-size: 0.9rem;
  }

  .contact-nav {
    display: none;
  }

  /* Hero */

  .hero {
    padding: 50px 20px;
  }

  .hero h1 {
    font-size: 2.4rem;
    line-height: 1.1;
  }

  .hero p {
    font-size: 1rem;
  }

  .buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .buttons button {
    width: 240px;
  }

  /* General Grids */

  .grid,
  .mission-grid,
  .difference-grid,
  .steps-grid,
  .talent-grid,
  .cta-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  /* Images */

  .image-break img {
    max-height: 350px;
  }

  .cta-image {
    order: -1;
  }

  /* About */

  #about h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .founder-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .founder-photo {
    margin: 0 auto;
  }

  .founder-photo img {
    width: 200px;
  }

  .founder-content {
    text-align: left;
    padding: 0 20px;
  }

  .founder-content p {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.8;
  }

  .founder-intro {
    font-size: 1.15rem;
  }

  .founder-highlight {
    font-size: 1.1rem;
  }
  

  /* Difference */

  #difference-statement,
  #how-statement,
  #mission-statement {
    font-size: 1.15rem;
  }

  .difference-card,
  .step-card,
  .mission-card,
  .cta-box {
    padding: 22px;
  }

  /* Testimonials */

  .testimonial-card {
    min-width: 280px;
    max-width: 280px;
    padding: 25px;
  }

  #mission h2{
    font-size: 2rem;
    line-height: 1.15;
  }

}