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

a{
  text-decoration: none;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:#ffffff;
  color:#111;
  overflow-x:hidden;
}

img{
  max-width:100%;
  display:block;
}

section{
  padding:100px 0;
}

.section{
  width:min(1180px,92%);
  margin:auto;
}

.section-light{
  background:#fafafa;
  border-radius:40px;
}

.section-header{
  text-align:center;
  margin-bottom:60px;
}

.section-tag{
  display:inline-block;
  border: 1px solid #d3d3d3;
  color:#000;
  padding:8px 16px;
  border-radius:999px;
  font-size:0.9rem;
  font-weight:600;
  margin-bottom:20px;
}

.section-header h2{
  font-size:3rem;
  margin-bottom:18px;
  line-height:1.1;
}

.section-header p{
  max-width:700px;
  margin:auto;
  color:#666;
  line-height:1.8;
}

/* HERO */

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

.hero-container{
  width:min(1180px,92%);
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.hero-badge{
  display:inline-flex;
  padding:10px 18px;
  border-radius:999px;
  border: 1px solid #d3d3d3;
  font-size:0.9rem;
  font-weight:600;
  margin-bottom:24px;
}

.hero-content h1{
  font-size:3.5rem;
  line-height:1;
  margin-bottom:24px;
  letter-spacing:-2px;
}

.hero-content p{
  color:#666;
  line-height:1.9;
  font-size:1.05rem;
  margin-bottom:34px;
  max-width:620px;
}

.hero-buttons{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.hero-stats{
  display:flex;
  gap:40px;
  margin-top:50px;
  flex-wrap:wrap;
}

.stat{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.stat strong{
  font-size:1.5rem;
}

.stat span{
  color:#666;
}

.hero-card{
  position:relative;
}

.hero-image img{
  border-radius:32px;
  height:640px;
  width:100%;
  object-fit:cover;
}

.booking-card{
  position:absolute;
  bottom:30px;
  left:30px;
  right:30px;
  background:rgba(255,255,255,0.95);
  backdrop-filter:blur(12px);
  padding:28px;
  border-radius:28px;
}

.booking-head{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:24px;
  font-weight:700;
}

.booking-head i{
  width:42px;
  height:42px;
  background:#ffe600;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.input-group{
  margin-bottom:18px;
}

.input-wrapper{
  position:relative;
}

.input-wrapper i{
  position:absolute;
  left:18px;
  top:50%;
  transform:translateY(-50%);
  color:#777;
}

.input-wrapper input,
.input-wrapper select{
  width:100%;
  height:58px;
  border-radius:14px;
  border:1px solid #e7e7e7;
  padding:0 14px 0 50px;
  padding-right: 10px;
  font-size:1rem;
  font-family:'Inter',sans-serif;
}

.input-wrapper input:focus,
.input-wrapper select:focus{
  outline:none;
  border-color:#ffe600;
}

.input-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}


.input-group label{
  display:block;
  margin-bottom:8px;
  font-size:0.9rem;
  font-weight:600;
}

.input-group .input-text{
  width:100%;
  padding:14px;
  border:none;
  font-size: 1rem;
  background:#fff;
  border-radius:14px;
  font-family:inherit;
  border: 1px solid #e7e7e7;
}

/* PLATFORM */

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

.platform-card{
  background:#fff;
  border:1px solid #eee;
  padding:40px;
  border-radius:28px;
}

.platform-icon{
  width:60px;
  height:60px;
  border-radius:18px;
  background:#ffe600;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.5rem;
  margin-bottom:24px;
}

.platform-card h3{
  margin-bottom:16px;
  font-size:1.4rem;
}

.platform-card p{
  color:#666;
  line-height:1.8;
}

/* FEATURES */

.features-grid{
  width: 92%;
  margin: auto;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}

.feature-card{
  background:#fff;
  padding:36px;
  border-radius:28px;
}

.feature-card i{
  font-size:2rem;
  margin-bottom:24px;
}

.feature-card h3{
  margin-bottom:14px;
}

.feature-card p{
  color:#666;
  line-height:1.8;
}

/* STEPS */

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

.step-card{
  border:1px solid #eee;
  padding:36px;
  border-radius:28px;
}

.step-card span{
  font-size:2rem;
  font-weight:800;
  color:#ffe600;
  display:block;
  margin-bottom:20px;
}

.step-card h3{
  margin-bottom:14px;
}

.step-card p{
  color:#666;
  line-height:1.8;
}

/* FAQ */

.faq-container{
  max-width:850px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:18px;
}

details{
  border:1px solid #eee;
  border-radius:22px;
  padding:22px;
  background:#fff;
}

summary{
  cursor:pointer;
  font-weight:600;
}

details p{
  color:#666;
  margin-top:16px;
  line-height:1.8;
}

/* CTA */

.cta{
  padding:120px 20px;
}

.cta-content{
  width:min(1180px,100%);
  margin:auto;
  background:#111;
  color:#fff;
  border-radius:40px;
  padding:80px 40px;
  text-align:center;
}

.cta-content h2{
  font-size:3rem;
  margin-bottom:20px;
}

.cta-content p{
  max-width:650px;
  margin:auto;
  color:#d1d5db;
  line-height:1.8;
}

.cta-buttons{
  margin-top:34px;
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
}

/* RESPONSIVE */

@media(max-width:1000px){

  .hero-container,
  .platform-grid,
  .features-grid,
  .steps-grid{
    grid-template-columns:1fr;
  }

  .hero-content h1{
    font-size:3.5rem;
  }

  .hero-image img{
    height:500px;
  }
}

@media(max-width:700px){

  section{
    padding:80px 0;
  }

  .section-header h2,
  .cta-content h2{
    font-size:2.2rem;
  }

  .hero-content h1{
    font-size:2.8rem;
  }

  .booking-card{ 
    left:16px;
    right:16px;
    padding: 20px;
    top:0;
    bottom: -16%;
    margin-top:20px;
    box-shadow:0 20px 60px rgba(0,0,0,0.2);
  }

  .hero-buttons,
  .cta-buttons{
    flex-direction:column;
  }

  .btn{
    width:100%;
  }

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

 .insights-section{
    padding:
      110px 24px;

  }

  .insights-container{
    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:
      minmax(0,1fr)
      480px;

    gap:40px;
    align-items:center;
  }

  .insights-content h2{
    font-size:3rem;
    line-height:1.08;

    letter-spacing:-.04em;

    margin-bottom:24px;

    color:#111827;
  }

  .insights-content p{
    max-width:640px;

    color:#64748b;
    font-size:17px;
    line-height:1.9;

    margin-bottom:34px;
  }

  .primary-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;

    background:#111827;
    color:#ffffff;

    padding:
      16px 24px;

    border-radius:16px;

    font-size:14px;
    font-weight:700;

    transition:.2s;
  }

  .primary-btn:hover{
    transform:translateY(-2px);
  }

  .insights-card{
    background:#ffffff;

    border:
      1px solid #edf2f7;

    border-radius:30px;

    overflow:hidden;

    box-shadow:
      0 14px 40px rgba(15,23,42,.06);

    transition:.25s;
  }

  .insights-card:hover{
    transform:translateY(-4px);
  }

  .card-image{
    height:260px;
    overflow:hidden;
  }

  .card-image img{
    width:100%;
    height:100%;

    object-fit:cover;
  }

  .card-content{
    padding:30px;
  }

  .article-tag{
    width:max-content;

    padding:
      8px 14px;

    border-radius:999px;

    background:#fff8c5;
    color:#7a6300;

    font-size:11px;
    font-weight:800;
    letter-spacing:.08em;

    margin-bottom:18px;
  }

  .card-content h3{
    font-size:28px;
    line-height:1.2;

    letter-spacing:-.03em;

    margin-bottom:18px;

    color:#111827;
  }

  .card-content p{
    color:#64748b;
    font-size:15px;
    line-height:1.8;

    margin-bottom:26px;
  }

  .card-link{
    display:flex;
    align-items:center;
    gap:10px;

    color:#111827;

    font-size:14px;
    font-weight:700;
  }

  @media(max-width:980px){

    .insights-container{
      grid-template-columns:1fr;
    }

    .insights-content h2{
      font-size:40px;
    }

    .insights-card{
      width:100%;
    }

  }