/* MODAL */
/* Modal Styles */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9998;
  overflow-y: auto;
  padding: 20px;
}

.modal-overlay.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-container {
  position: relative;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  max-width: 630px;
  width: 100%;
  padding: 36px;
  margin: auto;
  z-index: 9999;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #666;
  padding: 5px 10px;
  line-height: 1;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #000;
}

body.modal-open {
  overflow: hidden;
}

/* Multi-Step Form Styles */
.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-header h1 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000 !important;
}

.form-header p {
  color: #666 !important;
}

.progress-bar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
}

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

.progress-step:not(:first-child)::before {
  content: '';
  position: absolute;
  top: 15px;
  left: calc(-50% + 15px);
  right: calc(50% + 15px);
  height: 2px;
  background: #e0e0e0;
  z-index: 0;
}

.progress-step-circle {
  width: 30px;
  height: 30px;
  font-size: 13px;
  border-radius: 50%;
  background: #e0e0e0;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: all 0.3s ease;
  color: #666 !important;
  position: relative;
  z-index: 2;
}

.progress-step.active .progress-step-circle {
  background: #fed844;
  color: #000 !important;
}

.progress-step.completed .progress-step-circle {
  background: #10B981;
  color: white !important;
}

.progress-step-label {
  font-size: 12px;
  color: #666 !important;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

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

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 12px;
  font-size: 15px;
  color: #000 !important;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.option-card {
  position: relative;
}

.option-card input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.option-card label {
  display: block;
  padding: 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: normal;
  color: #000 !important;
}

.option-card input[type="radio"]:checked+label {
  border-color: #fed844;
  background: #fffbeb;
  font-weight: 600;
}

.option-card label:hover {
  border-color: #fed844;
}

.form-input {
  width: 100%;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
  color: #000 !important;
}

.form-input::placeholder {
  color: #999 !important;
}

.form-input:focus {
  outline: none;
  border-color: #fed844;
}

.form-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  gap: 12px;
}

.form-btn {
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
}

.form-btn-primary {
  background-image: linear-gradient(135deg, #f9f076, #fed844 41%);
  color: black !important;
}

.form-btn-primary:hover {
  opacity: 0.9;
}

.form-btn-secondary {
  background: #e0e0e0;
  color: #333 !important;
}

.form-btn-secondary:hover {
  background: #d0d0d0;
}

.form-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.error-message {
  color: #EF4444 !important;
  font-size: 14px;
  margin-top: 8px;
  display: none;
}

.error-message.show {
  display: block;
}

#modalResult {
  text-align: center;
  margin-top: 20px;
  font-weight: 600;
}

.result-success {
  color: #10B981 !important;
}

.result-error {
  color: #EF4444 !important;
}

@media (max-width: 768px) {
  .modal-container {
    padding: 24px;
  }

  .options-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-header h1 {
    font-size: 22px;
  }
}

/* GENERAL */
body .heading-subtitle {
  font-weight: 400;
  color: #4b5563;
  font-size: 14px;
  margin-top: 8px;
}

/* Table */
.phoenix-img {
  margin-top: 16px;
}

.phoenix-text {
  font-style: italic;
  color: #68696a;
  font-size: 12px;
  margin-top: 8px;
}

/* Inverters Grid Section */
.inverters-grid {
  display: flex;
  gap: 32px;
}

.inverters-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Comparison Table Section */
.comparison-section {
  background: #eaf7ff;
  padding: 72px 20px 80px;
}

.comparison-container {
  max-width: 1280px;
  margin: 0 auto;
}

.comparison-header {
  text-align: center;
  margin-bottom: 46px;
}

.comparison-header h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.11;
  color: #1f2937;
  margin: 0 0 8px;
}

.comparison-header p {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.67;
  color: #181e2a;
  margin: 0;
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin-bottom: 40px;
}

.comparison-table {
  width: 100%;
  max-width: 1198px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0;
  background: white;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
}

.comparison-table thead th {
  padding: 18px 24px;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #1f2937;
  background: white;
}

.comparison-table thead .features-header {
  background: white;
  border-top-left-radius: 16px;
  font-weight: 500;
}

.comparison-table thead .mercia-header {
  background: #012360;
  color: white;
  text-align: center;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  position: relative;
  z-index: 2;
  transform: scale(1.02);
}

.comparison-table thead .national-header {
  background: #fcfcfc;
  text-align: center;
  border-top-right-radius: 16px;
  border-bottom: 1px solid #e5e7eb;
}

.comparison-table tbody tr {
  border-top: 1px solid #e5e7eb;
}

.comparison-table tbody tr:first-child {
  border-top: none;
}

.comparison-table tbody td {
  padding: 16px 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
}

.feature-name {
  background: white;
  color: #374151;
  font-weight: 400;
  border-bottom: 1px solid #E5E7EB;
}

.mercia-cell {
  text-align: left;
  color: white;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.mercia-content {
  width: 100%;
  max-width: 225px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mercia-cell span:not(.check-icon) {
  margin-left: 8px;
}

.mercia-dark {
  background: #021840;
  transform: scale(1.02);
}

.mercia-darker {
  background: #011d4e;
  transform: scale(1.02);
}

.national-cell {
  background: #fcfcfc;
  color: #4b5563;
  text-align: left;
  border-bottom: 1px solid #E5E7EB;
  font-weight: 400;
}

.national-cell span:not(.x-icon) {
  margin-left: 8px;
}

.check-icon {
  display: inline-block;
  width: 16px;
  height: 12px;
  vertical-align: middle;
}

.check-icon svg {
  display: block;
  height: 100%;
}

.x-icon {
  display: inline-block;
  width: 15px;
  height: 15px;
  vertical-align: middle;
}

.x-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Last row styling */
.comparison-table tbody .last-row .feature-name {
  border-bottom-left-radius: 16px;
}

.comparison-table tbody .last-row .mercia-cell {
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.comparison-table tbody .last-row .national-cell {
  border-bottom-right-radius: 16px;
}

/* CTA Button */
.comparison-cta {
  text-align: center;
  margin-top: 40px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffd954;
  color: #000000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 18px 32px;
  border-radius: 100px;
  border: 1.2px solid white;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-button:hover {
  background: #ffc933;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button svg {
  width: 22px;
  height: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .comparison-table {
    font-size: 14px;
  }

  .comparison-table thead th {
    font-size: 15px;
    padding: 14px 16px;
  }

  .comparison-table tbody td {
    font-size: 13px;
    padding: 12px 16px;
  }
}

@media (max-width: 900px) {
  .inverters-grid {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .comparison-header h2 {
    font-size: 28px;
  }

  .comparison-header p {
    font-size: 16px;
  }

  .comparison-table {
    font-size: 12px;
  }

  .comparison-table thead th {
    font-size: 13px;
    padding: 12px 10px;
  }

  .comparison-table tbody td {
    font-size: 12px;
    padding: 10px 8px;
  }

  .mercia-cell span:not(.check-icon),
  .national-cell span:not(.x-icon) {
    display: block;
    margin-left: 0;
    margin-top: 4px;
  }

  .cta-button {
    font-size: 14px;
    padding: 14px 24px;
  }
}

.faq-gradient {
  background-image: linear-gradient(#ebf7ff, #fff);
}

/* Container */
.case-study-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 0;
}

.last-study-container {
  padding-bottom: 0;
}

.case-study-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  border-radius: 16px;
}

/* Left Section */
.case-study-left-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.case-study-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.case-study-avatar {
  flex-shrink: 0;
}

.case-study-avatar svg {
  width: 60px;
  height: 60px;
}

.case-study-header-text {
  flex: 1;
}

.case-study-title {
  font-size: 22px;
  font-weight: 50 0;
  color: #000;
}

.case-study-subtitle {
  font-size: 16px;
  color: #666;
}

.case-study-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.case-study-section h2 {
  font-size: 20px;
  font-weight: 500;
  color: #000;
}

.case-study-section p {
  font-size: 16px;
  line-height: 1.6;
  color: #374151;
}

.case-study-section ul {
  list-style: none;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.case-study-section ul li {
  font-size: 16px;
  padding-left: 0;
  margin-bottom: 16px;
  color: black;
  position: relative;
}

.case-study-solution-list {
  margin-bottom: 0;
}

.case-study-solution-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding-left: 0;
}

.case-study-solution-list li::before {
  content: none;
}

.case-study-solution-list li svg {
  flex-shrink: 0;
  margin-top: 4px;
}

.case-study-results-list li {
  padding-left: 0;
}

.case-study-results-list li::before {
  content: none;
}

.case-study-link {
  color: #6366f1;
  text-decoration: none;
}

.case-study-link:hover {
  text-decoration: underline;
}

/* Right Section */
.case-study-right-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.case-study-performance-card,
.case-study-testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.case-study-performance-card h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 24px;
  color: #000;
}

.case-study-data-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.case-study-data-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e7eb;
}

.case-study-data-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.case-study-data-label {
  font-size: 16px;
  color: #666;
}

.case-study-data-value {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

.case-study-testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.case-study-testimonial-img {
  width: 100%;
  margin-bottom: 8px;
  overflow: hidden;
  border-radius: 8px;
}

.case-study-testimonial-img img {
  width: 100%;
  height: 275px;
  object-fit: cover;
  display: block;
}

.case-study-testimonial-text {
  font-size: 14px;
  line-height: 1.7;
  color: #333;
}

.case-study-testimonial-author {
  font-size: 12px;
  color: #666;
  font-style: normal;
}

/* Tablet styles - 768px to 1023px */
@media (max-width: 1023px) {
  .case-study-content {
    grid-template-columns: 1fr;
    padding: 0 40px;
    gap: 40px;
  }

  .case-study-title {
    font-size: 28px;
  }

  .case-study-data-value {
    font-size: 20px;
  }
}

/* Mobile styles - below 768px */
@media (max-width: 767px) {
  .case-study-container {
    padding: 20px 16px;
  }

  .case-study-content {
    padding: 24px 0;
    gap: 32px;
  }

  .case-study-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .case-study-avatar svg {
    width: 60px;
    height: 60px;
  }

  .case-study-title {
    font-size: 24px;
  }

  .case-study-subtitle {
    font-size: 14px;
  }

  .case-study-section h2 {
    font-size: 18px;
  }

  .case-study-section p,
  .case-study-section ul li,
  .case-study-testimonial-text {
    font-size: 14px;
  }

  .case-study-performance-card,
  .case-study-testimonial-card {
    padding: 24px;
  }

  .case-study-performance-card h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .case-study-data-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-bottom: 12px;
  }

  .case-study-data-label {
    font-size: 14px;
  }

  .case-study-data-value {
    font-size: 20px;
  }

  .case-study-testimonial-author {
    font-size: 14px;
  }

  .case-study-testimonial-img img {
    height: 375px;
  }
}

/* Small mobile - below 480px */
@media (max-width: 479px) {
  .case-study-container {
    padding: 16px 12px;
  }

  .case-study-content {
    padding: 20px 0;
    gap: 24px;
  }

  .case-study-left-section {
    gap: 24px;
  }

  .case-study-data-value {
    font-size: 18px;
  }
}

/* Review Section Container */
.review-section {
  padding: 48px 0;
}

.review-section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Heading */
.review-section-heading {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 40px;
  line-height: 1.3;
}

/* Stats Grid */
.review-section-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.review-section-stat {
  padding: 24px;
  text-align: center;
}

.review-section-stat-value {
  font-size: 32px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.review-section-stat-label {
  font-size: 16px;
  color: #666;
  line-height: 1.4;
}

/* Review Cards Grid */
.review-section-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

/* Individual Card */
.review-section-card {
  background: white;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.review-section-card-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.review-section-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
}

/* Avatar Color Variants */
.review-section-avatar-yellow {
  background-color: #FFF4CC;
}

.review-section-avatar-green {
  background-color: #D4F4DD;
}

.review-section-avatar-light-green {
  background-color: #E8F8E8;
}

.review-section-avatar-pink {
  background-color: #FFE8F0;
}

.review-section-avatar-orange {
  background-color: #FFE5CC;
}

.review-section-avatar-blue {
  background-color: #E3F2FD;
}

.review-section-info {
  flex: 1;
}

.review-section-name {
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.review-section-stars {
  display: block;
}

.review-section-stars svg {
  display: block;
}

.review-section-text {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 12px;
}

.review-section-date {
  font-size: 13px;
  color: #999;
}

/* Footer Section */
.review-section-footer {
  text-align: center;
}

.review-section-footer-text {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Button */
.review-section-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: #1a1a1a;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  margin-bottom: 32px;
}

.review-section-cta:hover {
  background: #f9f9f9;
  border-color: #ccc;
}

/* Platform Links */
.review-section-platforms {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.review-section-platform-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #666;
  text-decoration: none;
  font-size: 14px;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.review-section-platform-link:hover {
  color: #1a1a1a;
}

.review-section-platform-link svg {
  height: 20px;
  width: auto;
  flex-shrink: 0;
}

.review-heading-block {
  display: block;
}

.review-text-star {
  color: #00b67a
}

/* Tablet Styles */
@media (min-width: 768px) {
  .review-section {
    padding: 64px 0;
  }

  .review-section-heading {
    font-size: 36px;
    margin-bottom: 56px;
  }

  /* Stats: 2 columns */
  .review-section-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 64px;
  }

  /* Cards: 2 columns */
  .review-section-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 64px;
  }

  .review-section-footer-text {
    font-size: 17px;
    margin-bottom: 32px;
  }

  .review-section-platforms {
    flex-direction: row;
    justify-content: center;
    gap: 32px;
  }
}

/* Desktop Styles */
@media (min-width: 1024px) {
  .review-section {
    padding: 80px 0;
  }

  .review-section-heading {
    font-size: 40px;
    margin-bottom: 64px;
  }

  /* Stats: 4 columns */
  .review-section-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Cards: 3 columns */
  .review-section-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .review-section-avatar {
    width: 60px;
    height: 60px;
  }

  .review-section-name {
    font-size: 17px;
  }

  .review-section-text {
    font-size: 15px;
  }
}

/* Guarantee Section */
.guarantee-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Guarantee Section */
.guarantee-section {
  padding: 60px 0;
  background: #ffffff;
}

.guarantee-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.guarantee-section-title {
  font-size: 28px;
  font-weight: 400;
  color: #333333;
  margin-bottom: 16px;
  line-height: 1.3;
}

.guarantee-section-highlight {
  color: #4169E1;
  font-weight: 400;
}

.guarantee-section-subtitle {
  font-size: 16px;
  color: #666666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Remove blue link styling */
.guarantee-section a {
  color: inherit;
  text-decoration: none;
}

/* Guarantee Cards */
.guarantee-section-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 60px;
}

.guarantee-section-card {
  background: #F8F8F8;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.guarantee-section-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
}

.guarantee-section-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.guarantee-section-card-title {
  font-size: 18px;
  font-weight: 500;
  color: #333333;
  margin-bottom: 16px;
}

.guarantee-section-card-text {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.guarantee-section-card-footer {
  font-size: 13px;
  color: #999999;
  margin-top: auto;
}

/* Certifications */
.guarantee-section-certifications {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.guarantee-section-cert {
  text-align: center;
  display: flex;
  flex-direction: column;
}

.guarantee-section-cert-logo {
  margin-bottom: 16px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dblock-subheading-guarantees {
  display: block;
}

.guarantee-section-cert-logo.trustmark img {
  max-width: 150px;
}

.guarantee-section-cert-logo img {
  max-width: 100px;
  max-height: 60px;
  height: auto;
  width: auto;
}

.guarantee-section-cert-title {
  font-size: 16px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 8px;
}

.guarantee-section-cert-desc {
  font-size: 13px;
  color: #666666;
  line-height: 1.5;
}

/* Tablet & Desktop */
@media (min-width: 768px) {
  .guarantee-section-title {
    font-size: 36px;
  }

  .guarantee-section-subtitle {
    font-size: 18px;
  }

  .guarantee-section-cards {
    grid-template-columns: auto auto;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .guarantee-section-certifications {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* CTA Section */
.cta-section {
  background: linear-gradient(180deg, #012360 0%, #010e27 100%);
  color: #ffffff;
  padding: 60px 0 80px;
  text-align: center;
}

.cta-section-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

.cta-section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.3;
}

.cta-section-subtitle {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
  color: #e0e0e0;
}

.highlight {
  color: inherit;
  font-weight: 400;
}

.cta-section-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 56px;
  align-items: center;
}

.cta-section-steps-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 40px;
}

.cta-section-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}

.cta-section-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-section-step-number {
  background: transparent;
  color: #ffffff;
  width: 48px;
  height: 48px;
  border: 2px dashed #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
}

.cta-section-step-text {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.cta-section-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  align-items: center;
}

.cta-section-contact-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.cta-section-contact-link:hover {
  color: #e0e0e0;
}

.cta-section-notice {
  font-size: 14px;
  margin: 0;
  color: #e0e0e0;
}

@media (min-width: 768px) {
  .cta-section-title {
    font-size: 40px;
  }

  .cta-section-subtitle {
    font-size: 20px;
  }

  .cta-section-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .cta-section-steps {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .cta-section-step {
    flex: 1;
  }

  .cta-section-contact {
    flex-direction: row;
    justify-content: center;
    gap: 40px;
  }
}


/* Footer */
.footer {
  background-color: #010e27;
  color: #ffffff;
  padding: 48px 0 24px;
}

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

/* Footer Content Grid */
.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

/* Brand Column */
.footer-brand {
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #ffffff;
}

.footer-logo svg {
  color: #ffffff;
}

.footer-description {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.footer-contact {
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  flex-direction: column;
  display: flex;
  gap: 8px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 8px 0;
}

.contact-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-contact a:hover {
  color: #ffffff;
}

/* Footer Columns */
.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-hidden {
  display: none;
}

.footer-heading {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #ffffff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links li {
  padding-left: 0;
}

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

.footer-links a:hover {
  color: #ffffff;
}

/* Certifications */
.footer-cert-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-cert-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.cert-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

/* Trust Line */
.footer-trust {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}

.footer-trust p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin: 0;
}

/* Bottom Bar */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  text-align: center;
}

.footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.symbol-img {
  width: 40px;
  height: auto;
}

.footer-legal a:hover {
  color: #ffffff;
}

/* Tablet */
@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-copyright,
  .footer-trust p {
    text-align: left;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .footer {
    padding: 64px 0 32px;
  }

  .footer-content {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
  }
}

@media screen and (max-width: 767px) {
  .faq-title {
    font-size: 1rem;
    font-weight: 400;
  }

  .review-section-stats {
    grid-template-columns: auto auto;
  }

  .review-section-stat-value {
    font-size: 24px;
  }
}

@media screen and (max-width: 479px) {
  .dblock-heading span {
    display: block;
  }

  .dblock-subheading-guarantees {
    display: inline;
  }

  .review-heading-block {
    display: inline;
  }
}