/* =====================================
   GOOGLE FONT
===================================== */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");

/* =====================================
   ROOT VARIABLES
===================================== */

:root {
  --bg: #050816;
  --bg-secondary: #0b1120;
  --card: #111827;
  --card-hover: #172033;
  --gold: #d4af37;
  --gold-light: #f4d97b;
  --blue: #00a3ff;
  --white: #ffffff;
  --gray: #94a3b8;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  --transition: 0.35s ease;
}

/* =====================================
   RESET
===================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

/* =====================================
   GLOBAL
===================================== */

.container {
  width: 100%;
  max-width: 1280px;
  margin: auto;
  padding-left: 20px;
  padding-right: 20px;
}

section {
  padding: 120px 0;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
  font-weight: 700;
}

p {
  color: var(--gray);
}

/* =====================================
   BUTTONS
===================================== */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  font-weight: 700;
  border-radius: 60px;
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  border-radius: 60px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* =====================================
   HEADER
===================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(20px);
  background: rgba(5, 8, 22, 0.75);
  border-bottom: 1px solid var(--border);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
}

.navbar ul {
  display: flex;
  gap: 40px;
}

.navbar a {
  font-weight: 500;
  position: relative;
}

.navbar a::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: 0.3s;
}

.navbar a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  margin: 6px 0;
}

/* =====================================
   HERO
===================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: rgba(212, 175, 55, 0.07);
  filter: blur(120px);
  top: -200px;
  right: -200px;
  border-radius: 50%;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 40px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--gold);
  margin-bottom: 25px;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 25px;
}

.hero h1 span {
  display: block;
  color: var(--gold);
}

.hero p {
  font-size: 1.15rem;
  max-width: 600px;
  margin-bottom: 35px;
}

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

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: 30px;
  box-shadow: var(--shadow);
}

/* =====================================
   SECTION HEADINGS
===================================== */

.section-heading {
  text-align: center;
  margin-bottom: 70px;
}

.section-heading h2 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.section-heading p {
  max-width: 650px;
  margin: auto;
}

/* =====================================
   TRUSTED LOGOS
===================================== */

.trusted-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.logo-card {
  height: 100px;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid var(--border);
}

/* =====================================
   SERVICE GRID
===================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--card);
  padding: 35px;
  border-radius: 24px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  background: var(--card-hover);
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.15);
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.service-card p {
  margin-bottom: 20px;
}

.service-card a {
  color: var(--gold);
  font-weight: 600;
}

/* =====================================
   COMPARISON TABLE
===================================== */

.comparison-table {
  overflow: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border-radius: 20px;
  overflow: hidden;
}

th {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold);
}

th,
td {
  padding: 22px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* =====================================
   PROCESS
===================================== */

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

.step {
  background: var(--card);
  padding: 35px;
  border-radius: 20px;
  text-align: center;
}

.step span {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  margin-bottom: 15px;
}

/* =====================================
   STATS
===================================== */

.stats .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.stat {
  background: var(--card);
  padding: 40px;
  border-radius: 24px;
  text-align: center;
}

.stat h3 {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 10px;
}

/* =====================================
   TESTIMONIALS
===================================== */

.testimonial {
  background: var(--card);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--border);
}

/* =====================================
   FAQ
===================================== */

.faq-item {
  background: var(--card);
  margin-bottom: 20px;
  border-radius: 20px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 25px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-answer {
  padding: 0 25px 25px;
  display: none;
}

/* =====================================
   CTA
===================================== */

.cta {
  text-align: center;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.05), transparent);
}

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

/* =====================================
   FOOTER
===================================== */

.footer {
  padding: 70px 0;
  border-top: 1px solid var(--border);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.footer p {
  text-align: center;
}

/* =====================================
   SCROLLBAR
===================================== */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #050816;
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 20px;
}
