/* Redesigned landing page - full width content window with balanced layout */

.landing-page {
  background: linear-gradient(135deg, #e8f0fe 0%, #ffffff 100%);
  color: #21243d;
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  max-width: 100vw;
  overflow-x: hidden;
  padding: 2.5rem 4rem;
  user-select: text;
  box-sizing: border-box;
}

/* Central Branding */
.branding-header {
  text-align: center;
  margin-bottom: 3rem;
}

.branding-title {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 0.35em;
  color: #3b82f6;
  text-shadow: 0 0 20px #b9e6fb99;
  user-select: text;
  margin: 0;
  word-wrap: break-word;
  hyphens: auto;
}

.branding-tagline {
  font-weight: 700;
  font-size: 1.4rem;
  color: #76a2ce;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
  user-select: text;
  word-wrap: break-word;
}

/* Full Content Split */
.content-split {
  display: flex;
  justify-content: space-between;
  gap: 5rem;
  max-width: 100%;
  margin-bottom: 4rem;
  min-height: 320px;
  user-select: text;
}

.content-block {
  flex: 1 1 45%;
  background: rgba(255, 255, 255, 0.76);
  border-radius: 24px;
  padding: 2rem 2.5rem;
  box-shadow: 0 8px 32px #a2c7ff42, 0 2px 10px #e3edff26 inset;
  color: #293d59;
  transition: box-shadow 0.3s, background 0.3s;
  backdrop-filter: blur(8px) saturate(120%);
  font-size: 1.13rem;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-block:focus,
.content-block:hover {
  outline: none;
  background: rgba(247, 252, 255, 0.98);
  box-shadow: 0 12px 56px #6ec1ff2f, 0 0 28px #53a6ff1a inset;
}

.content-block h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1.4rem;
  color: #2196f3;
  text-shadow: 0 2px 8px #b5e8ff60;
  word-wrap: break-word;
  hyphens: auto;
}

.content-block p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 1.6rem;
  letter-spacing: 0.015em;
  user-select: text;
  color: #3b5dcc;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Button in right content block */
.right-block .btn-primary {
  background: linear-gradient(135deg, #5dbbff 40%, #aedde6 100%);
  color: #222b38;
  border: none;
  padding: 0.85rem 3rem;
  font-weight: 700;
  font-size: 1.15rem;
  border-radius: 9999px;
  box-shadow: 0 4px 24px #b0e9ff8c, 0 2px 8px #89befd57 inset;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s, color 0.3s;
  user-select: none;
  white-space: nowrap;
  box-sizing: border-box;
}

.right-block .btn-primary:hover,
.right-block .btn-primary:focus {
  background: linear-gradient(135deg, #319af6 34%, #e2f3fe 100%);
  color: #1361a7;
  box-shadow: 0 0 18px #95daff99;
  outline: none;
}

/* Visual Divider */
.divider {
  height: 1.5px;
  background: linear-gradient(to right, transparent, #5dbbff, transparent);
  margin-bottom: 4rem;
  border-radius: 8px;
  box-shadow: 0 0 10px #b6dbff50;
}

/* Bottom Feature Highlights */
.feature-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3.5rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
  user-select: text;
}

.feature-item {
  background: linear-gradient(115deg, #d9f4ff 65%, #b6e0ff 130%);
  color: #28377d;
  border-radius: 20px;
  padding: 1.5rem 2.5rem;
  box-shadow: 0 10px 38px #96d1ff40, 0 2px 8px #e2f4ff30 inset;
  text-align: center;
  transition: box-shadow 0.3s, background 0.3s, color 0.3s;
  backdrop-filter: blur(6px) saturate(115%);
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.feature-item:hover,
.feature-item:focus {
  background: linear-gradient(115deg, #f6fcff 40%, #abe4ff 160%);
  color: #1976d2;
  box-shadow: 0 20px 60px #53a6ff30;
  outline: none;
}

.feature-item h3 {
  font-weight: 900;
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: #2196f3;
  text-shadow: 0 2px 9px #92cdff47;
  word-wrap: break-word;
}

.feature-item p {
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.5;
  color: #3365a6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Footer */
.landing-footer {
  text-align: center;
  font-size: 0.97rem;
  font-weight: 500;
  color: #859ec9;
  user-select: none;
  padding-top: 2rem;
  margin-bottom: 0.5rem;
}

/* === Enhanced Responsive Breakpoints === */

/* Large tablets and small desktops */
@media (max-width: 1200px) {
  .landing-page {
    padding: 2rem 3rem;
  }
  
  .branding-title {
    font-size: 3.5rem;
    letter-spacing: 0.3em;
  }
  
  .branding-tagline {
    font-size: 1.3rem;
  }
  
  .content-split {
    gap: 4rem;
  }
  
  .content-block {
    padding: 1.8rem 2rem;
  }
  
  .content-block h2 {
    font-size: 1.8rem;
  }
  
  .content-block p {
    font-size: 1.1rem;
  }
  
  .right-block .btn-primary {
    font-size: 1.1rem;
    padding: 0.8rem 2.5rem;
  }
  
  .feature-highlights {
    gap: 3rem;
    max-width: 1000px;
  }
  
  .feature-item {
    padding: 1.3rem 2rem;
  }
  
  .feature-item h3 {
    font-size: 1.25rem;
  }
  
  .feature-item p {
    font-size: 1rem;
  }
}

/* Tablets */
@media (max-width: 1024px) {
  .landing-page {
    padding: 1.8rem 2.5rem;
  }
  
  .branding-title {
    font-size: 3rem;
    letter-spacing: 0.25em;
  }
  
  .branding-tagline {
    font-size: 1.2rem;
  }
  
  .content-split {
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
  }
  
  .content-block {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 1.6rem 2rem;
  }
  
  .content-block h2 {
    font-size: 1.7rem;
  }
  
  .content-block p {
    font-size: 1.05rem;
  }
  
  .right-block .btn-primary {
    font-size: 1rem;
    padding: 0.75rem 2rem;
  }
  
  .feature-highlights {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    max-width: 800px;
  }
  
  .feature-item {
    padding: 1.2rem 1.8rem;
  }
  
  .feature-item h3 {
    font-size: 1.2rem;
  }
  
  .feature-item p {
    font-size: 0.95rem;
  }
}

/* Small tablets and large phones */
@media (max-width: 768px) {
  .landing-page {
    padding: 1.5rem 2rem;
  }
  
  .branding-header {
    margin-bottom: 2.5rem;
  }
  
  .branding-title {
    font-size: 2.5rem;
    letter-spacing: 0.2em;
  }
  
  .branding-tagline {
    font-size: 1.1rem;
  }
  
  .content-split {
    gap: 2rem;
    margin-bottom: 2.5rem;
  }
  
  .content-block {
    padding: 1.4rem 1.6rem;
    border-radius: 16px;
  }
  
  .content-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
  }
  
  .content-block p {
    font-size: 1rem;
    margin-bottom: 1.4rem;
  }
  
  .right-block .btn-primary {
    width: 100%;
    font-size: 0.95rem;
    padding: 0.7rem 0;
  }
  
  .divider {
    margin-bottom: 3rem;
  }
  
  .feature-highlights {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    max-width: 600px;
  }
  
  .feature-item {
    padding: 1rem 1.5rem;
    border-radius: 16px;
  }
  
  .feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }
  
  .feature-item p {
    font-size: 0.9rem;
  }
}

/* Mobile phones */
@media (max-width: 640px) {
  .landing-page {
    padding: 1.2rem 1rem;
  }
  
  .branding-header {
    margin-bottom: 2rem;
  }
  
  .branding-title {
    font-size: 2rem;
    letter-spacing: 0.15em;
  }
  
  .branding-tagline {
    font-size: 1rem;
  }
  
  .content-split {
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .content-block {
    padding: 1.2rem 1.4rem;
    border-radius: 12px;
  }
  
  .content-block h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  
  .content-block p {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    line-height: 1.6;
  }
  
  .right-block .btn-primary {
    font-size: 0.9rem;
    padding: 0.6rem 0;
  }
  
  .divider {
    margin-bottom: 2rem;
  }
  
  .feature-highlights {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 400px;
  }
  
  .feature-item {
    padding: 0.9rem 1.2rem;
    border-radius: 12px;
  }
  
  .feature-item h3 {
    font-size: 1rem;
    margin-bottom: 0.7rem;
  }
  
  .feature-item p {
    font-size: 0.85rem;
  }
}

/* Small mobile phones */
@media (max-width: 480px) {
  .landing-page {
    padding: 1rem 0.8rem;
  }
  
  .branding-header {
    margin-bottom: 1.5rem;
  }
  
  .branding-title {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
  }
  
  .branding-tagline {
    font-size: 0.9rem;
  }
  
  .content-split {
    gap: 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  .content-block {
    padding: 1rem 1.2rem;
    border-radius: 10px;
  }
  
  .content-block h2 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }
  
  .content-block p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
  }
  
  .right-block .btn-primary {
    font-size: 0.85rem;
    padding: 0.55rem 0;
  }
  
  .divider {
    margin-bottom: 1.5rem;
  }
  
  .feature-highlights {
    gap: 1.2rem;
    max-width: 320px;
  }
  
  .feature-item {
    padding: 0.8rem 1rem;
    border-radius: 10px;
  }
  
  .feature-item h3 {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
  }
  
  .feature-item p {
    font-size: 0.8rem;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .landing-page {
    padding: 0.8rem 0.5rem;
  }
  
  .branding-header {
    margin-bottom: 1rem;
  }
  
  .branding-title {
    font-size: 1.5rem;
    letter-spacing: 0.08em;
  }
  
  .branding-tagline {
    font-size: 0.8rem;
  }
  
  .content-split {
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  .content-block {
    padding: 0.8rem 1rem;
    border-radius: 8px;
  }
  
  .content-block h2 {
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
  }
  
  .content-block p {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
  }
  
  .right-block .btn-primary {
    font-size: 0.8rem;
    padding: 0.5rem 0;
  }
  
  .divider {
    margin-bottom: 1rem;
  }
  
  .feature-highlights {
    gap: 1rem;
    max-width: 280px;
  }
  
  .feature-item {
    padding: 0.7rem 0.8rem;
    border-radius: 8px;
  }
  
  .feature-item h3 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
  
  .feature-item p {
    font-size: 0.75rem;
  }
  
  .landing-footer {
    font-size: 0.8rem;
    padding-top: 1rem;
  }
}

/* Ultra-wide screens */
@media (min-width: 1400px) {
  .landing-page {
    padding: 3rem 6rem;
  }
  
  .content-split {
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto 4rem;
  }
  
  .feature-highlights {
    max-width: 1400px;
    gap: 4rem;
  }
}

/* END landing.css */