/* ===== Webflow badge override ===== */
.w-webflow-badge {
  position: fixed !important;
  display: none !important;
  visibility: hidden !important;
}

/* ===== Pricing Section ===== */
:root {
  --dark: #08292d;
  --blue: #089bab;
  --light-bg: #f3f8fb;
  --border: #f3f8fb;
  --text-light: #08292d;
}

.pricing-section {
  max-width: 1344px;
  margin: 32px auto;
  padding: 0 20px;
}

.pricing-title {
  text-align: center;
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 40px;
  color: var(--dark);
  font-weight: 700;
  text-wrap: balance;
}

.billing-toggle {
  background: var(--light-bg);
  width: fit-content;
  max-width: 100%;
  margin: 2rem auto 50px;
  border-radius: 999px;
  padding: 6px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.toggle-btn {
  border: none;
  background: transparent;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 18px;
  cursor: pointer;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.25s;
  min-height: 48px;
  text-align: center;
}

.toggle-btn.active {
  background: white;
  color: var(--dark);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.pricing-label {
  display: inline-block;
  background: var(--blue);
  color: white;
  font-size: 14px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.discount-badge {
  background: var(--blue);
  color: white;
  font-size: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
}

.pricing-card,
.addons-card {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 32px;
  min-width: 0;
}

.product-name {
  font-size: 54px;
  line-height: 1.05;
  margin-bottom: 12px;
  color: var(--dark);
  overflow-wrap: anywhere;
}

.price-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

#price {
  font-size: 52px;
  line-height: 1;
  font-weight: 700;
  color: var(--dark);
  overflow-wrap: anywhere;
}

.per {
  font-size: 28px;
  line-height: 1.1;
  color: var(--text-light);
}

.price-note {
  margin-top: 8px;
  margin-bottom: 30px;
  color: var(--blue);
  font-size: 20px;
  line-height: 1.35;
  min-height: 28px;
  overflow-wrap: anywhere;
}

/* ===== Features ===== */
.features {
  list-style: none;
  margin-bottom: 30px;
}

.features li {
  margin-bottom: 14px;
  padding-left: 28px;
  position: relative;
  font-size: 20px;
  line-height: 1.4;
  color: var(--dark);
  overflow-wrap: anywhere;
}

.features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: 700;
}

/* ===== CTA Button ===== */
.cta-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--blue);
  color: white;
  text-decoration: none;
  padding: 18px;
  border-radius: 14px;
  font-size: 20px;
  font-weight: 700;
  transition: 0.25s;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

/* ===== Addons ===== */
.addons-card h3 {
  font-size: 32px;
  line-height: 1.15;
  margin-bottom: 10px;
  color: var(--dark);
}

.addons-card p {
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-light);
  margin-bottom: 25px;
}

.addon-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 16px;
  font-size: 18px;
}

.addon-item span {
  overflow-wrap: anywhere;
}

.addon-item span:last-child {
  color: var(--dark);
  opacity: 0.7;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ===== Pricing Responsive ===== */
@media (max-width: 1000px) {
  .pricing-title {
    font-size: 42px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .product-name {
    font-size: 44px;
  }
  #price {
    font-size: 42px;
  }
  .per {
    font-size: 22px;
  }
  .features li {
    font-size: 18px;
  }
  .addon-item {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .pricing-section {
    padding: 0 16px;
  }
  .pricing-title {
    font-size: 34px;
    margin-bottom: 28px;
  }
  .billing-toggle {
    margin: 1.5rem auto 32px;
    width: 100%;
    border-radius: 22px;
  }
  .toggle-btn {
    flex: 1 1 220px;
    padding: 12px 18px;
    font-size: 16px;
  }
  .pricing-card,
  .addons-card {
    padding: 24px;
    border-radius: 22px;
  }
  .pricing-label {
    font-size: 12px;
    padding: 6px 12px;
    margin-bottom: 16px;
  }
  .product-name {
    font-size: 36px;
    margin-bottom: 10px;
  }
  #price {
    font-size: 38px;
  }
  .per {
    font-size: 20px;
  }
  .price-note {
    font-size: 18px;
    margin-bottom: 24px;
  }
  .features {
    margin-bottom: 24px;
  }
  .features li {
    font-size: 17px;
    padding-left: 24px;
    margin-bottom: 12px;
  }
  .cta-btn {
    padding: 16px;
    font-size: 18px;
  }
  .addons-card h3 {
    font-size: 26px;
  }
  .addons-card p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .addon-item {
    padding: 16px;
    font-size: 16px;
    border-radius: 14px;
  }
}

@media (max-width: 480px) {
  .pricing-section {
    margin: 24px auto;
    padding: 0 12px;
  }
  .pricing-title {
    font-size: 28px;
    margin-bottom: 22px;
  }
  .billing-toggle {
    padding: 5px;
    gap: 6px;
    margin: 1.25rem auto 24px;
  }
  .toggle-btn {
    width: 100%;
    flex: 1 1 100%;
    font-size: 15px;
    padding: 11px 14px;
    gap: 8px;
  }
  .discount-badge {
    font-size: 12px;
    padding: 3px 8px;
  }
  .pricing-grid {
    gap: 18px;
  }
  .pricing-card,
  .addons-card {
    padding: 18px;
    border-radius: 18px;
  }
  .product-name {
    font-size: 30px;
  }
  .price-wrap {
    gap: 6px;
    margin-bottom: 8px;
  }
  #price {
    font-size: 32px;
  }
  .per {
    font-size: 18px;
  }
  .price-note {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 20px;
    min-height: auto;
  }
  .features li {
    font-size: 15px;
    line-height: 1.45;
  }
  .cta-btn {
    font-size: 17px;
    padding: 15px;
    border-radius: 12px;
  }
  .addons-card h3 {
    font-size: 22px;
  }
  .addons-card p {
    font-size: 15px;
  }
  .addon-item {
    flex-direction: column;
    gap: 8px;
    font-size: 15px;
    padding: 14px;
  }
  .addon-item span:last-child {
    white-space: normal;
  }
}

@media (max-width: 320px) {
  .pricing-section {
    padding: 0 10px;
  }
  .pricing-title {
    font-size: 24px;
  }
  .billing-toggle {
    border-radius: 16px;
    margin: 1rem auto 20px;
  }
  .toggle-btn {
    font-size: 14px;
    padding: 10px 12px;
    min-height: 44px;
  }
  .pricing-card,
  .addons-card {
    padding: 14px;
    border-radius: 16px;
  }
  .pricing-label {
    font-size: 11px;
    padding: 5px 10px;
    margin-bottom: 14px;
  }
  .product-name {
    font-size: 26px;
    margin-bottom: 8px;
  }
  #price {
    font-size: 28px;
  }
  .per {
    font-size: 16px;
  }
  .price-note {
    font-size: 14px;
    margin-bottom: 18px;
  }
  .features li {
    font-size: 14px;
    padding-left: 22px;
    margin-bottom: 10px;
  }
  .cta-btn {
    font-size: 16px;
    padding: 14px;
  }
  .addons-card h3 {
    font-size: 20px;
  }
  .addons-card p {
    font-size: 14px;
    margin-bottom: 16px;
  }
  .addon-item {
    font-size: 14px;
    padding: 12px;
    border-radius: 12px;
  }
}

/* ===== Contact Modal ===== */
.contact-modal {
  display: flex;
  position: fixed;
  inset: 0;
  justify-content: center;
  align-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 2000;
}

.contact-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 17, 18, 0.58);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
}

.contact-modal__panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 560px;
  max-height: calc(100dvh - 24px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  border-top: 3px solid #0ea5a8;
}

.contact-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 999px;
  background: #f3f7f7;
  color: #1f2d2f;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.contact-modal__close:hover {
  background: #e8eeee;
  transform: scale(1.04);
}

.contact-heading {
  margin: 0 0 24px;
  padding-right: 44px;
  font-size: 32px;
  line-height: 1.1;
  font-weight: 700;
  color: #102325;
}

.contact-form {
  width: 100%;
}

.top-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
}

.name-wrapper,
.email-wrapper,
.message-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.name-wrapper label,
.email-wrapper label,
.message-wrapper label {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  color: #304244;
}

.text-field {
  width: 100%;
  min-height: 52px;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid #d7e2e3;
  border-radius: 12px;
  background: #f8fafa;
  color: #102325;
  font-size: 15px;
  line-height: 1.4;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  box-sizing: border-box;
}

.text-field::placeholder {
  color: #8b9a9c;
}

.text-field:focus {
  outline: none;
  border-color: #0ea5a8;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(14, 165, 168, 0.12);
}

textarea.text-field {
  min-height: 140px;
  resize: vertical;
}

.submit,
input.submit,
.top-form input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  width: 100%;
  margin-top: 4px;
  padding: 14px 20px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #0ea5a8 0%, #089bab 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    box-shadow 0.2s ease;
}

.submit:hover,
input.submit:hover,
.top-form input[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(14, 165, 168, 0.35);
}

.contact-form__footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #e8eeee;
  font-size: 13px;
  line-height: 1.6;
  color: #6c7c7e;
}

.oou-link {
  color: #0ea5a8;
  text-decoration: none;
  font-weight: 500;
}

.oou-link:hover {
  text-decoration: underline;
}

.w-form-done,
.w-form-fail {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
}

.w-form-done {
  background: #ecfdf5;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.w-form-fail {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

@media screen and (max-width: 767px) {
  .contact-modal {
    padding: 16px;
    align-items: center;
  }
  .contact-modal__panel {
    width: 100%;
    max-width: 100%;
    max-height: calc(100dvh - 32px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 24px 20px 20px;
    border-radius: 20px;
  }
  .contact-heading {
    font-size: 26px;
    padding-right: 36px;
    margin-bottom: 20px;
  }
  .text-field {
    min-height: 50px;
    font-size: 16px;
  }
  textarea.text-field {
    min-height: 120px;
  }
}
