/* Base styles and variables */
:root {
    --primary: #42a5f5;
    --primary-light: #80d6ff;
    --primary-dark: #0077c2;
    --gradient-primary: linear-gradient(135deg, #42a5f5 0%, #0077c2 100%);
    --gradient-hero: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    --gradient-cta: linear-gradient(135deg, #2575fc 0%, #6a11cb 100%);
    --white: #ffffff;
    --light: #f8f9fa;
    --light-gray: #f2f2f2;
    --gray: #e0e0e0;
    --gray-dark: #9e9e9e;
    --text: #333333;
    --text-light: #6c757d;
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.10);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.12);
    --border-radius-sm: 8px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;
    --transition: all 0.3s ease;
}

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

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius-xl);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
    font-size: 0.95rem;
    gap: 8px;
    box-shadow: var(--shadow);
}

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

.btn-primary:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

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

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

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

.btn-light:hover {
    background-color: var(--light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-large {
    padding: 1rem 2.2rem;
    font-size: 1.1rem;
    border-radius: var(--border-radius-xl);
}

.pricing-card .btn {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    display: block;
}

/* Section Styling */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.section-header h2 {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    border-radius: var(--border-radius-sm);
}

/* Header and Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 15px 0;
}

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

.logo h1 {
    font-size: 1.8rem;
    margin: 0;
    color: var(--primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo span {
    font-weight: 400;
    opacity: 0.8;
}

.desktop-nav ul {
    display: flex;
}

.desktop-nav li {
    margin: 0 15px;
}

.desktop-nav a {
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
}

.desktop-nav a:hover {
    color: var(--primary);
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    padding: 30px 20px;
    box-shadow: var(--shadow);
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 999;
}

.mobile-nav.active {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav a {
    font-size: 1.1rem;
    display: block;
    padding: 8px 0;
}

.mobile-cta {
    margin-top: 5px;
}

.mobile-cta .btn {
    width: 100%;
    margin-bottom: 5px;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    letter-spacing: -0.03em;
    background-image: linear-gradient(90deg, #ffffff, #d6e4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

.hero-cta .btn-outline {
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--white);
}

.hero-cta .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.hero-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,96L80,112C160,128,320,160,480,160C640,160,800,128,960,122.7C1120,117,1280,139,1360,149.3L1440,160L1440,320L1360,320C1280,320,1120,320,960,320C800,320,640,320,480,320C320,320,160,320,80,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
}

.stats {
    display: flex;
    gap: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(5px);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-image {
    position: relative;
    transform: perspective(1000px) rotateY(-10deg);
    transition: var(--transition);
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.browser-mockup {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.browser-buttons {
    background-color: var(--light-gray);
    padding: 12px 15px;
    display: flex;
    gap: 8px;
}

.browser-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.browser-buttons span:nth-child(1) {
    background-color: #ff5f57;
}

.browser-buttons span:nth-child(2) {
    background-color: #ffbd2e;
}

.browser-buttons span:nth-child(3) {
    background-color: #28c941;
}

.browser-content {
    padding: 20px;
}

.animated-website {
    width: 100%;
    height: auto;
}

.animated-website rect, .animated-website circle {
    transition: var(--transition);
}

/* Features Section */
.features {
    background-color: var(--white);
    padding-top: 120px;
}

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

.feature-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

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

.feature-card:hover p, .feature-card:hover h3 {
    color: var(--white);
}

.feature-card:hover .feature-icon {
    background-color: rgba(255, 255, 255, 0.2);
}

.feature-card:hover .feature-icon i {
    color: var(--white);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(66, 165, 245, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.carousel-item h3 {
    color: var(--text);
    margin-top: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

.palette-name {
    color: var(--text);
    margin-top: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

.language-label {
    color: var(--text);
    text-align: left;
    margin-bottom: 8px;
    font-weight: 500;
}

/* How It Works Section */
.how-it-works {
    background-color: var(--light-gray);
    position: relative;
    padding: 120px 0;
}

.wave-top, .wave-bottom {
    position: absolute;
    width: 100%;
    left: 0;
    z-index: 1;
}

.wave-top {
    top: 0;
}

.wave-bottom {
    bottom: 0;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto 80px;
}

.step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex-grow: 1;
}

.step-content h3 {
    margin-bottom: 10px;
}

.demo-animation {
    max-width: 800px;
    margin: 0 auto;
}

.animation-container {
    position: relative;
    width: 100%;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.12));
}

.process-animation {
    width: 100%;
    height: auto;
}

/* Animation Effects */
.form-container {
    transform-origin: center;
    animation: pulse 4s infinite alternate ease-in-out;
}

.form-field {
    animation: slide 2s infinite alternate ease-in-out;
}

.processing-circle {
    animation: rotate 6s linear infinite;
}

.processing-icon {
    animation: scale 2s infinite alternate ease-in-out;
}

.result-header {
    animation: colorShift 4s infinite alternate;
}

.result-content {
    animation: reveal 3s infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(5px); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes scale {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

@keyframes colorShift {
    0% { fill: var(--primary); }
    100% { fill: var(--primary-dark); }
}

@keyframes reveal {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Pricing Section */
.pricing {
    background-color: var(--white);
    padding: 120px 0;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    gap: 15px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray);
    transition: var(--transition);
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: var(--white);
    transition: var(--transition);
    border-radius: 50%;
}

input:checked + .slider {
    background: var(--gradient-primary);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.save-badge {
    background-color: var(--primary);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
    margin-left: 5px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
}

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

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

.card-tag {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 0 var(--border-radius-lg) 0 var(--border-radius-lg);
}

.card-header {
    background-color: var(--light-gray);
    padding: 40px 30px;
    text-align: center;
}

.price {
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 5px;
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.period {
    margin-top: 15px;
    color: var(--text-light);
}

.card-body {
    padding: 30px;
}

.features-list {
    margin-bottom: 30px;
}

.features-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    line-height: 1.4;
}

.features-list i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 1rem;
}

.pricing-note {
    display: none;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-cta);
    color: var(--white);
    text-align: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.2;
}

.cta-shape-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,96L80,117.3C160,139,320,181,480,186.7C640,192,800,160,960,154.7C1120,149,1280,171,1360,181.3L1440,192L1440,0L1360,0C1280,0,1120,0,960,0C800,0,640,0,480,0C320,0,160,0,80,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
}

.cta-shape-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,256L60,266.7C120,277,240,299,360,272C480,245,600,171,720,149.3C840,128,960,160,1080,181.3C1200,203,1320,213,1380,218.7L1440,224L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
}

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

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

/* FAQ Section */
.faq {
    background-color: var(--light);
    padding: 120px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: var(--white);
    transition: var(--transition);
}

.faq-item.active .faq-question {
    background-color: var(--light-gray);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    transition: var(--transition);
}

.faq-toggle {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-gray);
    border-radius: 50%;
    transition: var(--transition);
    color: var(--primary);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background-color: var(--primary);
    color: var(--white);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 1000px;
}

/* Footer */
footer {
    background-color: #212121;
    color: var(--white);
    padding: 100px 0 20px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr) 2fr;
    gap: 50px;
    margin-bottom: 80px;
}

.footer-col h2 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 2rem;
    background: linear-gradient(90deg, var(--primary-light), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    font-size: 1.2rem;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 3px;
    background-color: var(--primary);
    border-radius: var(--border-radius-sm);
}

.brand p {
    margin-bottom: 20px;
    opacity: 0.8;
    color: var(--gray);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px);
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    opacity: 0.8;
    transition: var(--transition);
    color: var(--gray);
    display: block;
    padding: 3px 0;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--primary);
    transform: translateX(5px);
}

.contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    opacity: 0.8;
    color: var(--gray);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    opacity: 0.6;
    font-size: 0.9rem;
    color: var(--gray);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-image {
        order: 0;
        margin-bottom: 50px;
        transform: perspective(1000px) rotateY(0deg);
    }
    
    .hero-cta, .stats {
        justify-content: center;
    }
    
    .stats {
        flex-wrap: wrap;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 80px 0;
    }
    
    .hero {
        padding: 150px 0 80px;
    }
    
    .desktop-nav, .cta-buttons {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
    
    .step {
        padding: 25px 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-col h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-col {
        text-align: center;
    }
    
    .contact p {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 130px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .pricing-toggle {
        flex-direction: column;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}