:root {
  --primary-color: #141144;
  --secondary-color: #2f2d76;
  --accent-color: #4a90e2;
  --text-color: #ffffff;
}

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

a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  text-decoration: none;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  margin: 0;
  padding: 20px 0 60px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: var(--text-color);
  text-align: center;
}

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

.logo-container {
  margin: 2rem 0;
  transition: transform 0.3s ease;
}

.logo-container:hover {
  transform: scale(1.05);
}

img {
  max-width: 15%;
  height: auto;
  border-radius: 100%;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 1rem 0;
  background: linear-gradient(45deg, #fff, #4a90e2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeIn 1s ease-in;
}

h2 a {
  color: #91c5f9;
  text-decoration: underline;
  font-size: 20px;
}

h2 small {
  margin: 20px 0;
  display: inline-block;
}

.tagline {
  font-size: 1.5rem;
  margin: 0.5rem 0;
  opacity: 0.9;
  line-height: 1.6;
}

.description {
  font-size: 1.2rem;
  margin: 1rem 0;
  color: #b8c2cc;
}

.process-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  height: 40px;
  position: relative;
  z-index: 9;
}

.process-word {
  font-size: 1.2rem;
  font-weight: 500;
  color: #4a90e2;
  opacity: 0;
  cursor: pointer;
  position: relative;
  transition: opacity 0.8s ease, transform 0.8s ease, color 0.3s;
  padding: 5px 10px;
  z-index: 9999;
}

.process-word::after {
  content: "";
  position: absolute;
  left: 8px;
  bottom: 4px;
  width: 80%;
  height: 9px;
  background: linear-gradient(
    90deg,
    rgba(255, 105, 180, 0.8) 0%,
    rgba(147, 112, 219, 0.8) 35%,
    rgba(0, 191, 255, 0.8) 70%,
    rgba(50, 205, 50, 0.8) 100%
  );
  mask: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="100" height="8" viewBox="0 0 100 8"%3E%3Cpath d="M0,4 Q 7,0 14,4 T 28,4 T 42,4 T 56,4 T 70,4 T 84,4 T 98,4" fill="none" stroke="black" stroke-width="3" /%3E%3C/svg%3E')
    repeat-x;
  mask-size: auto 100%;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
  transform-origin: bottom left;
  transition: transform 0.3s ease;
  z-index: -1;
}

.process-word:hover {
  color: #2980b9;
}

.process-word.visible {
  opacity: 1;
  transform: translateY(0);
}

.process-word.hidden {
  opacity: 0;
  transform: translateY(10px);
}

.process-word.active {
  color: #64b5f6;
}

.tooltip {
  position: absolute;
  bottom: -180px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(15, 14, 46);
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  width: max-content;
  max-width: 250px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  font-size: 15px;
  text-align: center;
  z-index: 100;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.tooltip::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent rgba(15, 14, 46, 0.95) transparent;
}

.tooltip.active {
  opacity: 1;
  visibility: visible;
}

.tooltip p {
  margin: 0;
  line-height: 1.4;
}

.start-now-link {
  display: inline-block;
  padding: 12px 25px;
  margin-top: 10px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  background-color: #211891;
  color: white;
  border-radius: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.start-now-link:hover {
  background-color: #12064d;
  transform: translateY(-2px);
}

.start-now-link:active {
  transform: translateY(2px);
}

/* Domain Input Styles */
.domain-input-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px 0;
  padding: 0 20px;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: fixed;
  bottom: 60px;
  left: 0;
  right: 0;
  z-index: 1;
  transition: bottom 0.3s ease;
}

.domain-input-container.keyboard-visible {
  bottom: 10%;
}

.domain-input {
  max-width: 300px;
  padding: 12px 20px;
  font-size: 1rem;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  outline: none;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.domain-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.domain-input:focus {
  border-color: #4a90e2;
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.3);
}

.wp-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}

.wp-logo {
  margin-right: 5px;
}

.qm {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .domain-input {
    max-width: 70%;
  }
}

footer {
  background-color: rgba(15, 14, 46, 0.95);
  backdrop-filter: blur(10px);
  width: 100%;
  padding: 1.5rem 0;
  position: fixed;
  bottom: 0;
  left: 0;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
}

footer p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  .tagline {
    font-size: 1.2rem;
  }

  .description {
    font-size: 1rem;
  }

  img {
    max-width: 35%;
  }

  .container {
    padding: 1rem;
  }

  .process-container {
    gap: 15px;
  }

  .process-word {
    font-size: 1rem;
  }

  .wp-logo {
    margin-bottom: initial;
  }

  .tooltip {
    max-width: 210px;
    font-size: 0.8rem;
    bottom: -100px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  img {
    max-width: 25%;
  }

  footer {
    padding: 1rem 0;
  }

  .process-container {
    flex-direction: column;
    height: auto;
  }

  #tooltip1 {
    bottom: -255px;
  }

  #tooltip2 {
    bottom: -210px;
  }

  #tooltip3 {
    bottom: -165px;
  }

  .process-word::after {
    left: 40%;
    bottom: -8px;
    width: 20%;
  }
}

.contact-form {
  max-width: 450px;
  margin: 40px auto;
  padding: 20px;
  font-family: Arial, sans-serif;
}

.contact-form h2 {
  margin-bottom: 20px;
}

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

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  text-align: right;
}

.contact-ltr .form-group label {
  text-align: left;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #007cba;
}

.form-group textarea {
  height: 60px;
  resize: vertical;
}

.submit-btn {
  background-color: #007cba;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}

.submit-btn:hover:not(:disabled) {
  background-color: #005a87;
}

.submit-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.message {
  padding: 15px;
  margin: 20px 0;
  border-radius: 5px;
  display: none;
}

.message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  font-style: oblique;
}

.message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.loading {
  display: none;
  text-align: center;
  padding: 10px;
  color: #666;
}

.required {
  color: #e74c3c;
}

.phone-hint {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
}

.installation-guide {
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
}

.guide-header {
  text-align: center;
  margin-bottom: 40px;
  border-bottom: 2px solid #667eea;
}

.guide-header h1 {
  font-size: 2.5rem;
  color: #667eea;
  margin-bottom: 15px;
  font-weight: 700;
}

.guide-header .subtitle {
  font-size: 1.3rem;
  color: #003cff;
  margin-bottom: 20px;
  font-weight: 700;
  font-style: oblique;
}

.rocket-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.overview-section {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
}

.overview-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.process-step {
  background: rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.process-step-number {
  background: white;
  color: #667eea;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-weight: bold;
  font-size: 1.2rem;
}

.time-info {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.time-item {
  background: rgba(255, 255, 255, 0.2);
  padding: 15px 25px;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.guide-section {
  margin-bottom: 50px;
  padding: 30px;
  border-radius: 15px;
  border: 1px solid #e0e6ff;
}

.guide-section h2 {
  color: #667eea;
  font-size: 1.8rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #667eea;
}

.guide-section h3 {
  color: #001fff;
  font-size: 1.4rem;
  margin: 25px 0 15px 0;
}

.guide-section h4 strong {
  text-decoration: underline;
}

.checklist {
  list-style: none;
  margin: 20px 0;
}

.checklist li {
  padding: 12px 0;
  position: relative;
  font-size: 1.1rem;
}

.info-box {
  border: 1px solid #b3d9ff;
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
  border-right: 4px solid #667eea;
}

.prod-ai {
  margin: 20px auto;
  inline-size: fit-content;
  background: #00254c;
  border: none;
}

.info-box h4 {
  color: #667eea;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.warning-box {
  border: 1px solid #ffeaa7;
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
  border-right: 4px solid #fdcb6e;
}

.security-note {
  border: 1px solid #c3e6cb;
  border-radius: 10px;
  padding: 15px;
  margin: 15px 0;
  border-right: 4px solid #28a745;
}

.cost-info {
  background: linear-gradient(180deg, #007cba, #19487d);
  padding: 25px;
  border-radius: 15px;
  margin: 20px 0;
  text-align: center;
}

.set-it {
  border: solid 1px;
  border-radius: 10px;
  inline-size: fit-content;
  padding: 10px 20px;
  margin: auto;
  background: #2f5291;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.benefit-item {
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e6ff;
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.contact-section {
  background: linear-gradient(135deg, #13147b, #364db7);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  margin-top: 50px;
}

.contact-section h2 {
  margin-bottom: 30px;
  font-size: 2rem;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.contact-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item p {
  margin-top: 10px;
  font-size: 16px;
}

.numbered-steps-wrapper {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.numbered-steps {
  counter-reset: step-counter;
  text-align: right;
}

.numbered-steps a {
  font-size: 18px;
}

.numbered-steps li {
  counter-increment: step-counter;
}

#calendarEmbed {
  background: #fff;
  overflow-y: auto;
}

#loginSection {
  display: flex;
  justify-content: center;
}

#loginWrapper h1 {
  margin-bottom: 60px;
}

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

  .installation-guide {
    padding: 20px;
    border: none;
  }

  .guide-header h1 {
    font-size: 2rem;
  }

  .guide-header .subtitle {
    font-size: 1.1rem;
  }

  .time-info {
    flex-direction: column;
    text-align: center;
  }

  .mobile-set {
    display: none;
  }

  .numbered-steps {
    width: 90%;
    margin-right: 15px;
  }
}

.privacy-policy-group {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 20px 0;
}

.privacy-policy-group input[type="checkbox"] {
  width: auto !important;
  margin: 0 !important;
  margin-top: 3px !important;
  flex-shrink: 0;
}

.privacy-policy-group label {
  font-weight: normal !important;
  font-size: 14px;
  line-height: 1.4;
  margin: 0 !important;
  display: inline !important;
}

.privacy-policy-group a {
  color: #3498db;
  text-decoration: none;
}

.privacy-policy-group a:hover {
  text-decoration: underline;
}

.odb-privacy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  line-height: 1.6;
  font-family: Arial, sans-serif;
}

.odb-privacy-section-hebrew {
  direction: rtl;
  text-align: right;
  margin-bottom: 40px;
}

.odb-privacy-section-english {
  direction: ltr;
  text-align: left;
  margin-bottom: 40px;
}

.odb-privacy-title {
  font-size: 1.4em;
  font-weight: bold;
  margin: 25px 0 15px 0;
}

.odb-privacy-paragraph {
  margin-bottom: 20px;
  color: #555;
}

.odb-privacy-highlight {
  font-weight: bold;
}

.odb-privacy-email-link {
  color: #0066cc;
  text-decoration: none;
}

.odb-privacy-email-link:hover {
  text-decoration: underline;
}
