/* Base styles and reset */
:root {
    --primary-color: #3b82f6;
    --secondary-color: #2563eb;
    --accent-color: #60a5fa;
    --light-color: #f8f9fa;
    --dark-color: #0a0c10;
    --darker-color: #060708;
    --gray-color: #9ca3af;
    --light-gray-color: #d1d5db;
    --success-color: #4BB543;
    --warning-color: #F0C419;
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    --transition: all 0.3s ease;
    --font-sans: 'SF Pro Display', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    font-weight: 400;
    color: var(--light-color);
    background-color: var(--dark-color);
    letter-spacing: -0.015em;
}

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

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

ul {
    list-style: none;
}

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

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--light-color);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

section {
    padding: 120px 0;
    /* background-color: var(--dark-color); */
    background: radial-gradient(ellipse at center, hsl(220, 15%, 12%) 0%, var(--darker-color) 75%);
    position: relative;
}

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

/* Header and Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding: 6px 20px;
	margin-top: 10px;
	border: 1px solid #2d2d2d87;
    border-radius: 20px;
    background-color: rgba(6, 7, 8, 0.8);
    backdrop-filter: blur(8px);
}

.logo {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--light-color);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo {
    height: 28px;
    width: auto;
    vertical-align: middle;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
	margin-right: -10px;
}

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

.nav-links li a:hover {
    color: var(--light-color);
    opacity: 1;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--light-color);
    margin: 3px 0;
    border-radius: 3px;
    transition: var(--transition);
}

/* Button styles */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
    letter-spacing: -0.01em;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.30);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(0px) scale(1.03);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.30);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.btn-outline {
    background-color: transparent;
    color: var(--light-color);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px) scale(1.03);
}

.btn-download {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 15px 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-download:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.btn-download i {
    font-size: 1.8rem;
}

.btn-download-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-download-text span {
    font-size: 0.8rem;
}

.btn-download-text strong {
    font-size: 1.1rem;
}

/* Hero section */
.hero {
    padding-top: 180px;
    padding-bottom: 140px;
   /* background: linear-gradient(135deg, #060708 0%, #0f1116 100%); */
    overflow: hidden;
    position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px; /* how tall the fade is */
  /* background: linear-gradient(to bottom, rgba(15,17,22,0) 0%, #0f1116 100%); */
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--light-color);
    letter-spacing: -0.04em;
}

.hero p {
    font-size: 1.4rem;
    color: var(--gray-color);
    margin-bottom: 40px;
    max-width: 650px;
    line-height: 1.5;
    font-weight: 400;
}

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

.image-container {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    perspective: 1000px;
    transform-style: preserve-3d;
    transform: rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
    border-radius: 12px;
    overflow: hidden;
}

.image-container:hover {
    transform: rotateY(-3deg) rotateX(1deg) scale(1.02);
}

.mockup {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Desktop app mockup styles */
.device-mockup {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    perspective: 1000px;
    transform-style: preserve-3d;
    transform: rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.device-mockup:hover {
    transform: rotateY(-3deg) rotateX(1deg) scale(1.02);
}

.device-frame {
    position: relative;
    width: 100%;
    background: #1e1e1e;
    border-radius: 8px;
    padding: 6px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.device-screen {
    background: #0a0c10;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    height: 0;
    padding-bottom: 62.5%; /* 16:10 aspect ratio */
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.8);
}

.device-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: #252525;
    display: flex;
    align-items: center;
    padding: 0 10px;
    z-index: 10;
}

.window-controls {
    display: flex;
    gap: 8px;
}

.window-control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control-close {
    background: #ff5f56;
}

.control-minimize {
    background: #ffbd2e;
}

.control-maximize {
    background: #27c93f;
}

.device-shadow {
    position: absolute;
    bottom: -20px;
    left: 5%;
    right: 5%;
    height: 20px;
    background: rgba(0, 0, 0, 0.2);
    filter: blur(20px);
    border-radius: 50%;
    z-index: -1;
    width: 90%;
}

/* App interface */
.app-interface {
    position: absolute;
    top: 30px; /* Account for window header */
    left: 0;
    width: 100%;
    height: calc(100% - 30px);
    display: flex;
}

.app-sidebar {
    width: 220px;
    background: rgba(26, 26, 26, 0.9);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    display: flex;
    flex-direction: column;
}

.app-logo {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
    padding: 0 20px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 20px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0 10px;
}

.nav-item {
    padding: 10px;
    border-radius: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-item.active {
    background: rgba(59, 130, 246, 0.2);
    color: var(--primary-color);
}

.nav-item i {
    font-size: 14px;
    opacity: 0.8;
    width: 20px;
}

.app-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.app-toolbar {
    height: 50px;
    background: rgba(30, 30, 30, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 15px;
}

.toolbar-button {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

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

.app-content {
    flex: 1;
    padding: 20px;
    display: flex;
    gap: 20px;
    background: rgba(15, 15, 15, 0.9);
}

.content-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.track-visual {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: rgba(26, 26, 26, 0.7);
    border-radius: 8px;
    padding: 20px;
    height: 350px;
}

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

.visual-title {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.album-art {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 30px;
    position: relative;
    overflow: hidden;
}

.album-art::after {
    content: 'Drop Image Here';
    position: absolute;
    font-size: 14px;
    font-weight: 500;
}

.waveform {
    height: 80px;
    display: flex;
    align-items: flex-end;
    gap: 3px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    padding: 10px;
}

.wave-bar {
    flex: 1;
    background: var(--primary-color);
    border-radius: 3px;
    opacity: 0.7;
    height: 30%;
    animation: wave 2s ease-in-out infinite;
}

.wave-bar:nth-child(odd) {
    height: 60%;
    animation-delay: 0.5s;
}

.wave-bar:nth-child(3n) {
    height: 80%;
    animation-delay: 0.3s;
}

.wave-bar:nth-child(5n) {
    height: 40%;
    animation-delay: 0.7s;
}

@keyframes wave {
    0%, 100% {
        height: var(--height, 30%);
    }
    50% {
        height: calc(var(--height, 30%) + 20%);
    }
}

.content-sidebar {
    width: 260px;
    background: rgba(26, 26, 26, 0.7);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.track-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1px;
    overflow-y: auto;
}

.track-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    background: transparent;
    font-size: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: background 0.2s ease;
}

.track-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.track-item.active {
    background: rgba(59, 130, 246, 0.1);
    border-left: 3px solid var(--primary-color);
    padding-left: 12px;
}

.track-name {
    color: var(--light-color);
}

.track-duration {
    color: var(--gray-color);
}

.app-status {
    height: 30px;
    background: rgba(20, 20, 20, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    padding: 0 15px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    justify-content: space-between;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.status-item i {
    font-size: 10px;
    color: var(--primary-color);
}

/* Features section */
/* Background already handled by nth-child selector */

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

.feature-card {
    background-color: var(--dark-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
	display: grid;
	text-align: center;
	place-items: center;
}

.feature-card:hover {
    transform: translateY(-10px);
}

/* Icon styles */
.feature-icon {
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 2.0rem;
    color: var(--primary-color);
    background: rgba(59, 130, 246, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20%;
    margin-bottom: 5px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1);
    background: rgba(59, 130, 246, 0.2);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.feature-card p {
    color: var(--light-gray-color);
    font-size: 0.95rem;
}

/* How it works section */
/* Background already handled by nth-child selector */

.steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 30px;
    background-color: var(--darker-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 600;
    border-radius: 50%;
    margin: 0 auto 25px;
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.4);
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.step p {
    color: var(--light-gray-color);
    font-size: 0.95rem;
}

/* Pricing section */
/* Background already handled by nth-child selector */

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    flex: 1;
    width: 100%;
    max-width: 350px;
    min-width: 280px;
    background-color: var(--dark-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

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

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

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

.pricing-header {
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    letter-spacing: -0.03em;
}

.price-subtitle {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.pricing-features {
    padding: 30px;
}

.pricing-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li i {
    color: var(--primary-color);
}

.pricing-card .btn {
    margin: 0 30px 30px;
    display: block;
}

/* Testimonials section */
/* Background already handled by nth-child selector */

.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.testimonial {
    flex: 0 0 350px;
    background-color: var(--darker-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1) !important;
    scroll-snap-align: start;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quote {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--light-color);
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info p {
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* FAQ section */
/* Background already handled by nth-child selector */

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

.faq-item {
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
}

.faq-question {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
	border-radius: 12px;
}

.faq-item.active .faq-question {
  border-radius: 12px 12px 0 0;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    transition: var(--transition);
}

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

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Download section */
.download {
    /* background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); */
    color: #ffffff;
}

.download .section-title,
.download .section-subtitle {
    color: #ffffff;
}

.download-content-box {
    /* Inherits glass-effect from blobs.css if class is added in HTML */
    padding: 50px;
    border-radius: var(--border-radius);
    text-align: center;
    /* Add a subtle top accent if not using glass-effect border, 
       or to complement it. Glass effect already provides a border. */
    /* border-top: 3px solid var(--primary-color); */ 
    /* Ensure blobs within this section are behind this box if they overlap */
    position: relative; 
    z-index: 1;
}

/* If .glass-effect is not directly on .download-content-box, 
   but on a parent, you might need to re-apply some properties or ensure specificity. 
   However, we plan to add .glass-effect class directly to it in HTML. */

.download-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.purchase-pro {
    text-align: center;
    margin-top: 40px;
}

.purchase-pro .btn-primary {
    background-color: #ffffff;
    color: var(--primary-color);
}

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

/* Footer */
footer {
    background-color: var(--dark-color);
    color: #ffffff;
    padding: 30px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    text-align: center;
    min-width: 250px;
}

.footer-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
}

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

.footer-column {
    min-width: 120px;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.footer-column ul li a {
    color: #a0a0a0;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: #ffffff;
}

/* Responsive styles */
@media (max-width: 991px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .steps {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: rgba(6, 7, 8, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: var(--transition);
        z-index: 999;
		border: 1px solid #2d2d2d87;
		border-radius: 20px;
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .hamburger {
        display: flex;
    }
    
    .pricing-card.featured {
        transform: scale(1);
        order: -1;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        width: 90%;
        max-width: 350px;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    section {
        padding: 80px 0;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.9rem;
		justify-content: center;
    }
    
    .download-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .pricing-card {
        width: 100%;
    }
    
    .pricing-card .btn {
        padding: 10px 15px;
        font-size: 0.85rem;
		width: 82%;
    }
    
    .feature-card, .step, .pricing-card, .testimonial {
        margin-bottom: 20px;
    }
    
    /* Ensure device mockup displays well on small screens */
    .device-mockup {
        transform: none;
        margin-top: 30px;
    }
}

/* Apple-like section header styling */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.overline {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-color);
    max-width: 650px;
    margin: 15px auto 0;
    font-weight: 400;
}

.section-header.inverted .overline,
.section-header.inverted .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* Button icon */
.btn-icon {
    margin-left: 8px;
    font-size: 0.85em;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(3px);
}

/* Subtle hover animations */
.feature-card, .pricing-card, .step, .testimonial {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover, .pricing-card:hover, .step:hover, .testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.star {
    max-width: 11%;
    height: auto;
    margin-bottom: 10px;
}

@media (max-width: 576px) {
	
.star {
    max-width: 10%;
    height: auto;
    margin-bottom: 0px;
}	

}