/* Modern SaaS website styling */
:root {
    /* Color variables */
    --primary-color: #7209b7; /* Roxo - mais escuro */
    --primary-light: #9d4edd;
    --primary-dark: #560bad;
    --secondary-color: #4cc9f0;
    --accent-color: #4361ee;
    --text-dark: #2b2d42;
    --text-light: #8d99ae;
    --text-white: #f8f9fa;
    --bg-light: #f8f9fa;
    --bg-dark: #212529;
    --success-color: #06d6a0;
    --warning-color: #ffd166;
    --error-color: #ef476f;
    
    /* Font sizes */
    --font-xl: 3.5rem;
    --font-lg: 2.5rem;
    --font-md: 1.5rem;
    --font-sm: 1.125rem;
    --font-xs: 0.875rem;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;
    
    /* Border radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-full: 50%;
}

/* Reset and base styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

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

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
}

h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
}

/* Container styling */
.app-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
}

.logo-text .accent {
    color: var(--primary-color);
}

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

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Add highlight for test page link */
.nav-links a.highlight {
    color: #ff6b35;
    font-weight: 600;
    position: relative;
}

.nav-links a.highlight::after {
    content: 'Novo';
    position: absolute;
    top: -10px;
    right: -15px;
    background: #ff6b35;
    color: white;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 10px;
    font-weight: bold;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(114, 9, 183, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

.btn-outline {
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-light);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Hero section */
.hero {
    padding: 10rem 2rem 5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 90vh;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    margin-right: 2rem;
}

.hero h1 {
    font-size: var(--font-xl);
    margin-bottom: 1rem;
    line-height: 1.1;
    color: var(--primary-color);
}

.hero .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(114, 9, 183, 0.3);
    z-index: -1;
}

.hero-subtitle {
    font-size: var(--font-md);
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-description {
    font-size: var(--font-sm);
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tag {
    background-color: rgba(114, 9, 183, 0.1);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: var(--font-xs);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tag i {
    color: var(--primary-color);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    max-width: 600px;
    position: relative;
}

/* Dashboard preview styling */
.dashboard-preview {
    position: relative;
    padding: 20px;
}

.dashboard-window {
    background-color: white;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 100px rgba(114, 9, 183, 0.1);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.dashboard-window:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.window-header {
    background-color: #f0f4f8;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e1e5ea;
}

.window-actions {
    display: flex;
    gap: 8px;
    margin-right: 20px;
}

.window-action {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #e1e5ea;
}

.window-action:first-child {
    background-color: #ff6464;
}

.window-action:nth-child(2) {
    background-color: #ffbb64;
}

.window-action:nth-child(3) {
    background-color: #64c964;
}

.window-title {
    font-size: var(--font-xs);
    color: var(--text-light);
    font-weight: 500;
}

.dashboard-content {
    padding: 20px;
    background-color: white;
}

.chart-container {
    margin-bottom: 20px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.chart-header span {
    font-weight: 600;
    color: var(--text-dark);
}

.stat-increase {
    color: var(--success-color);
    font-weight: 700;
}

.chart-visual {
    height: 180px;
    background: linear-gradient(180deg, rgba(114, 9, 183, 0.2) 0%, rgba(114, 9, 183, 0) 100%);
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
}

.chart-visual::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(114, 9, 183, 0.3);
}

.chart-line {
    position: relative;
}

.chart-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,40 Q30,15 60,30 T120,20 T180,30 T240,15 T300,30 T360,20 T420,40' stroke='%237209b7' stroke-width='3' fill='none'/%3E%3C/svg%3E") repeat-x;
    background-size: 420px 50px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.metric-card {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: var(--radius-sm);
    text-align: center;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.metric-label {
    font-size: var(--font-xs);
    color: var(--text-light);
    margin-bottom: 10px;
}

.metric-change {
    font-size: var(--font-xs);
    font-weight: 600;
}

.metric-change.positive {
    color: var(--success-color);
}

.metric-change.negative {
    color: var(--error-color);
}

.funnel-visualization {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.funnel-stage {
    background: linear-gradient(90deg, var(--primary-light), var(--primary-color));
    color: white;
    padding: 8px 15px;
    border-radius: var(--radius-sm);
    font-size: var(--font-xs);
    font-weight: 500;
    transition: all 0.3s ease;
}

.funnel-stage:hover {
    transform: translateX(5px);
}

/* Who We Are section */
.who-we-are {
    padding: var(--space-lg) var(--space-md);
    background-color: white;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-lg);
}

.section-header h2 {
    font-size: var(--font-lg);
    margin-bottom: var(--space-sm);
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-header p {
    color: var(--text-light);
    font-size: var(--font-sm);
}

.who-we-are-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.text-content {
    flex: 1;
    min-width: 300px;
}

.lead-text {
    font-size: var(--font-md);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.text-content p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.benefits-list {
    margin-top: 2rem;
}

.benefits-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefits-list i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.about-img {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Values section */
.values {
    padding: var(--space-lg) var(--space-md);
    background-color: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background-color: white;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    margin: 0 auto 1.5rem;
    font-size: 28px;
}

.value-card h3 {
    font-size: var(--font-sm);
    margin-bottom: var(--space-xs);
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-light);
    font-size: var(--font-xs);
}

/* What We Do section */
.what-we-do {
    padding: var(--space-lg) var(--space-md);
    background-color: white;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
}

.services-list {
    flex: 1;
    min-width: 300px;
}

.service-item {
    display: flex;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateX(10px);
}

.service-icon {
    margin-right: 1.5rem;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.service-text h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

.services-image {
    flex: 1;
    min-width: 300px;
}

.services-visual {
    height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
}

/* Why Us section */
.why-us {
    padding: var(--space-lg) var(--space-md);
    background-color: var(--bg-light);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-us-card {
    background-color: white;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-us-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.why-us-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    font-size: 24px;
}

.why-us-card h3 {
    font-size: var(--font-sm);
    margin-bottom: var(--space-xs);
    color: var(--text-dark);
}

.why-us-card p {
    color: var(--text-light);
    font-size: var(--font-xs);
}

/* Use Cases section */
.use-cases {
    padding: var(--space-lg) var(--space-md);
    background-color: white;
}

.use-cases-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.use-cases-text {
    flex: 1;
    min-width: 300px;
}

.use-cases-text h3 {
    font-size: var(--font-md);
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.use-cases-list {
    margin-bottom: 2rem;
}

.use-cases-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-dark);
}

.use-cases-list i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.use-case-cta {
    margin-top: 2rem;
}

.use-cases-image {
    flex: 1;
    min-width: 300px;
}

.use-cases-img {
    height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Testimonials section */
.testimonials {
    padding: var(--space-lg) var(--space-md);
    background-color: var(--bg-light);
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    height: 300px;
}

.testimonial-card {
    position: absolute;
    width: 100%;
    padding: var(--space-md);
    background-color: white;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-content {
    margin-bottom: var(--space-md);
}

.testimonial-content p {
    font-size: var(--font-sm);
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    position: relative;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-size: 3rem;
    color: var(--primary-light);
    opacity: 0.3;
    position: absolute;
    line-height: 0;
}

.testimonial-content p::before {
    top: 15px;
    left: -15px;
}

.testimonial-content p::after {
    bottom: -10px;
    right: -15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-light);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
}

.author-title {
    font-size: var(--font-xs);
    color: var(--text-light);
}

/* CTA section */
.cta-section {
    padding: var(--space-lg) var(--space-md);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-section h2 {
    font-size: var(--font-lg);
    margin-bottom: var(--space-sm);
    color: white;
}

.cta-section p {
    margin-bottom: var(--space-md);
    font-size: var(--font-sm);
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.cta-buttons button {
    min-width: 200px;
}

/* Form popup styling */
.form-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: white;
    padding: 30px;
    border-radius: var(--radius-md);
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #666;
    transition: color 0.2s;
}

.close-btn:hover {
    color: #000;
}

.popup-content h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.75rem;
}

.popup-content > p {
    margin-bottom: 25px;
    color: var(--text-light);
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

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

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(114, 9, 183, 0.1);
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(114, 9, 183, 0.3);
}

.thank-you-message {
    display: none;
    text-align: center;
}

.thank-you-message h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.thank-you-message p {
    margin-bottom: 20px;
}

#formDataSummary {
    background-color: #f9f9fa;
    padding: 15px;
    border-radius: var(--radius-sm);
    margin-top: 20px;
    text-align: left;
}

#formDataSummary p {
    margin-bottom: 5px;
    font-size: var(--font-xs);
}

/* Footer section */
footer {
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding-top: var(--space-lg);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo p {
    margin-top: var(--space-sm);
    opacity: 0.7;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.footer-column h4 {
    margin-bottom: var(--space-sm);
    font-size: var(--font-sm);
    color: var(--text-white);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-column ul a {
    color: var(--text-white);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-column ul a:hover {
    opacity: 1;
    color: var(--text-white);
}

.footer-bottom {
    padding: var(--space-md);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-sm);
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: var(--font-xs);
}

.social-links {
    display: flex;
    gap: var(--space-sm);
}

.social-links a {
    color: var(--text-white);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 1;
    color: var(--text-white);
}

/* Responsive design */
@media (max-width: 768px) {
    :root {
        --font-xl: 2.5rem;
        --font-lg: 2rem;
        --font-md: 1.25rem;
    }
    
    .navbar-container {
        padding: 1rem;
    }
    
    .nav-links, .cta-button {
        display: none;
    }
    
    .hero {
        padding: 8rem 1rem 3rem;
        text-align: center;
    }
    
    .hero-content {
        margin-right: 0;
        margin-bottom: 3rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-tags {
        justify-content: center;
    }
    
    .who-we-are-content,
    .services-container,
    .use-cases-content {
        flex-direction: column;
    }
    
    .dashboard-preview, .dashboard-preview-large {
        padding: 10px;
    }
    
    .dashboard-content.large,
    .services-visual {
        height: 300px;
    }
    
    .testimonial-slider {
        height: 400px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    :root {
        --font-xl: 2rem;
        --font-lg: 1.75rem;
        --font-md: 1.25rem;
    }
    
    .values-grid,
    .why-us-grid,
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-slider {
        height: 450px;
    }
    
    .popup-content {
        padding: 20px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .footer-links {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .footer-bottom {
        flex-direction: column;
    }
} 