/* Global Styles */

@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root {
    --primary-color: #6fefd0;
    --primary-glow: rgba(78, 250, 213, 0.336);
    --secondary-color: #1a1d29;
    --dark-bg: #111319;
    --card-bg: #1a1e2e;
    --card-border: #2a2e3e;
    --text-color: #ffffff;
    --text-secondary: #a0a0b0;
    --transition: all 0.3s ease;
}

html {
  /* Forza sempre la presenza della scrollbar verticale, eliminando così il salto del layout */
  overflow-y: scroll;
}

/* Rende tutto il sito non selezionabile */
* {
  -webkit-user-select: none;  /* Safari */
  -moz-user-select: none;     /* Firefox */
  -ms-user-select: none;      /* IE10+/Edge */
  user-select: none;          /* Standard */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Ubuntu';
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #fff, #fff);
    -webkit-background-clip: text;
    background-clip: text;
}

.section-header p {
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.highlight {
    color: var(--primary-color);
    text-shadow: 0 0 15px var(--primary-glow);
}

.promo-box {
    background-color: #1f222e;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    border-radius: 5px 5px 0 0;
    border: 1px solid #1f222e;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.btn i {
    margin-right: 0.5rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    box-shadow: 0 0 15px var(--primary-glow);
}

.mintdev-logo {
  width: 60px;
  height: 60px;
  vertical-align: middle;
  margin-right: 8px;
  transition: all 0.3s ease; /* Transizione fluida */
  filter: brightness(1); /* Valore base */
}

.mintdev-logo:hover {
  transform: scale(1.1) rotate(5deg); /* Ingrandisce e ruota leggermente */
  filter: brightness(1.0) drop-shadow(0 4px 8px rgba(0,0,0,0.3)); /* Pi첫 luminoso con ombra */
}

.btn-primary:hover {
    background-color: #3de8cc;
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--primary-glow);
}

.btn-secondary {
    background-color: rgba(78, 250, 156, 0.1);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: rgba(78, 250, 156, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid #2a2e3e;
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}


/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: var(--dark-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-glow);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 400;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.nav-links a i {
    margin-right: 0.2rem;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.auth-buttons {
    display: flex;
    gap: 1rem;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(78, 250, 156, 0.05) 0%, rgba(17, 19, 25, 0) 70%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    padding: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.stat-box {
    background-color: rgba(26, 29, 41, 0.5);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 1.5rem;
    width: 180px;
    text-align: center;
}

.stat-box h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-box p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Sub Hero (for specific pages like minecraft.html) */
.sub-hero {
    min-height: 40vh; /* Reduced height */
    padding-top: 80px; /* Adjust for navbar height */
}

.sub-hero h1 {
    font-size: 2.8rem; /* Slightly smaller */
}

.sub-hero p {
    font-size: 1.1rem;
}

/* Content Section Base */
.content-section {
    padding: 4rem 2rem; /* Consistent padding */
}

/* Features Section (Minecraft/Discord Pages) */
.features-section {
    background-color: var(--dark-bg); /* Match body background */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 2rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align icon and text left */
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.feature-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    background-color: rgba(78, 250, 156, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}


/* CTA Section */
.cta-section {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 3rem;
    margin: 2rem auto;
    text-align: center;
    border: 1px solid var(--card-border);
    max-width: 1000px;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Hosting Solutions */
.solutions-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.solution-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 2rem;
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.solution-card.highlighted {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(78, 250, 156, 0.1);
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.solution-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    background-color: rgba(78, 250, 156, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.solution-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.feature-list {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.feature-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Pricing Section */
.pricing-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    background-color: rgba(26, 29, 41, 0.5);
    border-radius: 8px;
    padding: 0.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition);
    flex: 1;
}

.tab-btn.active {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.pricing-plans {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.plan-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 2rem;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    transition: var(--transition);
    position: relative;
}

.plan-card.highlighted {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(78, 250, 156, 0.1);
}

.plan-card:hover {
    transform: translateY(-5px);
}

.plan-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--card-border);
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.plan-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
}

.period {
    color: var(--text-secondary);
    margin-left: 0.25rem;
}

.plan-features {
    margin-bottom: 1.5rem;
}

.plan-features li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.plan-features li i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Setup Guide Section (Minecraft/Discord Pages) */
.setup-guide-section {
    background-color: var(--secondary-color); /* Slightly different background */
}

.setup-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    counter-reset: step-counter; /* Initialize counter */
}

.step-item {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 2rem;
    position: relative;
    transition: var(--transition);
    padding-left: 3.5rem; /* Space for the number */
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.step-item::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: -1px; /* Align with border */
    top: -1px;  /* Align with border */
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 8px 0 8px 0; /* Stylish corner */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color); /* Highlight step title */
}

.step-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.step-item p a {
    color: var(--primary-color);
    font-weight: 500;
}

.step-item p a:hover {
    text-decoration: underline;
}

/* Support & FAQ Section (Minecraft/Discord Pages) */
.support-faq-section {
    text-align: center; /* Center header text */
}

.support-links {
    display: flex;
    justify-content: center; /* Center the buttons */
    align-items: center;
    gap: 1rem; /* Space between buttons */
    margin-top: 2rem; /* Space above buttons */
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}


/* Custom Solution */
.custom-solution {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 3rem;
    margin: 3rem auto;
    text-align: center;
    border: 1px solid var(--card-border);
}

.custom-solution h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.custom-solution p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Locations Section */
.location-cards {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}

.location-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 1.5rem;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    transition: var(--transition);
    cursor: pointer;
}

.location-card.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(78, 250, 156, 0.2);
}

.location-card:hover {
    transform: translateY(-5px);
}

.location-header {
    margin-bottom: 1rem;
}

.country-code {
    font-weight: 700;
    margin-right: 0.5rem;
}

.location-ping {
    color: var(--primary-color);
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.location-ping i {
    margin-right: 0.5rem;
}

.location-details {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 2rem;
}

.location-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.location-title i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.location-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

.feature-box {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 1.5rem;
    background-color: rgba(30, 32, 46, 0.5);
    border-radius: 8px;
    border: 1px solid var(--card-border);
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.feature-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-box h4 {
    margin-bottom: 0.5rem;
}

.feature-box p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Testimonials */
.testimonial-container {
    max-width: 800px;
    margin: 0 auto 2rem;
    position: relative;
}

.testimonial-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 2rem;
    position: relative;
    display: none;
}

.testimonial-card.active {
    display: block;
}

.quote-marks {
    font-size: 4rem;
    color: rgba(78, 250, 156, 0.2);
    position: absolute;
    line-height: 1;
}

.quote-marks.left {
    top: 20px;
    left: 20px;
}

.quote-marks.right {
    bottom: 20px;
    right: 20px;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.testimonial-author {
    margin-top: 1.5rem;
    text-align: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #3a3f59;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.author-info h4 {
    font-size: 1rem;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    text-align: left;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    position: relative;
    z-index: 5;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--card-border);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
    box-shadow: 0 0 5px var(--primary-glow);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 500;
}

.faq-icon {
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: var(--text-secondary);
}

.faq-question h3 {
    font-weight: 500;
}

.testimonials {
    padding: 80px 0;
    background-color: var(--card-bg);
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}

.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

.testimonial-quote-left,
.testimonial-quote-right {
    position: absolute;
    font-size: 4rem;
    color: rgba(78, 250, 156, 0.2);
    z-index: 0;
}

.testimonial-quote-left {
    top: 20px;
    left: 20px;
}

.testimonial-quote-right {
    bottom: 20px;
    right: 20px;
}

.testimonial-slider {
    position: relative;
}

.testimonial-slide {
    display: none;
    text-align: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
    position: relative;
}

.testimonial-content {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 2rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background-color: var(--card-bg);
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    overflow: hidden;
    background-color: rgba(78, 250, 156, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: 600;
}

.testimonial-avatar span {
    font-size: 1.2rem;
    font-weight: bold;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    margin-top: 1.5rem;
    text-align: center;
}

.testimonial-author h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.testimonial-author p {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin: 0;
    text-align: left;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: var(--card-border);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
    box-shadow: 0 0 5px var(--primary-glow);
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-400%); /* Number of slides * 100% */
    }
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    padding: 4rem 2rem 1rem;
    margin-top: 3rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-logo p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h3 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: var(--text-secondary);
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.footer-column ul li a i,
.footer-column ul li i {
    margin-right: 0.5rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* Legal Content Styles */
.legal-content {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 2rem auto;
    background-color: var(--card-bg);
    border-radius: 8px;
    border: 1px solid var(--card-border);
}

.legal-content h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 0 0 10px var(--primary-glow);
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--card-border);
}

.legal-section p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-section ul {
    list-style: disc;
    margin-left: 1.5rem;
    color: var(--text-secondary);
}

.legal-section li {
    margin-bottom: 0.5rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .section-header h2 {
        font-size: 2.2rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .sub-hero h1 {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .setup-steps {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .sub-hero h1 {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-section {
        padding: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .features-grid, .setup-steps {
        grid-template-columns: 1fr; /* Stack items vertically */
    }

    .step-item {
        padding-left: 2rem; /* Adjust padding for smaller screens */
    }

    .step-item::before {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .sub-hero h1 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .stats-container {
        gap: 1rem;
    }

    .stat-box {
        width: 140px;
        padding: 1rem;
    }

    .stat-box h2 {
        font-size: 2rem;
    }

    .pricing-tabs {
        flex-direction: column;
    }

    .support-links .btn {
        width: 100%; /* Make buttons full width */
        justify-content: center;
    }
}
