/* Drake Land Acquisitions - Exact Brand Guide Styles */

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

/* Hero Features - Premium Glass Morphism */
.hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.25rem 1rem;
  background: linear-gradient(135deg, 
    rgba(44, 61, 80, 0.4) 0%, 
    rgba(47, 75, 59, 0.3) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.hero-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.2) 50%, 
    transparent 100%);
}

.hero-feature:hover {
  background: linear-gradient(135deg, 
    rgba(156, 175, 136, 0.3) 0%, 
    rgba(193, 123, 57, 0.25) 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-feature i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #9CAF88 0%, #7a8d6a 100%);
  color: white;
  font-size: 1.25rem;
  border-radius: 10px;
  box-shadow: 
    0 4px 12px rgba(156, 175, 136, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.hero-feature:hover i {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, #C17B39 0%, #9CAF88 100%);
}

@media (max-width: 968px) {
  .hero-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero-features {
    grid-template-columns: 1fr;
  }
  
  .hero-feature {
    flex-direction: row;
    justify-content: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    text-align: left;
  }
  
  .hero-feature i {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
}

/* Trust Indicators - Premium Design */
.trust-indicators {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 2.5rem;
  background: transparent;
  border-radius: 16px;
  padding: 4px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(44, 61, 80, 0.1) 50%,
    transparent 100%
  );
}

.trust-item:hover {
  transform: scale(1.02);
}

.trust-item i {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #C17B39 0%, #a06530 100%);
  color: white !important;
  font-size: 1.25rem;
  border-radius: 12px;
  margin-bottom: 0.75rem;
  box-shadow: 
    0 3px 8px rgba(193, 123, 57, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.trust-item:hover i {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 
    0 8px 20px rgba(193, 123, 57, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.trust-item span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.trust-item strong {
  color: #2C3D50 !important;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.5px;
  display: block;
}

.trust-item .label {
  color: #6B7280 !important;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .trust-indicators {
    grid-template-columns: 1fr;
    gap: 1px;
    background: transparent;
  }
  
  .trust-item {
    flex-direction: row;
    justify-content: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
  }
  
  .trust-item:not(:last-child)::after {
    display: none;
  }
  
  .trust-item:not(:last-child) {
    border-bottom: 1px solid rgba(44, 61, 80, 0.08);
  }
  
  .trust-item i {
    margin-bottom: 0;
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
  
  .trust-item span {
    flex-direction: row;
    align-items: baseline;
    gap: 0.5rem;
    text-align: left;
  }
  
  .trust-item strong {
    font-size: 1.25rem;
  }
  
  .trust-item .label {
    font-size: 0.8rem;
  }
}

:root {
  /* Exact Brand Colors from Guide */
  --navy: #2C3D50;
  --orange: #C17B39;
  --sage: #9CAF88;
  --forest: #2F4B3B;
  --light-sage: rgba(156, 175, 136, 0.1);
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --gray: #6B7280;
  --light-gray: #F3F4F6;
}

/* Typography */
body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--navy);
  background: var(--white);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  margin-top: 0;
  padding-top: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { 
  font-size: clamp(2rem, 5vw, 3.5rem); 
  font-weight: 900;
}

h2 { 
  font-size: clamp(1.75rem, 4vw, 2.5rem); 
  margin-bottom: 1.5rem;
}

h3 { 
  font-size: clamp(1.25rem, 3vw, 1.75rem); 
}

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

/* Header - Fixed and Premium */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(44, 61, 80, 0.1);
  z-index: 9999;
  transition: all 0.3s ease;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  min-height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 15px;
}

.logo-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.logo-tagline {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--sage);
  margin-top: 4px;
  font-weight: 300;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--forest);
  font-weight: 600;
}

.phone-icon {
  color: var(--orange);
}

.nav-cta {
  background: var(--orange);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(193, 123, 57, 0.2);
}

.nav-cta:hover {
  background: var(--forest);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(47, 75, 59, 0.3);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero Section - Premium Top-Tier Design */
.hero-section {
  margin-top: 0;
  padding-top: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-bottom: 30px;
  position: relative;
  background-size: cover;
  background-position: 50% top;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Minimal gradient overlay for visibility */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    /* Ultra-light gradient only at very bottom for text readability */
    linear-gradient(to top,
      rgba(44, 61, 80, 0.7) 0%,
      rgba(44, 61, 80, 0.4) 5%,
      rgba(44, 61, 80, 0.2) 10%,
      rgba(44, 61, 80, 0.05) 15%,
      transparent 20%);
  z-index: 1;
}

/* Bottom accent line */
.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, 
    var(--orange) 0%,
    var(--sage) 50%,
    var(--forest) 100%);
  z-index: 3;
  animation: shimmer 3s ease-in-out infinite;
}

/* Subtle accent overlay */
.hero-overlay-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: none;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  padding-top: 130px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 0.6fr;
  gap: 4rem;
  align-items: flex-start;
  padding: 1rem 0;
  margin-top: 240px;
}

.hero-content {
  color: var(--white);
  padding-right: 2rem;
}

/* Premium animated entrance */
.hero-content > * {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.hero-content > *:nth-child(1) { animation-delay: 0.2s; }
.hero-content > *:nth-child(2) { animation-delay: 0.4s; }
.hero-content > *:nth-child(3) { animation-delay: 0.6s; }
.hero-content > *:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-shadow: 2px 3px 6px rgba(0, 0, 0, 0.4);
}

.text-accent {
  color: var(--orange);
  display: inline-block;
  position: relative;
  text-shadow: 2px 4px 12px rgba(193, 123, 57, 0.4);
}

/* Premium underline accent */
.text-accent::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    var(--orange) 0%, 
    var(--sage) 100%);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: expandLine 1s ease-out 1s forwards;
}

@keyframes expandLine {
  to { transform: scaleX(1); }
}

.hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  max-width: 450px;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight-orange {
  color: var(--orange);
  font-weight: 600;
  background: linear-gradient(120deg, 
    transparent 0%, 
    rgba(193, 123, 57, 0.15) 50%, 
    transparent 100%);
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-block;
  position: relative;
}

/* Premium CTA buttons group */
.hero-cta-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero-primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--orange);
  color: var(--white);
  padding: 1.125rem 2.25rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(193, 123, 57, 0.3);
  position: relative;
  overflow: hidden;
}

.hero-primary-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.hero-primary-cta:hover::before {
  width: 300px;
  height: 300px;
}

.hero-primary-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(193, 123, 57, 0.4);
  background: var(--forest);
}

.hero-secondary-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 2px;
}

.hero-secondary-cta::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--sage);
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.hero-secondary-cta:hover::after {
  transform: scaleX(1);
}

.hero-secondary-cta:hover {
  color: var(--sage);
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  max-width: 400px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.hero-feature:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.hero-feature i {
  color: var(--sage);
  font-size: 1.25rem;
  background: rgba(156, 175, 136, 0.2);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Removed duplicate trust-indicators styles - using the main styled ones from lines 114-130 */

/* Removed duplicate trust-item styles - using the styled ones from lines 132-203 */

/* Premium Form - Elevated Design */
.hero-form-container {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  position: relative;
  overflow: hidden;
  animation: formSlideIn 1s ease-out 0.5s forwards;
  opacity: 0;
  transform: translateY(30px);
  max-width: 420px;
}

@keyframes formSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Premium accent gradient */
.hero-form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, 
    var(--orange) 0%, 
    var(--sage) 50%, 
    var(--forest) 100%);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.premium-lead-form {
  width: 100%;
}

.form-header {
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1.25rem;
}

.form-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--sage));
  border-radius: 2px;
}

.form-header h3 {
  color: var(--navy);
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  font-weight: 800;
}

.form-header p {
  color: var(--gray);
  font-size: 0.925rem;
  font-weight: 500;
}

.form-group {
  margin-bottom: 0.875rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
  margin-bottom: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid #E5E7EB;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: 'Lato', sans-serif;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #FAFBFC;
}

.form-group input::placeholder,
.form-group select,
.form-group textarea::placeholder {
  color: #9CA3AF;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: var(--sage);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(193, 123, 57, 0.1);
  background: var(--white);
}

.form-submit-btn {
  width: 100%;
  padding: 1.125rem;
  background: linear-gradient(135deg, var(--orange) 0%, #B56F31 100%);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 
    0 4px 6px rgba(193, 123, 57, 0.2),
    0 1px 3px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.form-submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.2), 
    transparent);
  transition: left 0.5s;
}

.form-submit-btn:hover::before {
  left: 100%;
}

.form-submit-btn:hover {
  background: linear-gradient(135deg, var(--forest) 0%, #264335 100%);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 
    0 8px 16px rgba(47, 75, 59, 0.3),
    0 3px 6px rgba(0, 0, 0, 0.1);
}

.form-submit-btn:active {
  transform: translateY(0) scale(1);
}

.form-disclaimer {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.form-disclaimer i {
  color: var(--sage);
}

/* Value Propositions - Three Column Layout */
.value-props {
  padding: 5rem 0;
  background: var(--off-white);
}

.value-props-header {
  text-align: center;
  margin-bottom: 3rem;
}

.three-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.value-card h3 {
  color: var(--forest);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--gray);
  line-height: 1.6;
}

/* Property Types Section */
.property-types {
  padding: 5rem 0;
  position: relative;
}

.section-title {
  text-align: center;
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 1.125rem;
  margin-bottom: 3rem;
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.type-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.type-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.type-card h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  color: var(--navy);
  font-size: 1.25rem;
}

.type-card p {
  padding: 0 1.5rem 1.5rem;
  color: var(--gray);
}

/* Process Section */
.process-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--light-sage) 0%, var(--white) 100%);
}

.process-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 900px;
  margin: 3rem auto 0;
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 10px rgba(193, 123, 57, 0.3);
}

.process-connector {
  flex: 0 0 100px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--sage));
  margin: 0 -50px;
  margin-bottom: 4rem;
}

.step-content h3 {
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.step-content p {
  color: var(--gray);
  max-width: 250px;
  margin: 0 auto;
}

/* Testimonials */
.testimonials {
  padding: 5rem 0;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--off-white);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--orange);
}

.testimonial-stars {
  color: var(--orange);
  margin-bottom: 1rem;
}

.testimonial-card blockquote {
  color: var(--navy);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-card cite {
  display: block;
  color: var(--gray);
}

.testimonial-card cite strong {
  color: var(--forest);
  display: block;
  margin-bottom: 0.25rem;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background: var(--off-white);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.faq-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  border-top: 3px solid var(--sage);
}

.faq-item h3 {
  color: var(--navy);
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.faq-item p {
  color: var(--gray);
  line-height: 1.6;
}

/* CTA Section */
.bottom-cta {
  padding: 5rem 0;
  background-size: cover;
  background-position: center;
  position: relative;
  text-align: center;
  color: var(--white);
}

.bottom-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(47, 75, 59, 0.95) 0%, 
    rgba(44, 61, 80, 0.9) 100%);
  z-index: 1;
}

.bottom-cta .container {
  position: relative;
  z-index: 2;
}

.bottom-cta h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.bottom-cta p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.cta-disclaimer {
  font-size: 0.95rem;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Footer */
.main-footer {
  background: var(--navy);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

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

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--orange);
}

.footer-logo {
  max-width: 200px;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--orange);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 0.875rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(193, 123, 57, 0.2);
}

.btn-primary:hover {
  background: var(--forest);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(47, 75, 59, 0.3);
}

/* Responsive Design */
/* Extra polish for premium feel */
.hero-section {
  background-blend-mode: multiply;
}

/* Subtle parallax effect on scroll */
@media (min-width: 769px) {
  .hero-section {
    background-attachment: fixed;
  }
}

/* Premium loading animation for form */
.form-loading {
  pointer-events: none;
  opacity: 0.6;
}

.form-loading .form-submit-btn {
  position: relative;
  color: transparent;
}

.form-loading .form-submit-btn::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  border: 2px solid var(--white);
  border-radius: 50%;
  border-top-color: transparent;
  animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
  to { transform: rotate(360deg); }
}

@media (max-width: 1024px) {
  .hero-section {
    align-items: center;
    padding-bottom: 40px;
    background-position: 48% top;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 230px;
  }
  
  .hero-content {
    padding-right: 0;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .hero-form-container {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .three-values {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

  .hero-cta-group {
    flex-wrap: wrap;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-section {
    background-attachment: scroll;
    background-position: 45% top;
    min-height: 100vh;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 30px;
  }
  
  .hero-section .container {
    padding-top: 110px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 200px;
  }
  
  .hero-form-container {
    max-width: 100%;
    margin: 0;
  }
  
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-primary-cta,
  .hero-secondary-cta {
    text-align: center;
    justify-content: center;
    width: 100%;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .process-steps {
    flex-direction: column;
    gap: 2rem;
  }
  
  .process-connector {
    width: 2px;
    height: 50px;
    margin: -1rem auto;
  }
  
  .types-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-section {
    min-height: 100vh;
    padding-top: 90px;
    padding-bottom: 20px;
    background-position: center top;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
  }
  
  .hero-grid {
    padding: 1rem 0;
    margin-bottom: 0;
  }
  
  .hero-features {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 1rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .navbar {
    padding: 0.75rem 0;
    min-height: 60px;
  }
  
  .logo-name {
    font-size: 1.25rem;
  }
  
  .hero-form-container {
    padding: 1.5rem;
  }
}

/* Form Success State */
.form-success {
  padding: 3rem 2rem;
  text-align: center;
}

.form-success i {
  font-size: 4rem;
  color: var(--sage);
  margin-bottom: 1rem;
}

.form-success h3 {
  color: var(--navy);
  margin-bottom: 1rem;
}

.form-success p {
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.success-note {
  font-weight: 600;
  color: var(--forest);
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Selection Colors */
::selection {
  background: var(--orange);
  color: var(--white);
}

::-moz-selection {
  background: var(--orange);
  color: var(--white);
}