
:root {
  --primary: #8B2131;
  --secondary: #2C4638;
  --accent: #D4AF37;
  --background: #FBF9F3;
  --text: #333333;
  --light-text: #777777;
  --white: #FFFFFF;
  --light-cream: #F6F2E8;
  --error: #D32F2F;
  --success: #388E3C;
  --shadow: rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Source Sans 3', sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
}


h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.75rem;
  line-height: 1.4;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary);
}


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

.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3rem 0;
}


.header {
  background-color: var(--white);
  box-shadow: 0 2px 4px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  height: 50px;
}

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

.nav-list {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  margin-left: 1.5rem;
}

.nav-link {
  font-weight: 600;
  padding: 0.5rem;
}

.cta-button {
  background-color: var(--primary);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  margin-left: 1.5rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
}

.cta-button:hover {
  background-color: var(--secondary);
  color: var(--white);
}

.cta-button-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.cta-button-secondary:hover {
  background-color: var(--primary);
  color: var(--white);
}

.phone-link {
  display: flex;
  align-items: center;
  font-weight: 600;
  margin-left: 1.5rem;
}

.phone-link i {
  margin-right: 0.5rem;
}


.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
}


.hero {
  background-color: var(--light-cream);
  padding: 5rem 0;
  position: relative;
}

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

.hero-text {
  flex: 0 0 50%;
}

.hero-image {
  flex: 0 0 45%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 16px var(--shadow);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}


.services {
  background-color: var(--white);
}

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

.service-item {
  text-align: center;
  padding: 2rem;
  border-radius: 8px;
  background-color: var(--background);
  box-shadow: 0 4px 8px var(--shadow);
  transition: var(--transition);
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px var(--shadow);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}


.process {
  background-color: var(--light-cream);
}

.process-timeline {
  position: relative;
  max-width: 1000px;
  margin: 3rem auto;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: var(--accent);
  transform: translateX(-50%);
}

.process-step {
  position: relative;
  display: flex;
  justify-content: flex-start;
  padding-bottom: 3rem;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.process-step-content {
  width: 45%;
  padding: 1.5rem;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 8px var(--shadow);
}

.process-step-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  z-index: 1;
}


.metrics {
  background-color: var(--primary);
  color: var(--white);
}

.metrics h2 {
  color: var(--white);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.metric-item {
  text-align: center;
}

.metric-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}


.integrations {
  background-color: var(--white);
}

.integration-logos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.integration-logo {
  font-size: 2.5rem;
  color: var(--light-text);
  transition: var(--transition);
}

.integration-logo:hover {
  color: var(--primary);
}


.pricing {
  background-color: var(--background);
}

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

.pricing-plan {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 8px var(--shadow);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.pricing-plan:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px var(--shadow);
}

.pricing-name {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style-type: none;
  margin: 0;
  padding: 0;
  margin-bottom: 2rem;
}

.pricing-feature {
  margin-bottom: 0.5rem;
}


.calculator {
  background-color: var(--light-cream);
}

.calculator-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px var(--shadow);
}

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

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(139, 33, 49, 0.2);
}

.calculator-result {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: var(--light-cream);
  border-radius: 4px;
  text-align: center;
}


.segments {
  background-color: var(--white);
}

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

.segment-item {
  padding: 2rem;
  border-radius: 8px;
  background-color: var(--background);
  box-shadow: 0 4px 8px var(--shadow);
}

.segment-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.segment-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}


.contact {
  background-color: var(--light-cream);
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px var(--shadow);
}

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-top: 1.5rem;
}

.form-check-input {
  margin-right: 0.5rem;
  margin-top: 0.25rem;
}

.iti {
  width: 100%;
}

.form-submit {
  margin-top: 2rem;
}


.faq {
  background-color: var(--background);
}

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

.accordion-item {
  margin-bottom: 1rem;
  border-radius: 4px;
  background-color: var(--white);
  box-shadow: 0 2px 4px var(--shadow);
  overflow: hidden;
}

.accordion-header {
  padding: 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.accordion-body {
  padding: 0 1.25rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-body.active {
  padding: 0 1.25rem 1.25rem;
  max-height: 1000px;
}

.accordion-icon {
  transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
}


.security {
  background-color: var(--white);
}

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

.security-feature {
  text-align: center;
  padding: 1.5rem;
}

.security-icon {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}


.footer {
  background-color: var(--secondary);
  color: var(--white);
  padding: 4rem 0 2rem;
}

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

.footer-logo {
  height: 40px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-contact {
  margin-bottom: 1rem;
}

.footer-links h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-link-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.footer-link-item {
  margin-bottom: 0.75rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

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

.footer-hours {
  margin-bottom: 1rem;
}

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


.breadcrumbs {
  padding: 1rem 0;
  background-color: var(--background);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.breadcrumbs-list {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs-item {
  display: flex;
  align-items: center;
}

.breadcrumbs-item:not(:last-child)::after {
  content: '/';
  margin: 0 0.5rem;
  color: var(--light-text);
}

.breadcrumbs-link {
  color: var(--light-text);
}

.breadcrumbs-link:hover {
  color: var(--primary);
}

.breadcrumbs-current {
  color: var(--primary);
}


.advantage-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem;
  padding: 2rem;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 8px var(--shadow);
}

.advantage-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.advantage-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.advantage-content {
  margin-bottom: 1.5rem;
}

.advantage-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background-color: var(--light-cream);
  border-radius: 8px;
}

.advantage-metric {
  text-align: center;
}

.advantage-metric-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.advantage-case {
  padding: 1.5rem;
  background-color: var(--secondary);
  color: var(--white);
  border-radius: 8px;
}

.advantage-case h4 {
  color: var(--white);
}


.enterprise-feature {
  margin-bottom: 4rem;
}

.enterprise-feature-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--accent);
}

.enterprise-feature-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-right: 1rem;
}

.enterprise-feature-content {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px var(--shadow);
}


.contact-info {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}

.contact-method {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--primary);
  margin-right: 1rem;
}

.contact-map {
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
  position: relative;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.contact-map-button {
  background-color: var(--primary);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  border: none;
}

.contact-hours {
  margin-bottom: 2rem;
}

.hours-list {
  list-style-type: none;
  padding: 0;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}


.legal {
  padding: 4rem 0;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px var(--shadow);
}

.legal h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal p, .legal ul, .legal ol {
  margin-bottom: 1rem;
}

.legal ul, .legal ol {
  padding-left: 1.5rem;
}

.legal-date {
  display: block;
  margin-top: -0.5rem;
  margin-bottom: 2rem;
  font-style: italic;
  color: var(--light-text);
}


.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  max-width: 500px;
  width: 90%;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}

.modal.active .modal-content {
  transform: translateY(0);
  opacity: 1;
}

.modal-header {
  padding: 1.5rem;
  background-color: var(--primary);
  color: var(--white);
}

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  padding: 1.5rem;
  background-color: var(--light-cream);
  display: flex;
  justify-content: flex-end;
}

.modal-close {
  background-color: var(--primary);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  background-color: var(--secondary);
}


.cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 1.5rem;
}

.cookie-consent.active {
  display: block;
}

.cookie-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-text {
  flex: 1 1 100%;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .cookie-text {
    flex: 1 1 60%;
    margin-bottom: 0;
  }
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-button {
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.cookie-accept {
  background-color: var(--primary);
  color: var(--white);
}

.cookie-accept:hover {
  background-color: var(--secondary);
}

.cookie-reject {
  background-color: transparent;
  border: 1px solid var(--light-text);
  color: var(--text);
}

.cookie-reject:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.cookie-settings {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.cookie-settings:hover {
  background-color: rgba(139, 33, 49, 0.05);
}

.cookie-settings-modal {
  max-width: 600px;
}

.cookie-settings-content {
  padding: 1.5rem;
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cookie-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.cookie-category-title {
  font-weight: 600;
}

.cookie-category-toggle {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.cookie-category-checkbox {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-category-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  border-radius: 30px;
  transition: var(--transition);
  cursor: pointer;
}

.cookie-category-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: var(--white);
  border-radius: 50%;
  transition: var(--transition);
}

.cookie-category-checkbox:checked + .cookie-category-slider {
  background-color: var(--primary);
}

.cookie-category-checkbox:checked + .cookie-category-slider:before {
  transform: translateX(30px);
}

.cookie-category-checkbox:disabled + .cookie-category-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-settings-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
}

.cookie-save {
  background-color: var(--primary);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-save:hover {
  background-color: var(--secondary);
}


.thanks {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: 4rem 0;
}

.thanks-icon {
  font-size: 5rem;
  color: var(--success);
  margin-bottom: 2rem;
}

.thanks-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.thanks-text {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}


@media (max-width: 1024px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .process-timeline::before {
    left: 30px;
  }
  
  .process-step {
    flex-direction: column;
    padding-left: 60px;
  }
  
  .process-step:nth-child(even) {
    flex-direction: column;
  }
  
  .process-step-content {
    width: 100%;
  }
  
  .process-step-number {
    left: 30px;
  }
}

@media (max-width: 768px) {
  .header-content {
    position: relative;
  }
  
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80%;
    max-width: 300px;
    background-color: var(--white);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 1.5rem 1.5rem;
    transition: var(--transition);
    z-index: 1001;
  }
  
  .nav.active {
    right: 0;
  }
  
  .nav-list {
    flex-direction: column;
    width: 100%;
  }
  
  .nav-item {
    margin: 0;
    margin-bottom: 1rem;
    width: 100%;
  }
  
  .nav-link {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
  }
  
  .phone-link {
    margin: 1.5rem 0 0;
  }
  
  .cta-button {
    margin: 1rem 0 0;
    width: 100%;
    text-align: center;
  }
  
  .mobile-nav-toggle {
    display: block;
    position: relative;
    z-index: 1002;
  }
  
  .hero-content {
    flex-direction: column;
  }
  
  .hero-text {
    margin-bottom: 2rem;
  }
  
  .hero-image {
    width: 100%;
    height: 300px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .hero {
    padding: 3rem 0;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .cta-button {
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .service-grid, 
  .metrics-grid,
  .pricing-grid,
  .segments-grid,
  .security-features,
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-button {
    width: 100%;
  }
}