.price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.original-price {
    font-size: 24px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

/* Hero section CTA buttons */
.hero .cta-buttons {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.hero .btn-primary,
.hero .btn-secondary {
    flex: 1 1 auto;
    text-align: center;
    justify-content: center;
    display: inline-flex;
    padding: 12px 20px;
}

@media (max-width: 576px) {
    .hero .cta-buttons {
        flex-direction: column;
    }
    
    .hero .btn-primary,
    .hero .btn-secondary {
        width: 100%;
    }
}


.pro-video-demo {
    background-color: rgba(9, 197, 163, 0.05);
    position: relative;
    overflow: hidden;
}

.pro-demo-light {
    top: 10%;
    right: 0;
    width: 60vw;
    max-width: 800px;
    height: 60vh;
    max-height: 600px;
    background: radial-gradient(ellipse, rgba(9, 197, 163, 0.3) 0%, rgba(9, 197, 163, 0.1) 40%, rgba(9, 197, 163, 0) 70%);
    filter: blur(70px);
    opacity: 0.8;
}

.features-subtitle {
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.pro-subtitle {
    margin-top: 60px;
    color: var(--primary);
}

.pro-subtitle:before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
}.page-wrapper {
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

html, body {
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

/* Video Demo Section */
.video-demo {
    position: relative;
    background-color: var(--background);
}

.demo-light {
    top: 0;
    left: 0;
    width: 50vw;
    max-width: 800px;
    height: 50vw;
    max-height: 600px;
    background: radial-gradient(ellipse, rgba(9, 197, 163, 0.15) 0%, rgba(9, 197, 163, 0.05) 40%, rgba(9, 197, 163, 0) 70%);
    filter: blur(80px);
    opacity: 0.6;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 40px var(--shadow-stronger);
    border: 1px solid var(--border);
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--background-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.video-placeholder:hover {
    transform: scale(1.01);
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(9, 197, 163, 0.6));
}

.play-button {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(9, 197, 163, 0.4));
}

.video-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
}



.video-caption {
    text-align: center;
    margin-top: 20px;
    color: var(--text-secondary);
    font-size: 18px;
}

@media (max-width: 768px) {
    .video-caption {
        font-size: 16px;
        padding: 0 20px;
    }
    
    /* Reduce glow effects for better mobile performance */
    .glow-circle, .accent-light {
        opacity: 0.4;
        filter: blur(40px);
    }
    
    .glow-3 {
        display: none; /* Hide one glow circle on mobile */
    }
}

@keyframes pulse {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
    100% {
        opacity: 0.5;
        transform: scale(1);
    }
}

/* Glow effects */
.glow-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
    max-width: 100vw;
}

.glow-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(9, 197, 163, 0.15) 0%, rgba(9, 197, 163, 0.05) 35%, rgba(9, 197, 163, 0) 70%);
    filter: blur(50px);
    opacity: 0.5;
}

.glow-1 {
    top: 10%;
    left: 10%;
    width: 50vw;
    max-width: 600px;
    height: 50vw;
    max-height: 600px;
    animation: float 25s ease-in-out infinite;
}

.glow-2 {
    bottom: 5%;
    right: 15%;
    width: 40vw;
    max-width: 500px;
    height: 40vw;
    max-height: 500px;
    animation: float 20s ease-in-out infinite reverse;
}

.glow-3 {
    top: 40%;
    right: 30%;
    width: 30vw;
    max-width: 400px;
    height: 30vw;
    max-height: 400px;
    animation: float 30s ease-in-out infinite;
    animation-delay: 5s;
}

/* Section accent lights */
.accent-light {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.hero-light {
    top: -10vh;
    right: 0;
    width: 60vw;
    max-width: 800px;
    height: 60vw;
    max-height: 800px;
    background: radial-gradient(circle, rgba(9, 197, 163, 0.2) 0%, rgba(9, 197, 163, 0.05) 40%, rgba(9, 197, 163, 0) 70%);
    filter: blur(70px);
    border-radius: 50%;
    opacity: 0.8;
}

.workflow-light {
    bottom: -20vh;
    left: 0;
    width: 50vw;
    max-width: 700px;
    height: 50vw;
    max-height: 700px;
    background: radial-gradient(circle, rgba(9, 197, 163, 0.15) 0%, rgba(9, 197, 163, 0.05) 40%, rgba(9, 197, 163, 0) 70%);
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.7;
}

.pricing-light {
    top: 10%;
    right: 0;
    width: 40vw;
    max-width: 500px;
    height: 40vw;
    max-height: 500px;
    background: radial-gradient(circle, rgba(9, 197, 163, 0.1) 0%, rgba(9, 197, 163, 0.05) 40%, rgba(9, 197, 163, 0) 70%);
    filter: blur(60px);
    border-radius: 50%;
    opacity: 0.8;
}

.cta-light {
    bottom: -10vh;
    left: 50%;
    transform: translateX(-50%);
    width: 70vw;
    max-width: 900px;
    height: 40vh;
    max-height: 500px;
    background: radial-gradient(circle, rgba(9, 197, 163, 0.2) 0%, rgba(9, 197, 163, 0.05) 40%, rgba(9, 197, 163, 0) 70%);
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.8;
}

@keyframes float {
    0% {
        transform: translate(0px, 0px);
    }
    25% {
        transform: translate(20px, 20px);
    }
    50% {
        transform: translate(0px, 40px);
    }
    75% {
        transform: translate(-20px, 20px);
    }
    100% {
        transform: translate(0px, 0px);
    }
}

/* Base styles and variables */
:root {
    --primary: #09c5a3;
    --primary-light: #0fdcb7;
    --primary-dark: #0daa8c;
    --background: #1a1a1a;
    --background-lighter: #232323;
    --background-darker: #121212;
    --text: #f8f8f8;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-tertiary: rgba(255, 255, 255, 0.5);
    --border: rgba(255, 255, 255, 0.1);
    --shadow: rgba(0, 0, 0, 0.2);
    --shadow-stronger: rgba(0, 0, 0, 0.4);
    --glow: rgba(9, 197, 163, 0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

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

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

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

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

/* Noise overlay for texture */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAAXNSR0IArs4c6QAABNJJREFUaEPtmttx1DAQhv9dBZcKgAqACgIVXKiAUAFQAaECQgWECggVECogVHBQAaSCZT7NRkeOvbZlyxkm82A/eC2t9O9qdx1pfVlomS9rxidnr2B48JeZHQO4BXC9SCDvAXwE8A7AA4B7SZ8nm9IQkJndADgbOoFGnbkCcCnp9RCboZCuABwOMRxZdgvgQtLzlMyQrpjZMYDXKaER5EuS3H0XZjYVyEmjSLLR2ZKkb3tP3sxOALyceuK18jOS7m/xwCmQFwC+APgB4E3lJlPqPG1mMtxPHG/WILTRnT8AXK01mfZ417KkNDNOyvk+HRBpXFLwi53CRjOblRVJl5EnfOj+jn+vzIw7Tw8Pc2+SHs2GCcRsZk3SteTMJJ22JmtmDmKHs8Iwd5Kemlnvjgf1T+YMMscnZnPEzBxiR/Ap2rwJIMu6NXbHO5W2uI25CyA80QTKUa3c1HYFENyQpDez4UDIXSZDZtZyE5YTgvSE5yWA44QTU4q/lXRsZjnRfCCmWgDOJd3tRiZLANkXF/VLlXeSzsyMJYA5rLOkpAvb95JAuIM89UuVN5JOLYB4xLPD1HKM7gJZVw7CLJEDue5UcaIGiGc13EaGkqEH4I8aSPiELf8CiFV22Yy/AfA9d+rG/2e6a2bMznKBZrjBGXgfkNdRvX9I+mVm7KvVCnNpAMnpmNe2yAqT0D4gvhP7kt4yt8o24TIGeRDvSmn3bQAJ8YClX/TSMDMWjbWS6sBZxX4gKUvZmNmPQAeHDVc2A40jScm7YwMDXpQnY+asjCW93DeTUCIQZqLZTCpnVAOSPfVybDMze06Vj61g4g7EzOHQgT8+7N7wMwAeSkr2t3MADQwdirGcwQSf/FLDrWtm2ZxqaaclIF6QZ28Mk8xUE77kLl1LQLy94/fzJGOm/qlxYzUgbmRmrEJrZLShvgTEGxDnlXUwALHTXDX0J0lZ7Rj7NgFxQzOLe+e1JzNJGQIQN3Sfgp/7GE9K4t5Fsg8EOxMGZHacE/VTMxCKbLIgzAzSVo/qPdnMI9u4DGUgVCqpzLmgCdXWCYTNtpzuRsGXdpd1A2FEFu6cLZdBkhFLAMJjdGzP/BCTXkwcZKl+DEKlkspRnEwYtM5Iw8mEzYHcGSTJRCRd1FYNjYZ2CUTo/Gw8TvRl4v64+Dq3lHvkS8FkMZU5xBGPJfEILZYcEAYXmmQjpcIEe2oivlLALG2xNJK90cZAODh3OewcT20eWwtL8mfkL29dIIztbEQ0zXkfmvPEMU/8ytrSP9D+dU3LgUhzoCMkv7q2x44y5OLbDa+JFTvLXcjMxwCSPU9qcgcOjvlhCdxJ+f4GAKVCsvZacpMDxKugWO+mLhslbW9DjLSBbGSqnrWWBh4KJGyH+lAcWcFYmLhKCYdSUlc3PmUg65xrMxYuVmb1I1FSDL5RrQGS8jcXkfbNWLX8lwvQ6rlVgcTdOe5g2KtJvZCq9eWfAEm9vG29nzxVIDmLlMsI9/LhWgLhS5DVOh6VIDk3VWPnswukk4mxL5KSkZ0C4ZhVv2+Ue6hX0ruhu9MZcVNVbsKcjnXLKJAiA1MorBrEFPDGOscZmRLK/wFSukMxQZQh3QAAAABJRU5ErkJggg==');
    opacity: 0.02;
    pointer-events: none;
    z-index: -1;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    box-shadow: 0 2px 8px var(--glow);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--glow);
    background: linear-gradient(145deg, var(--primary-light), var(--primary));
    color: white;
}

.btn-secondary {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

/* Highlight text */
.highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

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

section:nth-child(odd) {
    background-color: var(--background-darker);
}

.section-title {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
}

.features-subtitle {
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.pro-subtitle {
    margin-top: 60px;
    color: var(--primary);
}

.pro-subtitle:before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    section {
        padding: 60px 0;
    }
}

/* Header styles */
header {
    background-color: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

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

header .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

header .logo h1 {
    font-size: 20px;
    font-weight: 500;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
}

header nav ul {
    display: flex;
    gap: 30px;
}

header nav ul li a {
    color: var(--text);
    font-weight: 500;
    position: relative;
}

header nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    transition: width 0.3s ease;
}

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

header nav ul li a:hover:after {
    width: 100%;
}

@media (max-width: 768px) {
    header nav ul {
        gap: 15px;
    }
}

/* Hero section */
.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
    z-index: 1;
}

.hero-content h1 {
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-content h2 {
    font-size: 24px;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--text-secondary);
}

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

.hero-image {
    flex: 1;
    position: relative;
}

.mockup {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 35px var(--shadow-stronger);
    transform: perspective(800px) rotateY(-15deg) rotateX(10deg) rotate(2deg);
    transition: var(--transition);
}

.mockup:hover {
    transform: perspective(800px) rotateY(-10deg) rotateX(5deg) rotate(1deg) scale(1.02);
}

.mockup img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
}

.glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(9, 197, 163, 0.15), transparent 70%);
    pointer-events: none;
}

@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 40px;
    }
    
    .hero-content h2 {
        font-size: 20px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Features section */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: var(--background-lighter);
    border-radius: var(--radius-md);
    padding: 30px;
    transition: var(--transition);
    border: 1px solid var(--border);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow);
    border-color: var(--primary);
    border-image: linear-gradient(to right, var(--primary-dark), var(--primary-light)) 1;
}

.pro-feature {
    position: relative;
    border: 1px solid rgba(9, 197, 163, 0.3);
    background-color: rgba(9, 197, 163, 0.05);
}

.pro-feature:before {
    content: 'PRO';
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #09c5a3;
    color: #000;
    font-size: 10px;
    font-weight: bold;
    padding: 3px 6px;
    border-radius: 4px;
    opacity: 0.9;
}

.feature-icon {
    margin-bottom: 20px;
}

.emoji {
    font-size: 40px;
    display: inline-block;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

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

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

/* How OneShot Works section */
.how-it-works {
    background: linear-gradient(135deg, var(--background-darker), var(--background));
}

.workflow-container {
    max-width: 1000px;
    margin: 0 auto;
}

.workflow-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    gap: 40px;
}

.workflow-item:last-child {
    margin-bottom: 0;
}

.workflow-item:not(:last-child):after {
    content: '';
    position: absolute;
    top: 100%;
    left: 35px;
    height: 40px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), rgba(9, 197, 163, 0.1));
}

.workflow-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 5px 15px var(--glow);
    position: relative;
    z-index: 2;
}

.workflow-number::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary);
    filter: blur(15px);
    opacity: 0.5;
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

.workflow-content {
    flex: 1;
}

.workflow-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.workflow-content p {
    color: var(--text-secondary);
    font-size: 16px;
}

.workflow-image {
    flex: 1;
    max-width: 400px;
}

.workflow-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 25px var(--shadow-stronger);
    border: 1px solid var(--border);
}

@media (max-width: 992px) {
    .workflow-item {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .workflow-item:not(:last-child):after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .workflow-content {
        order: 2;
    }
    
    .workflow-image {
        order: 3;
        max-width: 100%;
    }
}

/* Pricing section */
.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: var(--background-lighter);
    border-radius: var(--radius-md);
    overflow: hidden;
    width: 320px;
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
}

.pricing-card.featured {
    transform: scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 10px 30px var(--glow);
    position: relative;
    overflow: hidden;
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(9, 197, 163, 0.3) 0%, rgba(9, 197, 163, 0.1) 40%, rgba(9, 197, 163, 0) 70%);
    border-radius: 50%;
    opacity: 0.7;
    filter: blur(30px);
    animation: pulse 4s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.pricing-card.featured:hover {
    transform: scale(1.08);
}

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

.pricing-header {
    padding: 30px;
    text-align: center;
    background: linear-gradient(135deg, rgba(9, 197, 163, 0.1), rgba(9, 197, 163, 0.05));
    border-bottom: 1px solid var(--border);
}

.pricing-card.featured .pricing-header {
    background: linear-gradient(135deg, rgba(9, 197, 163, 0.3), rgba(9, 197, 163, 0.1));
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.pricing-header .price {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
}

.pricing-header p {
    color: var(--text-secondary);
}

.pricing-features {
    padding: 30px;
}

.pricing-features ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}

.pricing-features ul li svg {
    flex-shrink: 0;
}

.pricing-features ul li.disabled {
    color: var(--text-tertiary);
    opacity: 0.7;
}

.pricing-card .btn-primary,
.pricing-card .btn-secondary {
    display: block;
    text-align: center;
    margin: 0 30px 30px;
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    color: var(--text-tertiary);
}

.tag {
    position: absolute;
    top: 0;
    right: 20px;
    background: var(--primary);
    color: white;
    font-size: 14px;
    padding: 5px 15px;
    border-radius: 0 0 8px 8px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        width: 100%;
        max-width: 320px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

/* CTA section */
.cta {
    text-align: center;
    background: linear-gradient(135deg, var(--background-darker), var(--background));
    padding: 100px 0;
}

.cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta p {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta .cta-buttons {
    justify-content: center;
}

@media (max-width: 768px) {
    .cta h2 {
        font-size: 32px;
    }
    
    .cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Footer styles */
footer {
    background-color: var(--background-darker);
    padding: 70px 0 30px;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

footer .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

footer .logo h2 {
    font-size: 18px;
    font-weight: 500;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
}

.footer-nav {
    display: flex;
    gap: 80px;
}

.footer-links h3 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--text);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--text-tertiary);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--text-tertiary);
}

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

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

.social-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-nav {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-nav {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}