/* Variables */
:root {
    /* --primary-color: #2563eb; */
    --primary-color: #629b7f;

    --secondary-color: #2f4f4f;
    --accent-color: #3b82f6;
    --text-color: #333;
    --light-text: #666;
    --bg-color: #fff;
    --light-bg: #f8fafc;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --error-color: #ef4444;
    --container-width: 1200px;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --text-light: #fff;
    --primary-cream: #FFB900;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
}

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

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

button, .button, input[type="submit"] {
    cursor: pointer;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

button:hover, .button:hover, input[type="submit"]:hover {
    background-color: var(--secondary-color);
}

.button.secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.button.secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 16px;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--primary-orange);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo, .footer-logo {
    display: flex;
    align-items: center;
}

.logo img, .footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-logo img {
    filter: invert(1);
}

.logo-text {
    font-weight: bold;
    font-size: 28px;
    color: var(--primary-dark) !important;
}

.logo a:hover .logo-text {
    color: var(--text-light) !important;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 600;
    color: var(--text-color);
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background-color: var(--light-bg);
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.hero p {
    font-size: 20px;
    color: var(--light-text);
    max-width: 800px;
    margin: 0 auto 40px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    margin-right: 10px;
}

.success-message {
    display: none;
    color: var(--success-color);
    margin-top: 20px;
    font-weight: 600;
}

/* Trusted By Section */
.trusted-by {
    padding: 60px 0;
    text-align: center;
    background-color: var(--bg-color);
}

.trusted-by h3 {
    margin-bottom: 40px;
    color: var(--light-text);
}

.logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.logo-item {
    width: 120px;
    height: 60px;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.features h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.features h3 {
    font-size: 24px;
    color: var(--light-text);
    margin-bottom: 60px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-item {
    background-color: var(--bg-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* Products Section */
.products {
    padding: 100px 0;
    text-align: center;
}

.products h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.products h3 {
    font-size: 24px;
    color: var(--light-text);
    margin-bottom: 60px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.product-item {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-image {
    height: 200px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-height: 100%;
}

.product-item h4 {
    font-size: 20px;
    margin: 20px 0 15px;
    padding: 0 20px;
}

.product-item p {
    padding: 0 20px;
    margin-bottom: 20px;
    color: var(--light-text);
}

.learn-more {
    display: inline-block;
    margin: 0 20px 20px;
    font-weight: 600;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.faq h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.faq h3 {
    font-size: 24px;
    color: var(--light-text);
    margin-bottom: 60px;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.accordion-item {
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.accordion-header {
    background-color: var(--bg-color);
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

.accordion-header::after {
    content: '+';
    position: absolute;
    right: 20px;
    transition: var(--transition);
}

.accordion-item.active .accordion-header::after {
    transform: rotate(45deg);
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item.active .accordion-content {
    padding: 20px;
    max-height: 1000px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    text-align: center;
}

.testimonials h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.testimonials h3 {
    font-size: 24px;
    color: var(--light-text);
    margin-bottom: 60px;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 60px;
}

.stat-item h3 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--light-text);
}

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

.testimonial-item {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: left;
}

.testimonial-item p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author h5 {
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author p {
    font-style: normal;
    color: var(--light-text);
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact p {
    max-width: 600px;
    margin: 0 auto 40px;
    color: var(--light-text);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.validation-message {
    display: none;
    color: var(--error-color);
    font-size: 14px;
    margin-top: 5px;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: white;
    padding: 10px 0 8px;
}

footer .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-logo img {
    height: 20px;
    filter: invert(1);
}

.footer-logo .logo-text {
    font-size: 18px;
}

.footer-logo .logo-text:hover {
    color: #FFB900 !important;
}

.footer-links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.footer-links ul li a {
    font-size: 15px;
    color: white;
    opacity: 0.8;
}

.footer-copyright {
    font-size: 13px;
    opacity: 0.6;
    text-align: center;
    margin-top: 5px;
}

#site-footer a:hover {
    color: #ffd700;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero, .features, .products, .faq, .testimonials, .contact {
    animation: fadeIn 1s ease-out;
}

/* Contact Form Styles */
.contact-form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: #333;
}

.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #007bff;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background-color: var(--primary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: var(--secondary-color);
}

.feedback-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 4px;
  text-align: center;
}

.feedback-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.feedback-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}


/* Menu Burger */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: var(--transition);
}


.section-light {
  background-color: #ffffff;
  color: #333333;
}

.section-dark {
  background-color: #f5f5f5;
  color: #333333;
} 

@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #FFB900;
        padding: 20px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

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

    .nav-menu ul {
        flex-direction: column;
    }

    .nav-menu li {
        margin: 10px 0;
    }

    /* Croix : on rapproche les deux barres avant de les faire pivoter,
       sinon elles pivotent chacune sur place et dessinent un chevron. */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .stats {
        flex-direction: column;
        gap: 40px;
    }
    
    nav ul {
        display: none;
    }
    
    footer .container {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 20px;
    }

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

    .footer-links ul {
        flex-direction: column;
        gap: 15px;
    }

    .footer-links ul li {
        margin: 0;
    }

    .contact-form-container {
      padding: 1rem;
    }
  }
  
/* Success Page Styles */
.success-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
}

.success-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--background-color);
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.success-icon {
  font-size: 4rem;
  color: #4CAF50;
  margin-bottom: 1.5rem;
}

.success-content h1 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.success-details {
  margin: 2rem 0;
  color: var(--text-color);
}

.success-details p {
  margin-bottom: 1rem;
}

.success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.btn-primary, .btn-secondary {
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

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

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

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

#site-footer a,
#site-footer .logo-text,
footer .logo-text,
footer a {
  color: #fff !important;
} 
footer a:hover {
  color: #ffd700 !important;
} 

#site-footer .footer-logo a .logo-text:hover {
    color: #FFB900 !important;
} 

/* Product Status Badges */
.status-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 10;
}

.status-badge.available {
  background-color: #10b981;
  color: white;
}

.status-badge.coming-soon {
  background-color: #f59e0b;
  color: white;
}

.status-badge.in-development {
  background-color: #6b7280;
  color: white;
}

.product-item {
  position: relative;
}

.product-item.coming-soon,
.product-item.in-development {
  opacity: 0.8;
}

.product-item.coming-soon:hover,
.product-item.in-development:hover {
  opacity: 1;
}

/* Notify Me Button Styles */
.notify-me {
  background-color: #6b7280 !important;
  color: white !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  border-radius: 25px !important;
  padding: 12px 24px !important;
  transition: all 0.3s ease !important;
}

.notify-me:hover {
  background-color: #4b5563 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

/* View Details Button Styles */
.learn-more {
  border-radius: 25px !important;
  padding: 12px 24px !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  display: inline-block !important;
  background-color: var(--primary-color) !important;
  color: white !important;
}

.learn-more:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
  background-color: #4a7c59 !important;
  opacity: 0.9 !important;
}

/* Install Button Styles - Same as View Details */
.install-button {
  border-radius: 25px !important;
  padding: 12px 24px !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  display: inline-block !important;
  background-color: var(--primary-color) !important;
  color: white !important;
  font-weight: 600 !important;
  border: none !important;
  cursor: pointer !important;
  text-align: center !important;
  margin: 0 20px 20px !important;
}

.install-button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
  background-color: #4a7c59 !important;
  opacity: 0.9 !important;
}

/* Product Item Button Container */
.product-item .button-container {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 20px 20px 0;
  padding-bottom: 20px;
}

.product-item .button-container .install-button {
  flex: 1;
  min-width: 140px;
  margin: 0 !important;
}

.product-item .button-container .learn-more {
  flex: 1;
  min-width: 140px;
  margin: 0 !important;
}

/* Notify Me Modal Centering */
.notify-modal-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  z-index: 1000 !important;
}

.notify-modal-content {
  background: white !important;
  padding: 30px !important;
  border-radius: 10px !important;
  max-width: 500px !important;
  width: 90% !important;
  max-height: 80vh !important;
  overflow-y: auto !important;
  margin: 20px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
  position: relative !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  transform: none !important;
}

/* Features section specific styles */
#features .product-item {
  padding: 30px;
}

#features .product-item h4 {
  padding: 0;
  margin: 0 0 15px 0;
}

#features .product-item ul {
  padding: 0;
  margin: 0;
  text-align: left;
}

#features .product-item ul li {
  padding: 5px 0;
  margin: 0;
}

/* Product Image Fixed Size */
.product-image img {
  width: 120px !important;
  height: 120px !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
}

/* Pricing Section Styles */
.pricing {
  padding: 100px 0;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.pricing-card {
  background-color: var(--bg-color);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
}

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

.pricing-card:hover {
  transform: translateY(-5px);
}

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

.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--text-color);
}

.price {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.price span {
  font-size: 16px;
  color: var(--light-text);
  font-weight: normal;
}

.pricing-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 30px;
}

.pricing-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
}

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

/* Installation Steps Styles */
.installation-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.step {
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto 20px;
}

.step h4 {
  margin-bottom: 15px;
  color: var(--text-color);
}

/* Use Cases Styles */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.use-case {
  background-color: var(--bg-color);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.use-case h4 {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.use-case ul {
  text-align: left;
}

.use-case ul li {
  margin-bottom: 10px;
  padding-left: 10px;
}

/* Security Features Styles */
.security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.security-item {
  text-align: center;
  padding: 30px;
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.security-item i {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.security-item h4 {
  margin-bottom: 15px;
  color: var(--text-color);
}

/* Support Options Styles */
.support-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.support-item {
  text-align: center;
  padding: 30px;
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.support-item i {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.support-item h4 {
  margin-bottom: 15px;
  color: var(--text-color);
}

/* Screenshots Grid Styles */
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.screenshot-item {
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: var(--transition);
}

.screenshot-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.screenshot-item img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid var(--border-color);
}

.screenshot-item h4 {
  padding: 20px 20px 10px;
  margin: 0;
  color: var(--text-color);
  font-size: 20px;
}

.screenshot-item p {
  padding: 0 20px 20px;
  margin: 0;
  color: var(--light-text);
  line-height: 1.6;
}

/* Usage Grid Styles */
.usage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.usage-item {
  background-color: var(--bg-color);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.usage-item h4 {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.usage-item ol, .usage-item ul {
  text-align: left;
}

.usage-item ol li, .usage-item ul li {
  margin-bottom: 10px;
  padding-left: 10px;
}

/* Responsive adjustments for Cleaner for Gmail™ page */
@media (max-width: 768px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }
}