/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a2e;
    background: #f8f9fc;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== HEADER ===== */
.site-header {
    background: #fff;
    border-bottom: 1px solid #e8eaed;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
    color: #1a1a2e;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 16px;
}

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

.header-nav a {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #4a5568;
    border-radius: 8px;
    transition: all 0.2s;
}

.header-nav a:hover {
    background: #f0f0ff;
    color: #4f46e5;
}

.lang-dropdown {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: #4a5568;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    background: #fff;
    transition: all 0.2s;
}

.lang-btn:hover {
    border-color: #4f46e5;
    color: #4f46e5;
}

.lang-btn svg {
    width: 16px;
    height: 16px;
}

.lang-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    min-width: 160px;
    overflow: hidden;
    z-index: 200;
}

.lang-menu.active {
    display: block;
}

.lang-menu a {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    color: #4a5568;
    transition: all 0.15s;
}

.lang-menu a:hover {
    background: #f0f0ff;
    color: #4f46e5;
}

.lang-menu a.current {
    background: #f0f0ff;
    color: #4f46e5;
    font-weight: 600;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #1a1a2e;
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    animation: heroFloat 20s ease-in-out infinite;
}

@keyframes heroFloat {

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

    33% {
        transform: translate(30px, -30px) rotate(5deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(-3deg);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5em;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== MAIN LAYOUT ===== */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 60px;
}

/* ===== TOOL SECTION ===== */
.tool-section {
    margin-bottom: 48px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e8eaed;
}

.section-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.section-icon svg {
    width: 22px;
    height: 22px;
    color: #fff;
}

.section-icon.text {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

.section-icon.web {
    background: linear-gradient(135deg, #059669, #10b981);
}

.section-title {
    font-size: 1.5em;
    font-weight: 700;
    color: #1a1a2e;
}

/* ===== TOOL GRID ===== */
.tool-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* ===== TOOL CARD ===== */
.tool-card {
    background: #fff;
    border: 1px solid #e8eaed;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    contain: content;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    opacity: 0;
    transition: opacity 0.3s;
}

.tool-card:hover {
    border-color: #c7d2fe;
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.08);
    transform: translateY(-2px);
}

.tool-card:hover::before {
    opacity: 1;
}

.tool-card.active-tool {
    border-color: #4f46e5;
    background: linear-gradient(135deg, #f5f3ff, #ede9fe);
}

.tool-card.active-tool::before {
    opacity: 1;
}

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #f0f0ff;
    transition: all 0.3s;
}

.card-icon svg {
    width: 22px;
    height: 22px;
    color: #4f46e5;
}

.tool-card:hover .card-icon {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

.tool-card:hover .card-icon svg {
    color: #fff;
}

.card-content {
    flex: 1;
    min-width: 0;
}

.card-title {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-title .badge {
    font-size: 10px;
    padding: 2px 8px;
    background: #4f46e5;
    color: #fff;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-arrow {
    color: #c7c7c7;
    transition: all 0.3s;
    flex-shrink: 0;
    margin-top: 10px;
}

.card-arrow svg {
    width: 18px;
    height: 18px;
}

.tool-card:hover .card-arrow {
    color: #4f46e5;
    transform: translateX(4px);
}

/* Web section color overrides */
.web-tool .card-icon {
    background: #ecfdf5;
}

.web-tool .card-icon svg {
    color: #059669;
}

.web-tool:hover .card-icon {
    background: linear-gradient(135deg, #059669, #10b981);
}

.web-tool:hover .card-icon svg {
    color: #fff;
}

.web-tool::before {
    background: linear-gradient(135deg, #059669, #10b981);
}

.web-tool:hover {
    border-color: #a7f3d0;
    box-shadow: 0 8px 30px rgba(5, 150, 105, 0.08);
}

.web-tool:hover .card-arrow {
    color: #059669;
}

/* ===== WORD COUNTER TOOL (INLINE) ===== */
.inline-tool {
    background: #fff;
    border: 1px solid #e8eaed;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 48px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.inline-tool h2 {
    font-size: 1.4em;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.inline-tool textarea {
    width: 100%;
    min-height: 180px;
    padding: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.3s;
    color: #1a1a2e;
    background: #fafbfc;
}

.inline-tool textarea:focus {
    outline: none;
    border-color: #4f46e5;
    background: #fff;
}

.btn-group {
    display: flex;
    gap: 10px;
    margin: 16px 0;
    flex-wrap: wrap;
}

/* Inner button containers need flex too */
.btn-group > div {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}

.btn {
    padding: 10px 22px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
    min-height: 42px;
}

.btn-primary {
    background: #4f46e5;
    color: #fff;
}

.btn-primary:hover {
    background: #4338ca;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.btn-secondary {
    background: #f1f5f9;
    color: #475569;
}

.btn-secondary:hover {
    background: #e2e8f0;
}

.btn-accent {
    background: #ecfdf5;
    color: #059669;
}

.btn-accent:hover {
    background: #d1fae5;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.result-card {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border: 1px solid #e2e8f0;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
}

.result-card:hover {
    border-color: #c7d2fe;
    transform: translateY(-2px);
}

.result-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.result-value {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
    background: #fff;
    border: 1px solid #e8eaed;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
}

.content-section h2 {
    font-size: 1.4em;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.content-section h3 {
    font-size: 1.1em;
    font-weight: 600;
    color: #334155;
    margin: 16px 0 8px;
}

.content-section p,
.content-section li {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
}

.content-section ul {
    margin-left: 20px;
    margin-top: 10px;
}

.content-section li {
    margin-bottom: 8px;
}

.faq-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.faq-item h3 {
    color: #4f46e5;
    font-size: 1.05em;
    margin-bottom: 8px;
    margin-top: 0;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #1a1a2e;
    color: #94a3b8;
    padding: 48px 24px 24px;
    margin-top: 40px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer-brand {
    font-size: 14px;
    line-height: 1.7;
}

.footer-brand .logo {
    color: #fff;
    margin-bottom: 12px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col a {
    display: block;
    color: #94a3b8;
    font-size: 14px;
    padding: 4px 0;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 32px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    font-size: 13px;
}

/* ===== SCROLL TO TOP ===== */
#scrollToTop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    cursor: pointer;
    padding: 14px;
    border-radius: 12px;
    font-size: 18px;
    width: 48px;
    height: 48px;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    align-items: center;
    justify-content: center;
}

#scrollToTop:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.4);
}

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

    .mobile-toggle {
        display: block;
    }

    .header-nav.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 16px;
        border-bottom: 1px solid #e8eaed;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .hero h1 {
        font-size: 1.8em;
    }

    .hero {
        padding: 40px 24px;
    }

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

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

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .tool-card {
        padding: 16px;
    }

    .inline-tool {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .results-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .result-card {
        padding: 14px;
    }

    .result-value {
        font-size: 22px;
    }
}
/* HERO SECTION — Premium SaaS Redesign */
.hero-section {
  background: linear-gradient(135deg, #312e81 0%, #4F46E5 30%, #7C3AED 60%, #A855F7 100%);
  padding: 96px 24px 88px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Animated floating orbs */
.hero-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.35) 0%, transparent 70%);
  top: -200px;
  right: -150px;
  z-index: -1;
  animation: heroOrb1 18s ease-in-out infinite;
}
.hero-section::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.3) 0%, transparent 70%);
  bottom: -180px;
  left: -120px;
  z-index: -1;
  animation: heroOrb2 22s ease-in-out infinite;
}

@keyframes heroOrb1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-40px, 30px) scale(1.08); }
  66% { transform: translate(30px, -20px) scale(0.95); }
}
@keyframes heroOrb2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, -40px) scale(1.1); }
}

.hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 32px;
  letter-spacing: 0.3px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  animation: badgeFadeIn 0.6s ease-out both;
}
.hero-badge:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-1px);
}

@keyframes badgeFadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-title {
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 800;
  margin: 0 0 24px;
  line-height: 1.08;
  letter-spacing: -0.035em;
  background: linear-gradient(180deg, #ffffff 40%, rgba(255, 255, 255, 0.82) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleFadeIn 0.7s ease-out 0.1s both;
}

@keyframes titleFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
  font-size: clamp(17px, 2.2vw, 20px);
  opacity: 0.92;
  margin: 0 auto 48px;
  line-height: 1.7;
  font-weight: 400;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.92);
  animation: subtitleFadeIn 0.7s ease-out 0.2s both;
}
.hero-subtitle strong {
  color: #fff;
  font-weight: 700;
}

@keyframes subtitleFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 0.92; transform: translateY(0); }
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  animation: featuresFadeIn 0.7s ease-out 0.35s both;
}

@keyframes featuresFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.25s ease;
  cursor: default;
  letter-spacing: 0.01em;
}
.hero-feature:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.hero-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
  transition: all 0.25s ease;
}
.hero-feature:hover .hero-feature-icon {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.08);
}

/* TRUST BAR — Premium */
.trust-bar {
  background: rgba(248, 247, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid #E5E3FF;
  padding: 18px 24px;
}
.trust-bar-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #4B5563;
  font-weight: 500;
  transition: color 0.2s ease;
}
.trust-item:hover {
  color: #4F46E5;
}
.trust-icon {
  font-size: 18px;
  line-height: 1;
}
.trust-divider {
  color: #D1D5DB;
  font-weight: 300;
  user-select: none;
}

/* BREADCRUMB */
.breadcrumb ol {
  list-style: none;
  padding: 24px 0 12px;
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: #6B7280;
  flex-wrap: wrap;
}
.breadcrumb li + li::before {
  content: '›';
  margin-right: 10px;
  color: #D1D5DB;
  font-size: 18px;
  line-height: 1;
}
.breadcrumb a {
  color: #4F46E5;
  text-decoration: none;
  font-weight: 500;
}
.breadcrumb a:hover { text-decoration: underline; }

/* STATS GRID (PREMIUM) */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  contain: content;
}
.stat-card:hover {
  border-color: #C7D2FE;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.08);
  transform: translateY(-2px);
}
.stat-card--highlight {
  background: #F5F3FF;
  border-color: #C7D2FE;
}
.stat-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6B7280;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: #111827;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-sub {
  font-size: 12px;
  color: #9CA3AF;
  line-height: 1.4;
}
.stat-tooltip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: #E5E7EB;
  color: #4B5563;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
  cursor: help;
  position: relative;
}
.stat-tooltip:hover::after {
  content: attr(data-tip);
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%);
  background: #1F2937;
  color: white;
  font-size: 12px;
  font-weight: 400;
  padding: 10px 14px;
  border-radius: 8px;
  z-index: 100;
  width: 220px;
  text-align: center;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.2);
}

/* BUTTONS */
.btn-copy-results {
  background: #4F46E5;
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.2);
}
.btn-copy-results:hover {
  background: #4338CA;
  transform: translateY(-1px);
  box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.3);
}

/* EDUCATIONAL SECTION (RE-STYLED) */
.edu-section {
  background: #FFFFFF;
  padding: 80px 24px;
  border-top: 1px solid #F3F4F6;
  margin-top: 60px;
}
.edu-container {
  max-width: 800px;
  margin: 0 auto;
}
.edu-container h2 {
  font-size: 28px;
  font-weight: 800;
  color: #111827;
  margin: 48px 0 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid #F5F3FF;
  letter-spacing: -0.01em;
}
.edu-container h2:first-of-type { margin-top: 0; }
.edu-intro {
  font-size: 19px;
  color: #4B5563;
  line-height: 1.8;
  margin-bottom: 40px;
  padding: 24px 32px;
  background: #F9FAFB;
  border-left: 6px solid #4F46E5;
  border-radius: 0 12px 12px 0;
}
.edu-container p {
  font-size: 17px;
  color: #374151;
  line-height: 1.9;
  margin-bottom: 20px;
}
.edu-container ul, .edu-container ol {
  padding-left: 28px;
  margin-bottom: 24px;
}
.edu-container li {
  font-size: 17px;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 12px;
}
.edu-container strong { color: #111827; }

/* FAQ (RE-STYLED) */
.faq-list { margin-top: 24px; }
.faq-item-premium {
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.2s;
}
.faq-item-premium:hover { border-color: #C7D2FE; }
.faq-item-premium summary {
  padding: 20px 24px;
  font-size: 17px;
  font-weight: 700;
  color: #111827;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #F9FAFB;
}
.faq-item-premium summary::-webkit-details-marker { display: none; }
.faq-item-premium summary::after {
  content: '+';
  font-size: 24px;
  color: #4F46E5;
  font-weight: 400;
}
.faq-item-premium[open] summary::after { content: '−'; }
.faq-item-premium[open] summary { background: #FFFFFF; border-bottom: 1px solid #F3F4F6; }
.faq-item-premium p {
  padding: 20px 24px;
  margin: 0;
  font-size: 16px;
  color: #4B5563;
  line-height: 1.8;
}

/* COMING SOON BADGE */
.tool-card--soon { opacity: 0.7; cursor: default !important; }
.coming-soon-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 10px;
  background: #FEF3C7;
  color: #92400E;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* MOBILE PREMIUM FIXES */
@media (max-width: 768px) {
  .hero-section {
    padding: 64px 20px 56px;
  }
  .hero-badge {
    font-size: 12px;
    padding: 6px 16px;
    margin-bottom: 24px;
  }
  .hero-title {
    margin-bottom: 20px;
  }
  .hero-subtitle {
    margin-bottom: 36px;
    font-size: 16px;
  }
  .hero-features {
    gap: 8px;
  }
  .hero-feature {
    padding: 10px 16px;
    font-size: 13px;
    gap: 8px;
  }
  .hero-feature-icon {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
  .trust-bar-inner { gap: 16px; }
  .trust-divider { display: none; }
  .edu-container h2 { font-size: 22px; }
  .edu-intro { font-size: 16px; padding: 16px 20px; }
  .edu-container p, .edu-container li { font-size: 15px; }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 48px 16px 44px;
  }
  .hero-title { font-size: 32px; }
  .hero-subtitle { font-size: 15px; line-height: 1.6; }
  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .hero-feature {
    width: 100%;
    max-width: 260px;
    justify-content: center;
  }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-number { font-size: 32px; }
}
