* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* HERO */
.hero {
  height: 70vh;
  min-height: 520px;
  background: url('./img/_Hero\ PNO\ \(1\).webp') center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #fff;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.3));
}

.hero .container {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.sub {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #00c2ff;
}

.hero h1 {
  font-size: 48px;
  margin: 10px 0;
}

.hero span {
  color: #00c2ff;
}

.desc {
  margin-bottom: 20px;
  color: #ddd;
}

.cta-group {
  display: flex;
  gap: 10px;
}

.btn-primary {
  background: #00c2ff;
  color: #000;
  padding: 12px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.btn-secondary {
  border: 1px solid #fff;
  padding: 12px 18px;
  color: #fff;
  text-decoration: none;
}

.trust {
  margin-top: 15px;
  font-size: 14px;
  color: #ccc;
}

/* INFO */
.info {
  padding: 40px 20px;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.img img {
  width: 100%;
  border-radius: 15px;
}

.content h2 {
  font-size: 36px;
}

.content span {
  color: #4b3fd4;
}

/* FEATURES */
.features {
  background: #f7f9fc;
  padding: 40px 20px;
  text-align: center;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

.card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
} 
.card .icon {
  font-size: 30px;
  margin-bottom: 15px;
}

/* PRICING */
.pricing {
  padding: 40px 20px;
  text-align: center;
}

.price-box {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  display: inline-block;
}

.price {
  font-size: 42px;
  font-weight: bold;
}

/* CTA */
.cta-strip {
  background: #00c2ff;
  text-align: center;
  padding: 30px;
}

.cta-strip a {
  display: inline-block;
  margin-top: 10px;
  font-size: 20px;
  font-weight: bold;
  color: #000;
}

/* MOBILE */
@media(max-width:768px){

  .hero h1 {
    font-size: 30px;
  }

  .cta-group {
    flex-direction: column;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }
} 


/* ===== SECTION ===== */
.ship-section {
  padding: 25px 20px;
  background: #f8fbff;
  font-family: 'Inter', sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* ===== HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0a2540;
}

.section-header p {
  font-size: 16px;
  color: #6b7c93;
  margin-top: 10px;
}

/* ===== GRID ===== */
.ship-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* ===== CARD ===== */
.ship-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}

.ship-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* ===== IMAGE ===== */
.ship-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.ship-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.ship-card:hover img {
  transform: scale(1.05);
}

/* ===== BADGE ===== */
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ff4d4d;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 50px;
}

.badge.new {
  background: linear-gradient(135deg, #ff7a18, #ff3d00);
}

/* ===== CONTENT ===== */
.ship-content {
  padding: 20px;
  flex: 1;
}

.ship-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0a2540;
}

.ship-content p {
  font-size: 14px;
  color: #6b7c93;
  margin-bottom: 15px;
}

/* ===== LIST ===== */
.ship-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.ship-content ul li {
  font-size: 14px;
  margin-bottom: 6px;
  color: #334e68;
}

/* ===== BUTTON ===== */
.btn-primary {
  display: inline-block;
  text-align: center;
  background: linear-gradient(135deg, #007bff, #0056d2);
  color: #fff;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0056d2, #003f9e);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .ship-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ship-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .ship-img {
    height: 180px;
  }
}

.ship-img {
  width: 100%;
  aspect-ratio: 16 / 9; /* 🔥 modern responsive */
  overflow: hidden;
}

.ship-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}