/*
Theme Name: Talkin Landing
Theme URI: https://talkin.example
Author: Talkin
Author URI: https://talkin.example
Description: Tema WordPress simples da landing page Talkin com home institucional e páginas legais editáveis.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: talkin-landing
*/

:root {
  /* Talkin Premium Palette - Light Version */
  --primary: #2C7B47;
  --primary-hover: #25683c;
  --bg-main: #F8FAFC;
  --bg-card: #FFFFFF;
  --bg-card-hover: #F1F5F9;
  --text-main: #0F172A;
  --text-muted: #475569;
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --accent-green: #25683c;
  --accent-cyan: #154224;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(0, 0, 0, 0.06);
  --shadow-premium: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
  
  /* Legacy/Support */
  --talkin-green-dark: #2c7a48;
  --talkin-green-light: #7ab43b;
  --talkin-charcoal: #414244;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGkyMZhrib2Bg-4.woff2) format('woff2');
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: linear-gradient(90deg, var(--accent-green), var(--accent-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-alt {
    background: linear-gradient(90deg, var(--accent-green), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Badge */
.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(44, 122, 71, 0.15);
  border: 1px solid rgba(55, 227, 108, 0.3);
  border-radius: 999px;
  color: var(--accent-green);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-hover);
}

.btn-ghost {
  color: var(--text-main);
}

.btn-ghost:hover {
  background: rgba(0, 0, 0, 0.05);
}

.btn-outline {
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--text-main);
}

.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(44, 122, 71, 0.05);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-xl {
    padding: 1.25rem 3.5rem;
    font-size: 1.25rem;
    background: var(--primary);
    border-radius: 100px;
}

/* Navbar Modernizada */
.navbar {
  height: 84px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

/* Fix para WordPress Admin Bar */
.admin-bar .navbar {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .navbar {
    top: 46px;
  }
}

.navbar.scrolled {
  height: 70px;
  background: rgba(248, 250, 252, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 2rem;
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 44px;
  transition: transform 0.3s ease;
}

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

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  letter-spacing: -0.01em;
}

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

/* Hero Section Refinada */
.hero-section {
  padding-top: 180px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% -20%, rgba(44, 122, 71, 0.15) 0%, transparent 50%);
}

/* Hero com vídeo de fundo controlado por scroll */
.hero-scroll-pin {
    position: relative;
}

.hero-video-mode {
    background: transparent;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(248, 250, 252, 0.15) 0%,
        rgba(44, 123, 71, 0.08) 50%,
        rgba(248, 250, 252, 0.25) 100%
    );
    z-index: 1;
}

.hero-video-mode .hero-glow-1,
.hero-video-mode .hero-glow-2 { z-index: 2; }

.hero-video-mode .container { position: relative; z-index: 3; }

.hero-scroll-pin.is-pinned {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
  color: var(--text-main);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats-mini {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
}

.stat-item {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stat-item span {
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 800;
}

.hero-glow-1 {
  position: absolute;
  top: -10%;
  left: -5%;
  width: 40%;
  height: 60%;
  background: radial-gradient(circle, rgba(44, 122, 71, 0.15) 0%, transparent 70%);
  filter: blur(80px);
  z-index: -1;
}

.hero-glow-2 {
  position: absolute;
  bottom: 0%;
  right: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(55, 227, 108, 0.1) 0%, transparent 70%);
  filter: blur(100px);
  z-index: -1;
}

.hero-visual {
  position: relative;
}

.dashboard-preview-wrapper {
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  padding: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-premium);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.dashboard-preview {
  width: 100%;
  border-radius: 8px;
  display: block;
  transition: transform 0.5s ease;
}

.dashboard-preview-wrapper:hover .dashboard-preview {
    transform: scale(1.02);
}

.hero-gradient-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 60% 40%, rgba(44, 122, 71, 0.15) 0%, transparent 60%);
  z-index: 0;
}

/* Stats Section */
.stats-section {
  padding: 60px 0;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-card .stat-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-muted);
  font-weight: 600;
}

/* Features */
.features-section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-title {
  font-size: 3rem;
}

/* Features Section - Grid Premium */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg-card);
  padding: 3.5rem 2.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px -5px rgba(0,0,0,0.03);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at top right, rgba(44, 122, 71, 0.05), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
  border-color: rgba(44, 122, 71, 0.2);
  transform: translateY(-8px) scale(1.01);
  background: var(--bg-card-hover);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
}

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

.feature-icon {
  font-size: 3rem;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 15px rgba(55, 227, 108, 0.3));
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-muted);
}

/* Symptoms Section */
.symptoms-section {
    padding: 100px 0;
    overflow: hidden;
    background-color: var(--bg-main);
}

.symptoms-section .section-title {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.symptoms-cards-wrapper {
    position: relative;
    max-width: 950px;
    margin: 0 auto;
    display: flex;
    min-height: 480px;
    padding-top: 2rem;
}

@media (max-width: 768px) {
    .symptoms-cards-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
}

.symptom-card-bad {
    background-color: #1A1D1A;
    color: #fff;
    border-radius: 20px;
    padding: 3.5rem;
    padding-right: 12%;
    width: 60%;
    position: relative;
    z-index: 1;
    transform: translateY(3rem);
}

.symptom-card-good {
    background-color: var(--primary); /* Verde Talkin */
    color: #fff;
    border-radius: 20px;
    padding: 3.5rem;
    width: 50%;
    position: absolute;
    right: -2rem;
    top: 0;
    z-index: 2;
    box-shadow: -20px 20px 50px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .symptom-card-bad, .symptom-card-good {
        width: 100%;
        position: relative;
        transform: none;
        box-shadow: none;
        padding: 2.5rem 1.5rem;
        text-align: center;
    }
}

.card-label {
    font-size: 1.25rem;
    font-weight: 500;
    display: block;
    margin-bottom: 2.5rem;
    opacity: 0.8;
}

.card-label strong {
    font-weight: 800;
}

.symptom-problem {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.quote-mark {
    position: absolute;
    left: 8.5%;
    top: 6rem;
    font-size: 6rem;
    color: #8C52FF; /* Purple brand quote highlight */
    font-family: Georgia, serif;
    font-weight: bold;
    line-height: 1;
    z-index: 3;
}

@media (max-width: 768px) {
    .quote-mark {
        left: -1rem;
        top: 0rem;
    }
}

.symptom-solution-title {
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.35;
}

.symptom-solution-desc {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.browser-mockup {
    background: #fff;
    border-radius: 12px 12px 0 0;
    min-height: 120px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

/* Use Cases Section */
.use-cases-section {
    background-color: var(--primary); /* fallback */
    padding: 120px 0;
    color: #fff;
    position: relative;
}

.use-cases-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.use-cases-section .container {
    position: relative;
    z-index: 2;
}

.use-cases-layout {
    display: grid;
    grid-template-columns: 0.8fr 2.2fr;
    gap: 4rem;
    align-items: flex-start;
}

@media (max-width: 992px) {
    .use-cases-layout {
        grid-template-columns: 1fr;
    }
}

.use-cases-left {
    position: sticky;
    top: 120px;
}

.use-cases-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #fff;
    letter-spacing: -0.03em;
}

.use-cases-left p {
    font-size: 1.15rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
    color: #fff;
}

.btn-use-case {
    background-color: #E6F3EE;
    color: var(--primary);
    font-weight: 800;
    border-radius: 100px;
    padding: 1.1rem 2.5rem;
    display: inline-flex;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-use-case:hover {
    background-color: #fff;
    transform: scale(1.02);
}

.use-cases-right {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.use-case-card {
    background-color: #196033;
    border-radius: 20px;
    padding: 3rem;
    position: relative;
}

@media (max-width: 800px) {
    .use-case-card {
        padding: 2.5rem;
    }
}

.use-case-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.use-case-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.use-case-subtitle {
    display: block;
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.use-case-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    opacity: 0.85;
    max-width: 65%;
}

@media (max-width: 1024px) {
    .use-case-card p {
        max-width: 100%;
    }
}

.testimonial-float {
    position: absolute;
    right: -4.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: #333;
    width: 360px;
    padding: 2.25rem;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    z-index: 5;
}

@media (max-width: 1024px) {
    .testimonial-float {
        position: relative;
        right: 0;
        left: 0;
        top: 0;
        width: 100%;
        margin-top: 2rem;
        transform: none;
    }
}

.testimonial-float p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    max-width: 100%;
}

.testimonial-float strong {
    display: block;
    color: #0F172A;
    font-size: 1.1rem;
    font-weight: 700;
}

.testimonial-float span {
    font-size: 0.9rem;
    color: #64748B;
}

/* Comparison Before vs After */
.comparison-section {
    padding: 120px 0;
    background-color: #F8FAFC; /* Light premium background */
    color: var(--text-main);
}

.comparison-section .section-header p {
    color: var(--text-muted);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

@media (max-width: 900px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

.comparison-card {
    padding: 3.5rem;
    border-radius: 24px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.comparison-card.after {
    border: 1px solid rgba(44, 123, 71, 0.2); /* #2C7B47 border opacity */
    background: #FFFFFF;
    box-shadow: 0 16px 40px rgba(44, 123, 71, 0.08); /* Sombra verde leve */
}

.comparison-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.comparison-card h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.comparison-card.after h3 {
    color: #2C7B47; /* Talkin verde principal */
}

.comparison-card ul {
    list-style: none;
    padding: 0;
}

.comparison-card li {
    margin-bottom: 1.25rem;
    font-size: 1.15rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.comparison-card.before li {
    color: #64748B;
}

.comparison-card.after li {
    color: var(--text-main);
}

/* FAQ */
.faq-section {
    padding: 100px 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 4rem auto 0;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-question {
    padding: 1.5rem 0;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

/* CTA */
.cta-section {
    padding: 140px 0;
    background: #1a4d2b; /* fallback enquanto vídeo carrega */
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}


.cta-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}


.cta-card {
    background: transparent;
    border: none;
    padding: 0;
    border-radius: 0;
    text-align: center;
    box-shadow: none;
    position: relative;
    z-index: 2;
}

.cta-card h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.cta-card p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3.5rem;
}

.cta-card .btn-xl {
    background-color: #FFFFFF;
    color: #2C7B47; /* Texto Verde para destacar no fundo branco */
    padding: 1.4rem 4rem;
    font-size: 1.15rem;
    border-radius: 100px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    font-weight: 800;
}

.cta-card .btn-xl:hover {
    background-color: #F8FAFC;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}




.cta-hint {
    margin-top: 1.5rem !important;
    font-size: 0.9rem !important;
}

/* Footer & Comparison Img */
.comparison-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.site-footer {
  padding: 50px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background: var(--bg-main);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  height: 48px;
  margin-bottom: 1.5rem;
}

.footer-socials {
  margin: 1.5rem 0;
  display: flex;
  gap: 1.25rem;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: white;
  border: 1px solid rgba(44, 123, 71, 0.2);
  color: var(--primary);
  font-size: 1.35rem;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-link:hover {
  transform: translateY(-3px);
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: 0 10px 15px -3px rgba(44, 123, 71, 0.3);
}

.footer-left p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-cnpj {
    margin-top: 0.5rem;
    font-size: 0.75rem !important;
    opacity: 0.6;
}

.footer-right {
  display: flex;
  gap: 2rem;
}

.footer-right a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-right a:hover {
  color: var(--text-main);
}

/* Paginas Internas (Termos, Privacidade, etc) */
.legal-page {
  flex: 1;
  display: grid;
  place-items: start center;
  padding: 140px 2rem 4rem; /* 140px para não bater na navbar fixa */
  background-color: var(--bg-main);
  min-height: 100vh;
}

.legal-card {
  width: min(920px, 100%);
  background: #fff;
  border-radius: 24px;
  padding: clamp(2rem, 5vw, 4rem);
  box-shadow: var(--shadow-premium);
  color: var(--text-main);
  border: 1px solid rgba(0,0,0,0.05);
}

.legal-card h1 {
  margin: 0 0 2rem;
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: var(--primary);
  letter-spacing: -0.02em;
}

.legal-card h2 {
  margin: 2.5rem 0 1rem;
  font-size: 1.5rem;
  color: var(--primary);
}

.legal-card h3 {
  margin: 2rem 0 1rem;
  font-size: 1.25rem;
}

.legal-card p, .legal-card li {
  margin: 1rem 0;
  line-height: 1.8;
  color: #475569;
  font-size: 1.05rem;
}

.legal-card ul, .legal-card ol {
  margin: 1rem 0 1.5rem 2rem;
}

.back-link {
  display: inline-block;
  margin-top: 3rem;
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
}

.back-link:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        margin-top: 2rem;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .comparison-card {
        padding: 2rem 1.5rem;
    }

    .comparison-card h3 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .comparison-card li {
        font-size: 1rem !important;
        margin-bottom: 0.75rem;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-right {
        flex-direction: column;
        gap: 1rem;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-lg {
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .navbar {
        height: 70px;
    }
    .navbar .container {
        padding: 0 1rem;
    }
    .brand-logo {
        height: 28px;
    }
    .nav-actions {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
    .nav-actions .btn-ghost {
        padding: 0;
        font-size: 0.8rem;
        background: transparent;
        font-weight: 700;
        color: var(--text-main);
    }
    .nav-actions .btn-primary {
        padding: 0.6rem 0.9rem;
        font-size: 0.8rem;
        border-radius: 99px;
        white-space: nowrap;
    }
    
    .hero-section {
        padding-top: 130px;
        padding-bottom: 40px;
        text-align: center;
    }
    .hero-title {
        font-size: 1.85rem !important; /* Slightly smaller for better fit */
        line-height: 1.25;
        margin-bottom: 1.25rem;
    }
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        line-height: 1.6;
        opacity: 0.85;
    }
    .badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 0.75rem;
    }
    .hero-btns {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        margin-bottom: 2rem;
    }
    .hero-btns .btn {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }

    .hero-stats-mini {
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
        margin-top: 1.5rem;
        background: rgba(255, 255, 255, 0.5);
        padding: 1.5rem;
        border-radius: 16px;
        border: 1px solid rgba(0,0,0,0.03);
    }
    .stat-item {
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
}
