.section-header {
  text-align: center;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
.section-header h2 {
  font-size: 2.2rem;
  color: var(--text-dark);
  margin: 0 0 15px 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--primary);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  margin-bottom: 25px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}
.badge i,
.badge svg {
  width: 18px;
  height: 18px;
  stroke-width: 3px;
  color: var(--white);
}

.badge i[data-lucide="star"],
.badge svg[data-lucide="star"] {
  color: #f59e0b !important;
  fill: #f59e0b !important;
}

.hero-centered {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-centered h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-top: 0;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
  color: var(--text-dark);
}
.highlight-text {
  color: var(--primary);
}
.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 650px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.trust-badges-centered {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1.05rem;
}
.trust-badges-centered .trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-badges-centered .trust-item svg {
  color: #10b981 !important;
  width: 24px;
  height: 24px;
  stroke-width: 2.5px;
}

.hero-form-card {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  text-align: left;
}
.hero-form-card h2 {
  margin-top: 0;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 25px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-footer {
  font-size: 0.85rem;
  text-align: center;
  color: var(--text-light);
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.form-footer svg {
  color: var(--text-light);
}

.input-group,
.form-group {
  margin-bottom: 20px;
}
.input-group label,
.form-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}
.input-group label svg,
.form-group label svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}
.input-group input,
.input-group select,
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid transparent;
  border-radius: 14px;
  font-size: 1.05rem;
  box-sizing: border-box;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  background: #f1f5f9;
  font-family: inherit;
  color: var(--text-dark);
}

.input-group input::placeholder,
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
}

.input-group input:hover,
.input-group select:hover,
.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  background: #e2e8f0;
}

.input-group input:focus,
.input-group select:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: #ffffff;
  outline: none;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.12);
  transform: translateY(-2px);
}
.btn-submit {
  width: 100%;
  background: var(--primary);
  color: white;
  padding: 18px 20px;
  border: none;
  border-radius: 14px;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  transition: all 0.3s ease;
}
.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(37, 99, 235, 0.25);
}
.btn-submit svg {
  color: white;
  width: 20px;
  height: 20px;
}

.input-group select,
.form-group select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%236B7280%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%226%209%2012%2015%2018%209%22%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 18px;
  padding-right: 45px !important;
  cursor: pointer;
}

.section-reviews {
  padding: 80px 20px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.review-card {
  background: #f8fafc;
  border-radius: 16px;
  padding: 30px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.08);
}
.highlight-review {
  background: #ffffff;
  border: 3px solid var(--primary);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.15);
  transform: translateY(-5px);
}
.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 15px;
}
.star-filled {
  color: #f59e0b;
  fill: #f59e0b;
  width: 18px;
  height: 18px;
}
.review-text {
  flex-grow: 1;
  font-size: 1.05rem;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 25px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid #e2e8f0;
  padding-top: 20px;
}
.author-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #e0f2fe;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
}
.author-info h4 {
  margin: 0 0 4px 0;
  font-size: 1rem;
  color: var(--text-dark);
}
.author-info span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.reviews-actions {
  text-align: center;
  margin-top: 50px;
}

.reviews-actions .outline-btn {
  display: inline-flex;
  width: auto;
  padding: 14px 32px;
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  align-items: center;
  gap: 8px;
}

.reviews-actions .outline-btn:hover {
  background: var(--primary);
  color: white !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.reviews-actions .outline-btn i,
.reviews-actions .outline-btn svg {
  color: currentColor;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  background: #f3f4f6;
  color: #374151;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
}
.signal-dot {
  width: 10px;
  height: 10px;
  background-color: currentColor;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
.signal-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: 0.8;
  z-index: 0;
}
@keyframes signal-pulse {
  0% {
    width: 100%;
    height: 100%;
    opacity: 0.8;
    border-width: 2px;
  }
  100% {
    width: 300%;
    height: 300%;
    opacity: 0;
    border-width: 0px;
  }
}
.status-badge.open {
  background: #dcfce7;
  color: #166534;
  border-color: #bbf7d0;
}
.status-badge.open .signal-dot::after {
  animation: signal-pulse 2s infinite ease-out;
}
.status-badge.closed {
  background: #fee2e2;
  color: #991b1b;
  border-color: #fecaca;
}

.trust-bar {
  text-align: center;
  padding: 10px 20px 0;
  margin: 0 auto;
  max-width: 1000px;
  background: transparent;
}
.trust-bar p {
  color: #9ca3af;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
}
.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}
.trust-logos svg {
  width: 36px;
  height: 36px;
  color: #d1d5db;
  transition: all 0.3s ease;
}
.trust-logos svg:hover {
  color: var(--primary);
  transform: translateY(-4px);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.solution-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 30px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  border-color: var(--primary);
}
.solution-icon {
  background: #eff6ff;
  color: var(--primary);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.solution-icon svg {
  width: 24px;
  height: 24px;
}
.solution-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.solution-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.review-card {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 30px;
  text-align: left;
}
.stars {
  color: #f59e0b;
  margin-bottom: 15px;
  display: flex;
  gap: 4px;
}
.stars svg.star-filled {
  width: 18px;
  height: 18px;
  fill: #f59e0b !important;
  stroke: #f59e0b !important;
  color: #f59e0b !important;
}
.review-card p {
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.6;
}
.review-card strong {
  color: var(--primary);
  font-size: 0.95rem;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 15px;
  margin-top: 25px;
}
.step-card {
  flex: 1;
  background: var(--white);
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  position: relative;
  border: 1px solid #f3f4f6;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Keskittää sisällön pystysuunnassa */
}
.step-card p {
  margin-bottom: 20px;
}
.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}
.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  border: 4px solid var(--white);
}
.step-icon {
  width: 60px;
  height: 60px;
  background: #eff6ff;
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto 20px;
}
.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.step-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}
.step-arrow {
  color: #cbd5e1;
  display: flex;
  align-items: center;
}
.step-highlight {
  margin-top: 15px;
  background: #eff6ff;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  border: 1px dashed var(--primary);
}
.step-highlight .highlight-icon {
  width: 16px;
  height: 16px;
}

.guarantee-banner-full {
  background: linear-gradient(135deg, #1e3a8a 0%, var(--primary) 100%);
  color: white;
  padding: 60px 20px;
  margin: 40px 0;
}
.guarantee-content {
  display: flex;
  align-items: center;
  gap: 30px;
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.guarantee-icon-large {
  background: white;
  color: #f59e0b;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.guarantee-icon-large i,
.guarantee-icon-large svg {
  width: 40px;
  height: 40px;
}
.guarantee-text h2 {
  color: white;
  margin-top: 0;
  font-size: 2rem;
  margin-bottom: 10px;
}
.guarantee-text p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
}

.table-wrapper {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  overflow-x: auto;
}
.service-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.service-table th {
  background: #f9fafb;
  padding: 20px;
  text-align: left;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}
.service-table td {
  padding: 18px 20px;
  border-bottom: 1px solid #f3f4f6;
  vertical-align: middle;
  transition: background 0.2s ease;
}
.service-table th div {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.service-table th div i,
.service-table th div svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}
.service-table tbody tr {
  transition: background-color 0.2s ease;
}
.service-table tbody tr:hover {
  background-color: #f8fafc;
}
.service-name {
  font-weight: 700;
  color: var(--primary);
}
.center {
  text-align: center;
}
.check {
  color: #10b981 !important;
  stroke-width: 3px;
}
.cross {
  color: #d1d5db;
  opacity: 0.6;
}
.desc {
  color: var(--text-light);
  font-size: 0.95rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
  align-items: stretch;
}
.pricing-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 40px 25px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}
.pricing-card.popular {
  border: 2px solid var(--primary);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.12);
  transform: translateY(-8px);
}
.pricing-card.popular:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.18);
}
.badge-popular {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}
.card-header h3 {
  font-size: 1.5rem;
  margin: 0 0 5px;
}
.card-header p {
  color: var(--text-light);
  margin: 0;
  font-size: 0.95rem;
}
.price {
  margin: 15px 0;
  color: var(--text-dark);
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 15px;
}
.price .amount {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -1.5px;
}
.price .period {
  color: var(--text-light);
  font-size: 0.95rem;
}
.tax-note {
  background: #f0fdf4;
  border: 1px dashed #22c55e;
  color: #166534;
  padding: 10px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
}
.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--text-dark);
}
.features-list li svg {
  color: var(--green) !important;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.btn-pricing {
  display: block;
  text-align: center;
  padding: 15px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.2s;
  margin-top: auto;
}
.btn-pricing.primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}
.btn-pricing.primary:hover {
  background: var(--primary-dark);
}
.btn-pricing.outline {
  border: 2px solid #e5e7eb;
  color: var(--text-dark);
}
.btn-pricing.outline:hover {
  border-color: var(--text-dark);
  background: #f9fafb;
}

.guarantee-box {
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 16px;
  padding: 25px;
  display: flex;
  gap: 20px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}
.guarantee-icon {
  background: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.guarantee-icon svg {
  width: 28px;
  height: 28px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.team-card {
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
.team-img {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  position: relative;
}
.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #f3f4f6;
}
.team-info h3 {
  margin: 10px 0 5px;
  font-size: 1.25rem;
  color: var(--text-dark);
}
.team-info .role {
  display: inline-block;
  background: #dbeafe;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 15px;
}
.team-info p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
}

.faq-item {
  background: var(--white);
  border-radius: 16px;
  margin-bottom: 15px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  color: var(--text-dark);
}
.faq-question:hover {
  background: #f8fafc;
}
.faq-question i,
.faq-question svg {
  transition: transform 0.3s ease;
  color: var(--primary);
  flex-shrink: 0;
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0 25px;
  transition: all 0.3s ease-out;
}
.faq-answer p {
  overflow: hidden;
  margin: 0;
  opacity: 0;
  transition: opacity 0.2s ease-out;
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}
.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
  padding-bottom: 25px;
}
.faq-item.active .faq-answer p {
  opacity: 1;
  padding-top: 10px;
  transition: opacity 0.4s ease-out 0.1s;
}
.faq-item.active .faq-question i,
.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.contact-wrapper {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}
.contact-info {
  background: #f8fafc;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-info h2 {
  font-size: 1.8rem;
  margin: 15px 0;
}
.contact-info p {
  color: var(--text-light);
  margin-bottom: 30px;
}
.info-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.info-item p {
  margin-bottom: 0;
  margin-top: 4px;
}
.info-item strong {
  display: block;
  color: var(--text-dark);
}
.icon-box {
  width: 45px;
  height: 45px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.contact-form-box {
  padding: 40px;
}

.floating-support-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--primary);
  color: white;
  padding: 15px 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
  z-index: 999;
  transition:
    transform 0.3s,
    background 0.3s;
}
.floating-support-btn:hover {
  transform: translateY(-5px) scale(1.05);
  background: var(--primary-dark);
}

@media (max-width: 768px) {
  .hero-centered {
    margin-top: 20px;
  }
  .hero-centered h1 {
    font-size: 2.8rem;
    letter-spacing: -1px;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .trust-badges-centered {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero-form-card {
    padding: 30px 20px;
  }
  .status-badge {
    top: 75px;
    right: 15px;
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  .trust-bar {
    padding: 10px 15px 0px;
  }
  .trust-logos {
    gap: 20px;
  }
  .trust-logos svg {
    width: 30px;
    height: 30px;
  }
  .section-header h2 {
    font-size: 1.8rem;
  }
  .section-header p {
    font-size: 1rem;
  }
  .process-steps {
    flex-direction: column;
  }
  .step-arrow {
    transform: rotate(90deg);
    margin: 20px 0;
    display: flex;
    justify-content: center;
    height: 40px;
    align-items: center;
  }
  .pricing-card.popular {
    transform: none;
  }
  .pricing-card.popular:hover {
    transform: translateY(-4px);
  }
  .guarantee-content {
    flex-direction: column;
    text-align: center;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .contact-info {
    padding: 30px;
  }
  .contact-form-box {
    padding: 25px;
  }
  .floating-support-btn {
    display: none;
  }
}

html {
  scroll-behavior: smooth !important;
  scroll-padding-top: 90px !important;
}

header#home,
section.section-spy,
section.container {
  min-height: 0 !important;
  height: auto !important;
  display: block !important;
  padding-top: 0 !important;
}

header#home {
  padding-top: 110px !important;
}

.trust-bar,
.section-process,
.section-services,
.section-pricing,
.section-team,
.section-faq,
.section-contact-detailed,
#solutions,
#reviews,
#guarantee {
  margin-bottom: 60px !important;
  margin-top: 0 !important;
}

@media (max-width: 768px) {
  header#home {
    margin-bottom: 40px !important;
  }
  .trust-bar,
  .section-process,
  .section-services,
  .section-pricing,
  .section-team,
  .section-faq,
  .section-contact-detailed,
  #solutions,
  #reviews,
  #guarantee {
    margin-bottom: 40px !important;
  }
}
