@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');

* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  background: #f9fafb;
  color: #1f2933;
  line-height: 1.6;
}

/* HEADER */
header {
  background: white;
  border-bottom: 1px solid #eee;
  padding: 15px 20px;
}

.header-inner {
  max-width: 1000px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  font-size: 18px;
  margin: 0;
}

nav a {
  margin-left: 15px;
  text-decoration: none;
  color: #555;
  font-size: 14px;
}

nav a:hover {
  color: #000;
}

/* LAYOUT */
.container {
  max-width: 1000px;
  margin: auto;
  padding: 30px 20px;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #ff5a3c, #ff8a65);
  color: white;
  padding: 60px 30px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.hero h2 {
  margin-top: 0;
  font-size: 32px;
}

.hero p {
  font-size: 16px;
  opacity: 0.95;
}

/* GRID */
.grid {
  display: grid;
  gap: 20px;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* CARDS */
.card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #eee;
  transition: 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* BUTTON */
.button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 16px;
  background: #6d28d9;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
}

.button:hover {
  background: #5b21b6;
}

/* SECTION TITLES */
h2 {
  margin-top: 0;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  color: #888;
  font-size: 14px;
}

/* MOBILE */
@media (max-width: 600px) {
  .hero {
    padding: 40px 20px;
  }

  .hero h2 {
    font-size: 24px;
  }
}

/* PREMIUM LANDING WITH SVG WAVES */
.landing.premium {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fbfbfd;
  text-align: center;
  padding: 20px;
  font-family: 'Inter', sans-serif;
}

/* TITLE WRAPPER */
.title-wrapper {
  position: relative;
  margin-bottom: 40px;
}

/* SVG POSITIONING */
.wave-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 750px;
  transform: translate(-50%, -53%);
  z-index: 1;
opacity: 0.5;
  
}

/* TITLE */
.fancy-title {
  position: relative;
  margin: 0;
  line-height: 1.05;
  z-index: 2;
}

/* MAIN TITLE */
.main-title {
  display: block;
  font-size: 70px;
  font-weight: 800;
  color: #6d28d9;
  letter-spacing: -1px;
  position: relative;
  z-index: 2;
}

/* SUB TITLE */
.sub-title {
  display: block;
  font-size: 18px;
  margin-top: 10px;
  color: #666;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* TAGLINE */
.tagline.premium-text {
  max-width: 520px;
  color: #444;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* BUTTONS */
.button {
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

/* PRIMARY */
.button.primary {
  background: #6d28d9;
  color: white;
}

.button.primary:hover {
  background: #5b21b6;
}

/* SECONDARY */
.button.secondary {
  border: 2px solid #22c55e;
  color: #22c55e;
  background: transparent;
}

.button.secondary:hover {
  background: #22c55e;
  color: white;
}

/* BUTTON GROUP */
.landing-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}