:root {
  --navy: #1a2332;
  --navy-dark: #0f1419;
  --navy-light: #2a3f5f;
  --gold: #b8860b;
  --gold-light: #daa520;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --medium-gray: #7a7a7a;
  --text-dark: #1a1a1a;
  --text-light: #555555;
}

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

html, body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
}

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

/* Header & Navigation */
.header {
  background: var(--navy);
  color: var(--white);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold-light);
}

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

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--gold-light);
}

.nav-link.active {
  color: var(--gold-light);
}

.cta-link {
  background: var(--gold);
  color: var(--navy);
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
}

.cta-link:hover {
  background: var(--gold-light);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 120px 24px;
  text-align: center;
}

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

.hero h1 {
  font-size: 54px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero-sub {
  font-size: 20px;
  margin-bottom: 32px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

/* Buttons */
.button {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.button-primary {
  background: var(--gold);
  color: var(--navy);
}

.button-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(184, 134, 11, 0.3);
}

.button.full-width {
  width: 100%;
}

/* Value Props */
.value-props {
  padding: 80px 24px;
  background: var(--light-gray);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.value-card {
  background: var(--white);
  padding: 32px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.value-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--navy);
}

.value-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

/* Why Choose Section */
.why-choose {
  padding: 80px 24px;
}

.why-choose h2 {
  font-size: 40px;
  text-align: center;
  margin-bottom: 48px;
  color: var(--navy);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.why-item {
  padding: 24px;
  border-left: 4px solid var(--gold);
}

.why-item h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--navy);
}

.why-item p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.7;
}

/* Testimonials Section */
.featured-testimonials {
  padding: 80px 24px;
  background: var(--light-gray);
}

.featured-testimonials h2 {
  font-size: 40px;
  text-align: center;
  margin-bottom: 48px;
  color: var(--navy);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.testimonial-card {
  background: var(--white);
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 12px;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.7;
}

.testimonial-name {
  color: var(--text-light);
  font-size: 13px;
  font-weight: 600;
}

.testimonial-cta {
  text-align: center;
}

.link-arrow {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.link-arrow:hover {
  color: var(--gold-light);
}

/* Process Section */
.process {
  padding: 80px 24px;
}

.process h2 {
  font-size: 40px;
  text-align: center;
  margin-bottom: 48px;
  color: var(--navy);
}

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

.step {
  text-align: center;
  padding: 24px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.step h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--navy);
}

.step p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

/* Contact Section */
.contact {
  background: var(--navy);
  color: var(--white);
  padding: 80px 24px;
}

.contact-content {
  max-width: 600px;
  margin: 0 auto;
}

.contact h2 {
  font-size: 36px;
  margin-bottom: 16px;
  text-align: center;
}

.contact > .container > .contact-content > p {
  text-align: center;
  font-size: 16px;
  margin-bottom: 32px;
  color: rgba(255,255,255,0.8);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
textarea::placeholder {
  color: rgba(255,255,255,0.6);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
}

textarea {
  resize: vertical;
}

/* Footer */
.footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 48px 24px 16px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer-col h4 {
  margin-bottom: 12px;
  color: var(--gold-light);
}

.footer-col p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

.footer-link {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin: 0 8px;
}

.footer-link:hover {
  color: var(--gold-light);
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    display: none;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-sub {
    font-size: 16px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .value-grid,
  .testimonials-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .header-content {
    flex-direction: column;
    gap: 16px;
  }
  
  .hero {
    padding: 60px 24px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .value-props,
  .why-choose,
  .featured-testimonials,
  .process,
  .contact {
    padding: 48px 24px;
  }
}
