/* 
 * NextPost Theme - Core Styles
 * All colors are CSS variables and configurable via theme settings
 */
:root {
  /* Branding / primary colors */
  --primary-color: #3b7cff;
  --primary-color-rgb: 59, 124, 255;
  --primary-color-hover: #003569;
  --secondary-color: #6c757d;

  /* Semantic colors */
  --danger-color: #ff3d3d;
  --success-color: #5ebb0b;

  /* Neutral palette */
  --light-color: #f7f9fb;
  --mid-color: #6D7784;
  --dark-color: #293340;
  --white-color: #ffffff;
  --placeholder-text-color: #BEBEBE;

  /* Surface / typography */
  --background-color: #ffffff;
  --surface-color: #f8faff;
  --text-color: #293340;
  --text-primary: #293340;
  --text-secondary: #6D7784;
  --card-background: #ffffff;
  --border-color: #e0e0e0;

  /* Button & Interactive */
  --button-gradient-start: #00E3AE;
  --button-gradient-end: #9BE15D;
  --dark-overlay-color: #151a21;

  /* Social Colors */
  --facebook-color: #39579A;
  --facebook-hover-color: #2b4275;
}

/* Utility color classes */
.color-primary {
  color: var(--primary-color);
}

.color-primary-hover {
  color: var(--primary-color-hover);
}

.color-danger {
  color: var(--danger-color);
}

.color-success {
  color: var(--success-color);
}

.color-info {
  color: var(--primary-color);
}

.color-light {
  color: var(--white-color);
}

.color-mid {
  color: var(--mid-color);
}

.color-dark {
  color: var(--dark-color);
}

.lightbg {
  background-color: var(--light-color);
}

/* Base styles */
body {
  font-family: "Fira Sans", sans-serif;
  font-size: 100%;
  margin: 0;
  padding: 0;
  background-color: var(--background-color);
  color: var(--text-color);
}

body.onprogress:after {
  content: "";
  position: fixed;
  z-index: 999999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95) url("../img/round-loading.svg") center no-repeat;
}

a {
  text-decoration: none;
  outline: none;
  color: var(--primary-color);
}

a.full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}


/* =================================================
   MODERN AUTH PAGES STYLES
================================================= */

/* Modern Login Page */
.modern-auth-page {
  min-height: 100vh;
  display: flex;
  background: linear-gradient(135deg, var(--light-color) 0%, var(--white-color) 100%);
  position: relative;
  overflow: hidden;
}

.modern-auth-page::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 150%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-hover) 100%);
  opacity: 0.05;
  border-radius: 50%;
  z-index: 0;
}

.auth-container {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 1;
  gap: 60px;
  padding: 40px 20px;
}

.auth-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 40px;
}

.auth-brand {
  margin-bottom: 48px;
}

.auth-brand a {
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease;
}

.auth-brand a:hover {
  transform: scale(1.05);
}

.auth-brand img {
  height: 50px;
  width: auto;
  transition: filter 0.3s ease;
}

.auth-welcome h1 {
  font-size: 42px;
  font-weight: 700;
  color: var(--dark-color);
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.auth-welcome p {
  font-size: 16px;
  color: var(--mid-color);
  margin: 0;
  line-height: 1.6;
}

.auth-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.auth-feature {
  display: flex;
  align-items: center;
  gap: 16px;
}

.auth-feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-hover) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 24px;
  flex-shrink: 0;
}

.auth-feature-text h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-color);
  margin: 0 0 4px 0;
}

.auth-feature-text p {
  font-size: 14px;
  color: var(--mid-color);
  margin: 0;
}

.auth-right {
  flex: 0 0 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-card {
  width: 100%;
  background: var(--white-color);
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  animation: slideInRight 0.6s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

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

.auth-card-header {
  text-align: center;
  margin-bottom: 32px;
}

.auth-card-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark-color);
  margin: 0 0 8px 0;
}

.auth-card-header p {
  font-size: 14px;
  color: var(--mid-color);
  margin: 0;
}

.modern-form-group {
  margin-bottom: 24px;
}

.modern-form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 8px;
}

.modern-input {
  width: 100%;
  height: 48px;
  padding: 12px 16px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-size: 15px;
  color: var(--dark-color);
  background: var(--white-color);
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.modern-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(59, 124, 255, 0.1);
}

.modern-input::placeholder {
  color: var(--placeholder-text-color);
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.modern-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}

.modern-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-color);
  border-radius: 6px;
  cursor: pointer;
  accent-color: var(--primary-color);
}

.modern-checkbox label {
  font-size: 14px;
  color: var(--mid-color);
  margin: 0;
  cursor: pointer;
}

.forgot-link {
  font-size: 14px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.forgot-link:hover {
  color: var(--primary-color-hover);
}

.modern-button {
  width: 100%;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-hover) 100%);
  color: var(--white-color);
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(59, 124, 255, 0.3);
}

.modern-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 124, 255, 0.4);
}

.modern-button:active {
  transform: translateY(0);
}

.social-divider {
  display: flex;
  align-items: center;
  margin: 24px 0;
  gap: 16px;
}

.social-divider::before,
.social-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-color);
}

.social-divider span {
  font-size: 14px;
  color: var(--mid-color);
}

.social-button {
  width: 100%;
  height: 48px;
  background: var(--white-color);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-color);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
}

.social-button:hover {
  border-color: var(--facebook-color);
  background: var(--facebook-color);
  color: var(--white-color);
}

.social-button .mdi {
  font-size: 20px;
}

.auth-footer {
  text-align: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.auth-footer p {
  font-size: 14px;
  color: var(--mid-color);
  margin: 0;
}

.auth-footer a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  margin-left: 4px;
}

.auth-footer a:hover {
  color: var(--primary-color-hover);
}

.error-alert {
  background: rgba(255, 61, 61, 0.1);
  border: 1px solid var(--danger-color);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--danger-color);
  font-size: 14px;
}

.error-alert .mdi {
  font-size: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .auth-container {
    flex-direction: column;
    gap: 0;
  }

  .auth-left {
    padding: 0 20px;
  }

  .auth-right {
    flex: 1;
  }

  .auth-brand {
    margin: 0 auto 40px;
  }

  .auth-welcome h1 {
    font-size: 32px;
  }

  .auth-features {
    margin-top: 24px;
  }
}

@media (max-width: 576px) {
  .auth-card {
    padding: 32px 24px;
  }

  .auth-welcome h1 {
    font-size: 28px;
  }

  .form-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* =================================================
   MODERN SIGNUP PAGE STYLES
================================================= */

/* Modern Signup - Single column centered */
.modern-signup-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--light-color) 0%, var(--white-color) 100%);
  position: relative;
  overflow: hidden;
  padding: 40px 20px;
}

.modern-signup-page::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -20%;
  width: 80%;
  height: 120%;
  background: linear-gradient(45deg, var(--primary-color) 0%, var(--primary-color-hover) 100%);
  opacity: 0.03;
  border-radius: 50%;
  z-index: 0;
}

.signup-container {
  width: 100%;
  max-width: 520px;
  position: relative;
  z-index: 1;
}

.signup-card {
  background: var(--white-color);
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  animation: slideInUp 0.6s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.signup-header {
  text-align: center;
  margin-bottom: 32px;
}

.signup-header .auth-brand {
  margin-bottom: 24px;
}

.signup-header h1 {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark-color);
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.signup-header p {
  font-size: 16px;
  color: var(--mid-color);
  margin: 0;
}

.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.form-row .modern-form-group {
  flex: 1;
  margin-bottom: 0;
}

.modern-select {
  width: 100%;
  height: 48px;
  padding: 12px 16px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-size: 15px;
  color: var(--dark-color);
  background: var(--white-color);
  transition: all 0.3s ease;
  box-sizing: border-box;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
}

.modern-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(59, 124, 255, 0.1);
}

.signup-footer {
  text-align: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.signup-footer p {
  font-size: 14px;
  color: var(--mid-color);
  margin: 0 0 16px 0;
}

.signup-footer a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}

.signup-footer a:hover {
  color: var(--primary-color-hover);
}

.terms-text {
  font-size: 13px;
  color: var(--mid-color);
  margin-top: 16px;
  line-height: 1.4;
}

/* Recaptcha styling */
.recaptcha {
  margin-bottom: 24px;
}

.g-recaptcha {
  border-radius: 12px;
  overflow: hidden;
}

.recaptcha-error {
  color: var(--danger-color);
  font-size: 14px;
  margin-top: 8px;
}

/* Responsive for signup */
@media (max-width: 576px) {
  .signup-card {
    padding: 32px 24px;
    margin: 20px;
  }

  .signup-header h1 {
    font-size: 28px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .form-row .modern-form-group {
    margin-bottom: 24px;
  }
}

/* =================================================
   MODERN RECOVERY & PASSWORD RESET STYLES
================================================= */

/* Simple centered card for recovery/reset pages */
.modern-simple-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--light-color) 0%, var(--white-color) 100%);
  position: relative;
  overflow: hidden;
  padding: 0 20px;
}

.modern-simple-page::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-hover) 100%);
  opacity: 0.04;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.simple-container {
  width: 100%;
  max-width: 420px;
  position: relative;
  z-index: 1;
}

.simple-card {
  background: var(--white-color);
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  animation: slideInUp 0.6s ease-out;
  text-align: center;
}

.simple-header {
  margin-bottom: 32px;
  /* display flex e alinhar no centro */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.simple-header .auth-brand {
  margin-bottom: 24px;
}

.simple-header h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark-color);
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.simple-header p {
  font-size: 16px;
  text-align: center;
  color: var(--mid-color);
  margin: 0;
  line-height: 1.5;
}

.simple-footer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.simple-footer a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}

.simple-footer a:hover {
  color: var(--primary-color-hover);
}

/* Success state */
.success-card {
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--success-color) 0%, #22c55e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: bounceIn 0.8s ease-out;
}

.success-icon .mdi {
  font-size: 36px;
  color: var(--white-color);
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }

  70% {
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.success-card h1 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-color);
  margin: 0 0 12px 0;
}

.success-card p {
  font-size: 16px;
  color: var(--mid-color);
  margin: 0 0 32px 0;
  line-height: 1.5;
}

/* Responsive for simple pages */
@media (max-width: 576px) {
  .simple-card {
    padding: 32px 24px;
    margin: 20px;
  }

  .simple-header h1 {
    font-size: 24px;
  }

  .success-icon {
    width: 64px;
    height: 64px;
  }

  .success-icon .mdi {
    font-size: 28px;
  }
}

/* =================================================
   MODERN HOMEPAGE STYLES
================================================= */

/* Modern Header */
.modern-header {
  background: var(--white-color);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.header-logo img {
  height: 40px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-login {
  font-size: 15px;
  font-weight: 500;
  color: var(--mid-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.header-login:hover {
  color: var(--primary-color);
}

.header-signup {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-hover) 100%);
  color: var(--white-color);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.header-signup:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 124, 255, 0.3);
}

/* Hero Section */
.modern-hero {
  background: linear-gradient(135deg, var(--light-color) 0%, var(--white-color) 100%);
  padding: 120px 0 80px;
  margin-top: 70px;
  position: relative;
  overflow: hidden;
}

.modern-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 140%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-hover) 100%);
  opacity: 0.03;
  border-radius: 50%;
  z-index: 0;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  color: var(--dark-color);
  margin: 0 0 24px 0;
  line-height: 1.1;
}

.hero-content h1 .highlight {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-hover) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 20px;
  color: var(--mid-color);
  margin: 0 0 40px 0;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.hero-button-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-hover) 100%);
  color: var(--white-color);
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(59, 124, 255, 0.3);
}

.hero-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 124, 255, 0.4);
}

.hero-button-secondary {
  background: var(--white-color);
  color: var(--dark-color);
  padding: 16px 32px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-button-secondary:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

/* Features Section */
.modern-features {
  padding: 80px 0;
  background: var(--white-color);
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--dark-color);
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.section-header p {
  font-size: 18px;
  color: var(--mid-color);
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.feature-card {
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-hover) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-icon .mdi {
  font-size: 32px;
  color: var(--white-color);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-color);
  margin: 0 0 12px 0;
}

.feature-card p {
  font-size: 15px;
  color: var(--mid-color);
  margin: 0;
  line-height: 1.5;
}

/* CTA Section */
.modern-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-hover) 100%);
  color: var(--white-color);
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.cta-content p {
  font-size: 18px;
  margin: 0 0 32px 0;
  opacity: 0.9;
}

.cta-button {
  background: var(--white-color);
  color: var(--primary-color);
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Footer */
.modern-footer {
  background: var(--dark-color);
  color: var(--white-color);
  padding: 40px 0;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .header-nav {
    display: none;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .cta-content h2 {
    font-size: 28px;
  }
}

/* ===== ENHANCED HOMEPAGE STYLES ===== */

/* Homepage Body */
.homepage-body {
  overflow-x: hidden;
}

/* Fixed Header */
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.fixed-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--dark-color);
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle.active {
  color: var(--primary-color);
}

/* Enhanced Header Actions */
.header-btn-dashboard {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.header-btn-dashboard:hover {
  background: var(--secondary-color);
  transform: translateY(-1px);
}

.header-btn-profile {
  color: var(--dark-color);
  text-decoration: none;
  font-weight: 500;
}

.header-signup {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 124, 255, 0.3);
}

.header-signup:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(59, 124, 255, 0.4);
}

/* Enhanced Features Section */
.modern-features-enhanced {
  padding: 120px 0;
  background: white;
}

.section-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(59, 124, 255, 0.1);
  color: var(--primary-color);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 80px;
}

.section-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-header p {
  font-size: 20px;
  color: var(--text-muted);
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.feature-card {
  background: white;
  padding: 40px 32px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.feature-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.feature-card.featured {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
}

.feature-card.featured .feature-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: rgba(59, 124, 255, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary-color);
  font-size: 36px;
}

.feature-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: inherit;
}

.feature-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.feature-card.featured p {
  color: rgba(255, 255, 255, 0.9);
}

.feature-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-details li {
  display: flex;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-muted);
}

.feature-card.featured .feature-details li {
  color: rgba(255, 255, 255, 0.8);
}

.feature-details li::before {
  content: '✓';
  color: var(--success-color);
  font-weight: bold;
  margin-right: 12px;
  width: 16px;
}

.feature-card.featured .feature-details li::before {
  color: rgba(255, 255, 255, 0.9);
}

/* Benefits Section */
.modern-benefits {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.benefits-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.benefits-text h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.benefits-text p {
  font-size: 20px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 40px;
}

.benefits-list {
  margin-bottom: 48px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s ease;
}

.benefit-item.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  flex-shrink: 0;
}

.benefit-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 8px;
}

.benefit-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

.btn-primary-large {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  text-decoration: none;
  border-radius: 16px;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(59, 124, 255, 0.3);
}

.btn-primary-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(59, 124, 255, 0.4);
}

/* Stats Dashboard */
.benefits-visual {
  position: relative;
}

.stats-dashboard {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-card {
  background: white;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateX(8px);
}

.stat-card .stat-icon {
  width: 50px;
  height: 50px;
  background: rgba(59, 124, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 20px;
}

.stat-card .stat-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-color);
}

.stat-card .stat-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

.stat-trend {
  margin-left: auto;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
}

.stat-trend.positive {
  background: rgba(34, 197, 94, 0.1);
  color: var(--success-color);
}

/* Testimonials Section */
.modern-testimonials {
  padding: 120px 0;
  background: white;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 80px;
  width: 100%;
  max-width: 100%;
}

.testimonials-grid::before,
.testimonials-grid::after {
  display: none !important;
  content: none !important;
}

.testimonials-grid>* {
  min-width: 0;
  max-width: 100%;
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.testimonial-card {
  background: white;
  padding: 40px 32px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.testimonial-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.testimonial-card.featured {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: #fbbf24;
}

.testimonial-card.featured .testimonial-rating {
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-rating .mdi {
  font-size: 18px;
}

.testimonial-card blockquote {
  font-size: 18px;
  line-height: 1.6;
  color: var(--dark-color);
  margin: 0 0 24px 0;
  font-style: italic;
}

.testimonial-card.featured blockquote {
  color: rgba(255, 255, 255, 0.95);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

.testimonial-card.featured .author-avatar {
  background: rgba(255, 255, 255, 0.2);
}

.author-name {
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 4px;
}

.testimonial-card.featured .author-name {
  color: white;
}

.author-title {
  font-size: 14px;
  color: var(--text-muted);
}

.testimonial-card.featured .author-title {
  color: rgba(255, 255, 255, 0.8);
}

/* Pricing Section */
.modern-pricing {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 80px;
  margin-bottom: 80px;
}

.pricing-card {
  background: white;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
}

.pricing-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  height: 15px;
  line-height: 16px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.pricing-header {
  padding: 40px 32px 32px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.pricing-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 16px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 16px;
}

.currency {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-muted);
}

.amount {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 4px;
}

.period {
  font-size: 16px;
  color: var(--text-muted);
}

.pricing-header p {
  color: var(--text-muted);
  line-height: 1.6;
}

.pricing-features {
  padding: 32px;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f3f4f6;
  color: var(--dark-color);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features .mdi {
  color: var(--success-color);
  font-size: 18px;
}

.pricing-footer {
  padding: 32px;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.pricing-btn {
  display: inline-block;
  width: 100%;
  height: 60px;
  line-height: 60px;
  font-size: 16px;
  background: var(--border-color);
  color: var(--dark-color);
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pricing-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.pricing-btn.featured {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
}

.pricing-btn.featured:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59, 124, 255, 0.3);
}

.pricing-guarantee {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.guarantee-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px 32px;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

.guarantee-content .mdi {
  font-size: 32px;
  color: var(--success-color);
}

.guarantee-text h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 4px;
}

.guarantee-text p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

/* Final CTA Section */
.modern-final-cta {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  text-align: center;
}

.final-cta-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.final-cta-content h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.final-cta-content p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.9;
}

.final-cta-btn-primary {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 48px;
  background: white;
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 20px;
  font-weight: 700;
  font-size: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  margin-bottom: 40px;
}

.final-cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.final-cta-btn-primary .mdi {
  font-size: 28px;
  margin-bottom: 8px;
}

.final-cta-btn-primary small {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.7;
  margin-top: 8px;
}

.final-cta-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  opacity: 0.9;
}

.cta-feature .mdi {
  font-size: 18px;
}

/* Enhanced Footer */
.modern-footer-enhanced {
  background: var(--dark-color);
  color: white;
  padding: 80px 0 40px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
  margin-bottom: 60px;
}

.footer-brand .footer-logo img {
  height: 40px;
}

.footer-brand p {
  margin: 20px 0 32px;
  line-height: 1.6;
  opacity: 0.8;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  opacity: 0.7;
}

.footer-badges {
  display: flex;
  gap: 20px;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 14px;
  opacity: 0.8;
}

.security-badge .mdi {
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-title {
    font-size: 48px;
  }

  .section-header h2 {
    font-size: 40px;
  }

  .benefits-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .social-proof-stats {
    gap: 32px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  /* Mobile Header */
  .header-nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 20px;
    transition: left 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .header-nav.mobile-open {
    left: 0;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 20px;
    margin-bottom: 40px;
  }

  .nav-links a {
    font-size: 18px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
  }

  .header-actions {
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }

  .header-signup,
  .header-btn-dashboard {
    width: 100%;
    justify-content: center;
  }

  .mobile-menu-toggle {
    display: block;
  }

  /* Mobile Hero */
  .hero-title {
    font-size: 36px;
  }

  .hero-description {
    font-size: 18px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    text-align: center;
  }

  .social-proof-stats {
    flex-direction: column;
    gap: 24px;
  }

  /* Mobile Sections */
  .section-header h2 {
    font-size: 32px;
  }

  /* Mobile Testimonials */
  .modern-testimonials {
    padding: 60px 0;
  }

  .testimonial-card {
    padding: 28px 24px;
  }

  .testimonial-card blockquote {
    font-size: 16px;
  }

  .author-avatar {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .author-name {
    font-size: 15px;
  }

  .author-title {
    font-size: 13px;
  }

  .section-header p {
    font-size: 18px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .benefits-text h2 {
    font-size: 32px;
  }

  .final-cta-content h2 {
    font-size: 36px;
  }

  .final-cta-features {
    flex-direction: column;
    gap: 20px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-badges {
    justify-content: center;
  }
}

/* Additional styles for dynamic pricing */
.annual-price {
  margin-top: 12px;
  padding: 8px 12px;
  background: rgba(59, 124, 255, 0.1);
  border-radius: 8px;
  font-size: 14px;
  color: var(--primary-color);
  text-align: center;
}

.savings {
  display: block;
  font-weight: 700;
  color: var(--success-color);
  margin-top: 4px;
}


/* ===== HERO SECTION REFINEMENTS ===== */

/* Modern Hero Centered Layout */
.modern-hero-centered {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, var(--background-color) 0%, var(--surface-color) 100%);
  overflow: hidden;
  padding-top: 80px;
}

/* Hero Background Effects */
.hero-background-effects {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 120px;
  height: 120px;
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  left: 5%;
  animation-delay: 2s;
}

.shape-3 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 50%;
  animation-delay: 4s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-content-centered {
  text-align: center !important;
  max-width: 900px;
  margin: 0 auto !important;
  position: relative;
  z-index: 3;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(var(--primary-color-rgb), 0.1);
  color: var(--primary-color);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  border: 1px solid rgba(var(--primary-color-rgb), 0.2);
}

/* Hero Title Centered */
.hero-title-centered {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero Description Centered */
.hero-description-centered {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Features Grid */
.hero-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.feature-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--surface-color);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  font-weight: 500;
  color: var(--text-primary);
}

.feature-highlight:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.feature-highlight .mdi {
  font-size: 20px;
  color: var(--primary-color);
}

/* Hero Actions Centered */
.hero-actions-centered {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btn-primary-large {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 16px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
  flex: 1;
  min-width: 180px;
  height: 56px;
  border: none;
}

.hero-btn-primary-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--primary-color-rgb), 0.4);
}

.hero-btn-primary-large .mdi {
  font-size: 18px;
}

.hero-btn-primary-large .btn-text {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}

.hero-btn-primary-large small {
  display: none;
  /* Removido para manter botões do mesmo tamanho */
}

.hero-btn-secondary-large {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: white;
  color: var(--text-primary);
  padding: 16px 24px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  text-align: center;
  flex: 1;
  min-width: 180px;
  height: 56px;
}

.hero-btn-secondary-large:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--primary-color-rgb), 0.2);
}

.hero-btn-secondary-large .mdi {
  font-size: 18px;
}

/* Social Proof Grid */
.hero-social-proof-centered {
  margin-bottom: 40px;
}

.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  background: var(--surface-color);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Trust Badges */
.hero-trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  opacity: 0.8;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.trust-badge .mdi {
  color: var(--success-color);
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .modern-hero-centered {
    min-height: auto;
    padding: 80px 0;
  }

  .hero-features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-actions-centered {
    flex-direction: column;
    gap: 12px;
    max-width: 320px;
  }

  .hero-btn-primary-large,
  .hero-btn-secondary-large {
    width: 100%;
    max-width: none;
    flex: none;
    min-width: 280px;
  }

  .social-proof-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .hero-trust-badges {
    gap: 20px;
    flex-direction: column;
  }

  .trust-badge {
    font-size: 13px;
  }
}

@media (max-width: 480px) {

  .auth-welcome,
  .auth-features {
    display: none !important;
  }

  .modern-auth-page::before,
  .modern-signup-page::before {
    background: none !important;
  }

  .hero-actions-centered {
    max-width: 280px;
  }

  .hero-btn-primary-large,
  .hero-btn-secondary-large {
    min-width: 260px;
    font-size: 15px;
  }

  .social-proof-grid {
    grid-template-columns: 1fr;
  }

  .hero-description-centered {
    font-size: 1.125rem;
  }

  .form-row {
    margin-bottom: 0;
  }
}

/* Force CSS reload - seg 06 out 2025 15:41:13 -03 */