/* General reset-ish */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #111827;
  background: #f9fafb;
  /*background: linear-gradient(135deg, #F5F7FA 0%, #E8F0FE 25%, #FCE7F3 50%, #F3E8FF 75%, #DBEAFE 100%);*/
}


.kedebideri-regular {
  font-family: "Kedebideri", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* Hero section */
.hero {
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    #ede9fe,
    #f5f3ff,
    #eff6ff
  );
  /*background: linear-gradient(135deg, #F5F7FA 0%, #E8F0FE 25%, #FCE7F3 50%, #F3E8FF 75%, #DBEAFE 100%);*/
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.hero-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 2rem;
  display: flex;
  flex-direction: column;
}

.logo-image {
  /*width: clamp(150px, 20vw, 250px);*/
  height: auto;
  display: block;
  margin: -15px auto 1rem;
}

/* Header */
.header {
  text-align: center;
  margin-bottom: 4rem;
}

.logo {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #4b5563;
}

/* Main content layout */
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.laptop-wrapper {
  width: 100%;
  max-width: 520px;
}

.laptop-image {
  width: 100%;
  height: auto;
  display: block;
  /*filter: drop-shadow(0 25px 50px rgba(15, 23, 42, 0.35));*/
}

/* Text block */
.text-block {
  max-width: 520px;
  text-align: center;
  /*font-family: "Kedebideri", sans-serif;*/
  font-family: "Open Sans", sans-serif;  
  font-weight: 300;
  font-style: normal;
  font-size: 2.5rem;
}

.headline {
  /*font-size: clamp(2.25rem, 4vw, 3rem);*/
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  font-weight: 300;
}

.headline em {
  font-style: italic;
}

/* Buttons */
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.5rem;
  border-radius: 999px;
  background: #4f46e5;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 12px 25px rgba(79, 70, 229, 0.35);
  transition: background-color 150ms ease, box-shadow 150ms ease,
    transform 150ms ease;
}

.primary-button:hover {
  background: #4338ca;
  box-shadow: 0 16px 30px rgba(79, 70, 229, 0.45);
  transform: translateY(-1px);
}

/* Login button */
.login-button {
  position: absolute;
  top: 1.5rem;
  right: 2rem;

  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  background: #ffffff;
  color: #4f46e5;
  border:#4f46e5 2px solid;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
  transition: background-color 150ms ease, box-shadow 150ms ease,
    transform 150ms ease;
}

.login-button:hover {
  background: #4338ca;
  color: #ffffff;
  box-shadow: 0 6px 15px rgba(79, 70, 229, 0.45);
  transform: translateY(-1px);
}

.mobil-login-button {
padding: 0.6rem 1.4rem;
  border-radius: 999px;
  background: #ffffff;
  color: #4f46e5;
  border:#4f46e5 2px solid;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
  transition: background-color 150ms ease, box-shadow 150ms ease,
    transform 150ms ease;
}

.mobil-login-button:hover {
  background: #4338ca;
  color: #ffffff;
  box-shadow: 0 6px 15px rgba(79, 70, 229, 0.45);
  transform: translateY(-1px);
  -webkit-tap-highlight-color: #4338ca;
}

/* Ensure header is positioned */
.header {
  position: relative;
}


/* Footer */
.footer {
  margin-top: auto;
  padding-top: 3rem;
}

.disclaimer {
  font-size: 0.75rem;
  line-height: 1.6;
  text-align: center;
  color: #4b5563;
  max-width: 800px;
  margin: 0 auto;
}

/* Form section */
.form-section {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  padding: 3rem 1.5rem 4rem;
}

.form-inner {
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
}

.form-inner h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.form-description {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 1.75rem;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 0.9rem;
  color: #374151;
}

.form-input {
  padding: 0.7rem 0.85rem;
  border-radius: 0.5rem;
  border: 1px solid #d1d5db;
  font-size: 0.95rem;
}

.form-input:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.25);
}

.form-button {
  align-self: flex-start;
  font-size: 1rem;
}

/* Hide honeypot field */
.hidden-field {
  display: none;
}

/* Responsive Layout for Smaller Screens */
@media (max-width: 768px) {
  .header {
    margin-bottom: 1rem;
  }

  .logo-image {
    max-width: 100%;
  }

  .login-button {
    display: none;
  }
}


/* Responsive layout for larger screens */
@media (min-width: 1024px) {
  .content {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5rem;
  }

  .text-block {
    text-align: left;
    align-items: flex-start;
  }

  .mobil-login-button {
    display: none;
  }

}


/* || Thank You Page Styles || */
/* Thank-you page layout override */
.thankyou-page {
  display: flex;
  flex-direction: column;  /* stack vertically */
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 40vh;
  gap: 1rem;
  padding: 2rem;
}