/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: #070e1a;
  color: #dce4f0;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: #c8963e; text-decoration: none; transition: color 0.3s; }
a:hover { color: #e0b060; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 { font-weight: 700; line-height: 1.25; color: #ffffff; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #0a1526;
  border-bottom: 1px solid rgba(200, 150, 62, 0.15);
  padding: 16px 0;
  backdrop-filter: blur(10px);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #c8963e 0%, #e0b060 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #0a1526;
  font-weight: 900;
}

.logo span { color: #c8963e; }

.main-nav { display: flex; align-items: center; gap: 36px; }

.main-nav a {
  color: #b8c8e0;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #c8963e;
  transition: width 0.3s ease;
}

.main-nav a:hover { color: #ffffff; }
.main-nav a:hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, #c8963e 0%, #d4a84c 100%);
  color: #0a1526 !important;
  padding: 10px 24px !important;
  border-radius: 8px;
  font-weight: 700 !important;
  transition: transform 0.3s, box-shadow 0.3s !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 150, 62, 0.3);
  color: #0a1526 !important;
}

/* === HERO === */
.hero {
  padding: 180px 0 120px;
  background: radial-gradient(ellipse at 50% 0%, #132440 0%, #070e1a 70%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8963e' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero .container { position: relative; z-index: 1; }

.hero-content { max-width: 700px; }

.hero-badge {
  display: inline-block;
  background: rgba(200, 150, 62, 0.12);
  border: 1px solid rgba(200, 150, 62, 0.3);
  color: #c8963e;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero h1 span { color: #c8963e; }

.hero p {
  font-size: 1.15rem;
  color: #a0b4d0;
  margin-bottom: 40px;
  max-width: 560px;
}

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

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  border: none;
}

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

.btn-primary {
  background: linear-gradient(135deg, #c8963e 0%, #d4a84c 100%);
  color: #0a1526;
}

.btn-primary:hover {
  box-shadow: 0 8px 28px rgba(200, 150, 62, 0.35);
  color: #0a1526;
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(200, 150, 62, 0.5);
}

.btn-outline:hover {
  border-color: #c8963e;
  box-shadow: 0 8px 28px rgba(200, 150, 62, 0.15);
  color: #ffffff;
}

/* === SECTION COMMON === */
.section { padding: 100px 0; }

.section-label {
  display: inline-block;
  background: rgba(200, 150, 62, 0.08);
  border: 1px solid rgba(200, 150, 62, 0.25);
  color: #c8963e;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #ffffff;
}

.section-desc {
  font-size: 1.05rem;
  color: #8899b8;
  max-width: 600px;
  margin-bottom: 50px;
}

/* === SERVICES === */
.services { background: #0a1526; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: #111d33;
  border: 1px solid rgba(200, 150, 62, 0.08);
  border-radius: 14px;
  padding: 36px 28px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 150, 62, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(200, 150, 62, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 22px;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #ffffff;
}

.service-card p {
  color: #8899b8;
  font-size: 0.95rem;
  line-height: 1.65;
}

/* === ABOUT === */
.about { background: #070e1a; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  background: linear-gradient(135deg, #0d1b35 0%, #132440 100%);
  border: 1px solid rgba(200, 150, 62, 0.12);
  border-radius: 18px;
  padding: 50px 40px;
  text-align: center;
}

.about-stat {
  font-size: 4rem;
  font-weight: 900;
  color: #c8963e;
  line-height: 1;
  margin-bottom: 8px;
}

.about-stat-label {
  color: #8899b8;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-stats-row {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  justify-content: center;
}

.about-text h3 { font-size: 1.5rem; margin-top: 28px; margin-bottom: 12px; }
.about-text p { color: #8899b8; margin-bottom: 16px; }

/* === FEATURES === */
.features { background: #0a1526; padding: 100px 0 80px; }

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

.feature-item {
  text-align: center;
  padding: 32px 20px;
  background: #111d33;
  border-radius: 12px;
  border: 1px solid rgba(200, 150, 62, 0.06);
  transition: transform 0.3s;
}

.feature-item:hover { transform: translateY(-4px); }

.feature-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: #c8963e;
  margin-bottom: 8px;
}

.feature-item p {
  color: #8899b8;
  font-size: 0.9rem;
}

/* === TESTIMONIALS === */
.testimonials { background: #070e1a; }

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

.testimonial-card {
  background: #111d33;
  border: 1px solid rgba(200, 150, 62, 0.08);
  border-radius: 14px;
  padding: 36px 30px;
}

.testimonial-card blockquote {
  font-size: 1.05rem;
  color: #d0d8e8;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
  position: relative;
  padding-left: 24px;
  border-left: 3px solid #c8963e;
}

.testimonial-author {
  color: #c8963e;
  font-weight: 700;
}

.testimonial-role { color: #6a7d9a; font-size: 0.9rem; }

/* === CONTACT === */
.contact {
  background: linear-gradient(180deg, #0a1526 0%, #111d33 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(200, 150, 62, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info-item h4 { margin-bottom: 4px; font-size: 1rem; }
.contact-info-item p { color: #8899b8; font-size: 0.95rem; }

.contact-form {
  background: #152240;
  border: 1px solid rgba(200, 150, 62, 0.1);
  border-radius: 16px;
  padding: 36px;
}

.form-group { margin-bottom: 20px; }

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: #0d1b35;
  border: 1px solid rgba(200, 150, 62, 0.15);
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #c8963e;
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #c8963e 0%, #d4a84c 100%);
  color: #0a1526;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200, 150, 62, 0.3);
}

/* === FOOTER === */
.site-footer {
  background: #060e18;
  border-top: 1px solid rgba(200, 150, 62, 0.1);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p { color: #6a7d9a; margin-top: 16px; font-size: 0.95rem; }

.footer-col h4 {
  margin-bottom: 20px;
  font-size: 1rem;
  color: #c8963e;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: #6a7d9a; font-size: 0.95rem; }
.footer-col ul li a:hover { color: #c8963e; }

.footer-bottom {
  border-top: 1px solid rgba(200, 150, 62, 0.08);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-bottom p { color: #4a5e7a; font-size: 0.85rem; }

.footer-bottom-links { display: flex; gap: 24px; }

.footer-bottom-links a { color: #4a5e7a; font-size: 0.85rem; }
.footer-bottom-links a:hover { color: #c8963e; }

/* === PAGE HEADER (Privacy / Terms) === */
.page-header {
  padding: 140px 0 60px;
  background: radial-gradient(ellipse at 50% 0%, #132440 0%, #070e1a 70%);
  text-align: center;
}

.page-header h1 {
  font-size: 2.8rem;
  font-weight: 800;
}

.page-header p {
  color: #8899b8;
  margin-top: 12px;
  font-size: 1rem;
}

/* === LEGAL CONTENT === */
.legal-content {
  padding: 20px 0 100px;
  background: #0a1526;
}

.legal-body {
  max-width: 800px;
  margin: 0 auto;
}

.legal-body h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 14px;
  color: #c8963e;
}

.legal-body h3 {
  font-size: 1.15rem;
  margin-top: 28px;
  margin-bottom: 10px;
  color: #ffffff;
}

.legal-body p {
  color: #a0b4d0;
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-body ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}

.legal-body ul li {
  color: #a0b4d0;
  margin-bottom: 8px;
  line-height: 1.7;
}

.legal-body strong {
  color: #d4dcec;
}

.legal-body .updated {
  display: inline-block;
  background: rgba(200, 150, 62, 0.1);
  border: 1px solid rgba(200, 150, 62, 0.2);
  color: #c8963e;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 30px;
}

/* === DIVIDERS === */
.divider {
  width: 60px;
  height: 3px;
  background: #c8963e;
  border-radius: 3px;
  margin-bottom: 20px;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  .section-title { font-size: 2rem; }
  .about-grid,
  .contact-grid,
  .testimonial-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .main-nav { display: none; }
}

@media (max-width: 480px) {
  .hero { padding: 140px 0 80px; }
  .hero h1 { font-size: 1.8rem; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
}
