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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #050505;
  color: #f5f5f5;
  line-height: 1.6;
}

body.thankyou-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.2), transparent 30%),
    linear-gradient(135deg, #050505, #111);
}

nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  padding: 18px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
  font-size: 18px;
}

.logo span {
  color: #d4af37;
}

nav a {
  color: #ddd;
  text-decoration: none;
  margin-left: 26px;
  font-size: 14px;
}

nav a:hover {
  color: #d4af37;
}

.nav-btn {
  border: 1px solid #d4af37;
  padding: 10px 18px;
  border-radius: 999px;
  color: #d4af37;
}

header {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 80px 6%;
  background:
    radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.2), transparent 28%),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(135deg, #050505, #111);
}

.hero {
  max-width: 850px;
}

.badge {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 999px;
  color: #d4af37;
  margin-bottom: 24px;
  font-size: 13px;
  letter-spacing: 1px;
}

.thankyou-page .badge {
  text-transform: uppercase;
}

h1 {
  font-size: clamp(44px, 7vw, 82px);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.thankyou-page h1 {
  font-size: clamp(44px, 7vw, 72px);
  margin-bottom: 16px;
}

.gold {
  color: #d4af37;
}

.hero p {
  color: #bdbdbd;
  font-size: 20px;
  max-width: 720px;
  margin-bottom: 34px;
}

.thankyou-page p {
  color: #bdbdbd;
  font-size: 18px;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37, #f5d76e);
  color: #050505;
  border: none;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.22);
}

.btn.secondary {
  background: transparent;
  color: #d4af37;
  border: 1px solid rgba(212, 175, 55, 0.55);
  margin-left: 12px;
  box-shadow: none;
}

section {
  padding: 85px 6%;
  max-width: 1300px;
  margin: auto;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title small {
  color: #d4af37;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
}

.section-title h2 {
  font-size: 42px;
  margin-top: 8px;
}

.section-title p {
  color: #aaa;
  max-width: 650px;
  margin: 10px auto 0;
}

.plans,
.services,
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: linear-gradient(180deg, rgba(20,20,20,0.95), rgba(8,8,8,0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
}

.card.featured {
  border: 1px solid rgba(212, 175, 55, 0.65);
}

.icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  font-size: 24px;
  margin-bottom: 20px;
}

.tag {
  color: #d4af37;
  font-size: 13px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.card h3 {
  font-size: 26px;
  margin-bottom: 8px;
}

.price {
  font-size: 34px;
  font-weight: 800;
  margin: 18px 0;
  color: #d4af37;
}

.desc {
  color: #aaa;
  margin-bottom: 20px;
}

ul {
  list-style: none;
  margin-bottom: 25px;
}

li {
  margin-bottom: 12px;
  color: #ddd;
}

li::before {
  content: "✓";
  color: #d4af37;
  margin-right: 10px;
}

.support-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
}

.support-item {
  background: #080808;
  padding: 30px;
}

.contact-section {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 6%;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 28px;
  background: linear-gradient(180deg, #111, #070707);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 28px;
  padding: 35px;
}

.contact-info h2 {
  font-size: 38px;
  margin-bottom: 12px;
}

.contact-info p {
  color: #aaa;
  margin-bottom: 22px;
}

.contact-info div {
  margin: 12px 0;
  color: #ddd;
}

label {
  display: block;
  margin: 14px 0 6px;
  color: #d4af37;
  font-size: 14px;
}

input,
textarea,
select {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: #050505;
  color: #fff;
  font-size: 15px;
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #d4af37;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.thankyou-main {
  min-height: calc(100vh - 144px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 6%;
}

.thankyou-box {
  max-width: 680px;
  background: linear-gradient(180deg, #111, #070707);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 28px;
  padding: 50px 35px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

footer {
  text-align: center;
  padding: 35px 20px;
  color: #777;
  border-top: 1px solid rgba(255,255,255,0.08);
}
