.elementor-705 .elementor-element.elementor-element-610ed4d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-5d50855 */.site-header {
  display: none !important;
}
.site-footer {
  display: none !important;
}
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1e3a8a;
  --accent: #f472b6;
  --bg-primary: #f9fafb;
  --bg-secondary: #ffffff;
  --text-primary: #111827;
  --text-secondary: #374151;
  --text-tertiary: #6b7280;
  --border: #d1d5db;
  --error: #dc2626;
  --success: #16a34a;
  --gradient: linear-gradient(90deg, var(--primary), var(--accent));
  --glass-bg: rgba(255, 255, 255, 0.2);
  --glass-border: rgba(255, 255, 255, 0.3);
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.8;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  overflow-x: hidden;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

section, .glass-card, .modal-content {
  animation: fadeIn 0.5s ease-out;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography */
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 800; margin-bottom: 1.5rem; }
h2 { font-size: clamp(1.75rem, 3vw, 2.75rem); font-weight: 700; margin-bottom: 1rem; }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); font-weight: 600; }
h4 { font-size: clamp(1rem, 1.5vw, 1.25rem); font-weight: 600; }
p { font-size: clamp(0.875rem, 2vw, 1.125rem); color: var(--text-secondary); }

/* Header */
header {
  background: var(--bg-secondary);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
}

nav {
  transition: var(--transition);
}

nav[aria-expanded="false"] {
  display: none;
}

nav[aria-expanded="true"] {
  display: flex;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

nav ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 2vw, 1rem);
  transition: var(--transition);
  padding: 0.5rem;
  display: block;
}

nav ul li a:hover,
nav ul li a:focus {
  color: var(--primary);
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.btn {
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  cursor: pointer;
  transition: var(--transition);
  transform: scale(1);
}

.btn:hover,
.btn:focus {
  transform: scale(1.05);
  outline: 2px solid var(--primary);
}

.btn-gradient {
  background: var(--gradient);
  color: #fff;
  border: none;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text-primary);
}

.btn-outline:hover,
.btn-outline:focus {
  background: var(--glass-bg);
  border-color: var(--primary);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: scale(1);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1100;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 2rem;
  width: 90%;
  max-width: 500px;
  box-shadow: var(--shadow);
  animation: slideIn 0.3s ease;
}

.close {
  float: right;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-secondary);
  transition: var(--transition);
}

.close:hover,
.close:focus {
  color: var(--primary);
}

.login-form input {
  border: 2px solid var(--border);
  border-radius: 0.5rem;
  font-size: clamp(0.875rem, 2vw, 1rem);
  padding: 1rem;
  transition: var(--transition);
}

.login-form input:focus {
  border-color: var(--primary);
  outline: none;
}

.login-form button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

/* Hero Section */
.hero {
  padding: clamp(4rem, 10vw, 6rem) 0;
  text-align: center;
}

.hero-title-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero h1 {
  max-width: 900px;
  margin: 0 auto 2rem;
}

.hero p {
  color: var(--text-tertiary);
  max-width: 700px;
  margin: 0 auto 3rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  color: var(--text-tertiary);
  font-size: clamp(0.875rem, 2vw, 1rem);
}

/* Glass Card */
.glass-bg {
  background: var(--bg-primary);
  padding: clamp(4rem, 10vw, 6rem) 0;
}

.glass-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.section-subtitle {
  color: var(--text-tertiary);
  text-align: center;
  margin-bottom: 2rem;
}

/* Humanizer & Detector */
.humanize-container,
.detect-container {
  display: flex;
  gap: 2rem;
}

.input-area,
.output-area {
  flex: 1;
}

.limit-text {
  color: var(--text-tertiary);
  margin-bottom: 1rem;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
}

.textarea-label {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.word-count {
  color: var(--text-tertiary);
  font-size: clamp(0.75rem, 2vw, 0.875rem);
}

.textarea-container textarea {
  width: 100%;
  min-height: 150px;
  border: 2px solid var(--border);
  border-radius: 0.5rem;
  padding: 1rem;
  font-size: clamp(0.875rem, 2vw, 1rem);
  resize: vertical;
  transition: var(--transition);
}

.textarea-container textarea:focus {
  border-color: var(--primary);
  outline: none;
}

.controls-container {
  display: flex;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.control-group {
  flex: 1;
}

.control-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

select {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--border);
  border-radius: 0.5rem;
  font-size: clamp(0.875rem, 2vw, 1rem);
  transition: var(--transition);
}

select:focus {
  border-color: var(--primary);
  outline: none;
}

.action-buttons {
  display: flex;
  gap: 1rem;
}

.output-container {
  margin-top: 1.5rem;
}

.output-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.output-title {
  font-weight: 600;
}

.copy-btn {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
}

.statistics-container {
  display: flex;
  gap: 1rem;
}

.statistic-card {
  flex: 1;
  text-align: center;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
}

.statistic-value {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--primary);
}

.statistic-label {
  color: var(--text-tertiary);
  font-size: clamp(0.75rem, 2vw, 0.875rem);
}

/* Detection Result */
#detection-result-output {
  text-align: center;
  font-weight: 600;
}

.analysis-details h4 {
  margin-bottom: 1rem;
}

.analysis-details ul {
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.analysis-details li {
  color: var(--text-secondary);
}

/* How It Works */
.how-it-works-step {
  flex: 1;
  text-align: center;
  padding: 1.5rem;
}

.how-it-works-number {
  width: 48px;
  height: 48px;
  background: var(--gradient);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

/* Features */
.feature-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.feature-icon.purple {
  background: var(--accent);
}

.feature-content {
  flex: 1;
}

.feature-title {
  margin-bottom: 0.5rem;
}

.feature-description {
  color: var(--text-tertiary);
}

/* Pricing */
.pricing-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.pricing-card.popular {
  border: 2px solid var(--primary);
  background: var(--glass-bg);
}

.pricing-price {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--primary);
  margin: 1rem 0;
}

.pricing-period {
  font-size: clamp(0.875rem, 2vw, 1rem);
  color: var(--text-tertiary);
}

.pricing-features {
  list-style: none;
  margin: 1.5rem 0;
}

.pricing-features li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.pricing-features i.fa-check {
  color: var(--success);
}

.pricing-features i.fa-times {
  color: var(--error);
}

/* Footer */
footer {
  background: var(--bg-secondary);
  padding: clamp(2rem, 5vw, 4rem) 0;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
}

.footer-section a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.footer-section a:hover,
.footer-section a:focus {
  color: var(--primary);
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  color: var(--text-secondary);
  font-size: 1.5rem;
  transition: var(--transition);
}

.footer-socials a:hover,
.footer-socials a:focus {
  color: var(--primary);
}

.copy {
  text-align: center;
  margin-top: 2rem;
  color: var(--text-tertiary);
}

/* Media Queries */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-secondary);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  nav ul li a {
    font-size: 1.25rem;
    padding: 1rem;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .btn {
    min-height: 48px;
  }

  .hamburger {
    display: flex;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .humanize-container,
  .detect-container {
    flex-direction: column;
  }

  .controls-container {
    flex-direction: column;
    gap: 1rem;
  }

  .action-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .statistics-container {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.75rem; }
  p { font-size: 1rem; }
  .hero { padding: 3rem 0; }
  .glass-bg { padding: 3rem 0; }
}/* End custom CSS */