:root {
    --primary: #10b981;
    --dark: #121212;
    --darker: #0a0a0a;
    --gray: #1f1f1f;
    --light-gray: #2d2d2d;
    --light: #f5f5f5;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--darker);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 1.2rem 0;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.header-scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

/* Logo styles */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--light);
    text-decoration: none;
}

.logo img {
    height: 90px;
    transition: var(--transition);
    margin-left: -17px;
}

/* Hamburger menu */
.hamburger {
    display: none;

    /* default hidden on large screens */
    position: absolute;
    top: 2 rem;
    right: 0.5rem;
    cursor: pointer;
    z-index: 1001;
}

.hamburger div {
    width: 30px;
    height: 3px;
    background-color: var(--light);
    margin: 6px 0;
    transition: var(--transition);
    border-radius: 2px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--light);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
    font-size: 1.1rem;
}

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

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: var(--transition);
    border-radius: 10px;
}

nav a:hover::after {
    width: 100%;
}

.btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.9rem 2.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary);
    cursor: pointer;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.btn:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

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

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

.btn-app {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #3b3b3b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    transition: var(--transition);
}

.btn-app:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    background: radial-gradient(circle at 20% 30%, rgba(31, 31, 31, 0.5) 0%, rgba(10, 10, 10, 0) 50%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,0 L100,100 M100,0 L0,100" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
    opacity: 0.2;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--light);
    line-height: 1.2;
}

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

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 15px;
    background: rgba(16, 185, 129, 0.2);
    z-index: -1;
}

.hero p {
    font-size: 1.4rem;
    color: #a3a3a3;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    margin-top: 2rem;
    justify-content: center;
}

/* Rotating Animation Section */
.rotating-animation {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #0d2d3a 0%, #0a0a0a 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.animation-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rotating-platform {
    position: relative;
    width: 300px;
    height: 300px;
    transform-style: preserve-3d;
    animation: rotatePlatform 30s infinite linear;
}

.rotating-item {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(16, 185, 129, 0.3);
    transform-origin: center;
    background: rgba(31, 31, 31, 0.8);
    transition: transform 0.5s ease;
}

.rotating-item img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

.rotating-item h3 {
    color: var(--light);
    font-size: 1.8rem;
    text-align: center;
    padding: 0 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.rotating-item:nth-child(1) {
    transform: rotateY(0deg) translateZ(300px);
}

.rotating-item:nth-child(2) {
    transform: rotateY(90deg) translateZ(300px);
}

.rotating-item:nth-child(3) {
    transform: rotateY(180deg) translateZ(300px);
}

.rotating-item:nth-child(4) {
    transform: rotateY(270deg) translateZ(300px);
}

.rotating-center {
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.8rem;
    box-shadow: 0 0 50px rgba(16, 185, 129, 0.5);
    z-index: 10;
    animation: pulse 3s infinite;
}

/* Features Section */
.section {
    padding: 8rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title h2 {
    font-size: 2.8rem;
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--primary);
    border-radius: 2px;
}

.section-title p {
    color: #a3a3a3;
    max-width: 600px;
    margin: 2rem auto 0;
    font-size: 1.15rem;
}

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

.feature-card {
    background: var(--gray);
    border-radius: 16px;
    padding: 2.8rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card.show {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 0 2px var(--primary);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem;
    font-size: 2.2rem;
    color: var(--primary);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
}

.feature-card p {
    color: #b0b0b0;
    font-size: 1.05rem;
}

/* Products Section */
.products {
    background: var(--darker);
    position: relative;
    overflow: hidden;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,0 Q50,100 100,0" stroke="rgba(16,185,129,0.05)" stroke-width="1" fill="none"/></svg>');
    opacity: 0.1;
    z-index: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.product-card {
    background: var(--gray);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 2px var(--primary);
}

.product-image {
    height: 220px;
    background: linear-gradient(135deg, #e7f3f2, #797e7d);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
}

.product-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: white;
}

.product-content p {
    color: #b0b0b0;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-rating span {
    color: #ffd700;
    font-size: 1.2rem;
}

.product-rating .rating-value {
    color: #d1d1d1;
    font-weight: 600;
}

/* Stats Section */
.stats {
    background: var(--darker);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="5" fill="rgba(16,185,129,0.1)"/></svg>');
    opacity: 0.2;
    z-index: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
    margin-top: 3rem;
}

.stat-item {
    padding: 2.5rem;
    background: rgba(31, 31, 31, 0.5);
    border-radius: 16px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-color: var(--primary);
}

.stat-item h3 {
    font-size: 3.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-weight: 800;
    text-align: center;
}

.stat-item p {
    font-size: 1.3rem;
    opacity: 0.9;
    color: #d1d1d1;
    text-align: center;
}

/* Clients Section */
.clients {
    background: var(--darker);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.clients::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.2;
    z-index: 0;
}

.clients-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.clients-title {
    text-align: center;
    margin-bottom: 3rem;
}

.clients-title h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.clients-title p {
    color: #a3a3a3;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.15rem;
}

.clients-track {
    display: flex;
    animation: scroll 35s linear infinite;
    width: calc(250px * 10 * 2);
    text-align: center;
}

.client-logo {
    height: 120px;
    width: 200px;
    margin: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    transition: var(--transition);
    filter: grayscale(100%);
}

.client-logo:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    filter: grayscale(0);
    background: rgba(16, 185, 129, 0.1);
}

.client-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

/* Contact */
.contact {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, rgba(10, 10, 10, 0) 70%);
    z-index: 0;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.contact-info {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 1s ease;
}

.contact-info.show {
    opacity: 1;
    transform: translateX(0);
}

.contact-info h2 {
    font-size: 2.8rem;
    margin-bottom: 1.8rem;
}

.contact-info p {
    margin-bottom: 2.5rem;
    color: #a3a3a3;
    font-size: 1.1rem;
    max-width: 500px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    margin-bottom: 2.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
    flex-shrink: 0;
}

.contact-method:hover .contact-icon {
    background: var(--primary);
    color: white;
    transform: rotate(-5deg);
}

.contact-text h4 {
    margin-bottom: 0.3rem;
    font-size: 1.3rem;
}

.contact-text p {
    color: #b0b0b0;
    margin: 0;
    font-size: 1.05rem;
}

.contact-form {
    background: var(--gray);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateX(30px);
    transition: all 1s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form.show {
    opacity: 1;
    transform: translateX(0);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: #d1d1d1;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-family: inherit;
    transition: var(--transition);
    background: rgba(10, 10, 10, 0.3);
    color: white;
    font-size: 1.05rem;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
    background: rgba(10, 10, 10, 0.5);
}

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

/* Footer */
footer {
    background: var(--darker);
    color: white;
    padding: 5rem 0 2rem;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3.5rem;
    margin-bottom: 4rem;
}

.footer-col h3 {
    position: relative;
    margin-bottom: 1.8rem;
    padding-bottom: 0.8rem;
    font-size: 1.5rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
}

.footer-col p {
    color: #a3a3a3;
    margin-bottom: 1.8rem;
    max-width: 350px;
}

.social-links {
    display: flex;
    gap: 1.2rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #a3a3a3;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.05rem;
}

.footer-links a:hover {
    color: var(--primary);
    gap: 1.2rem;
}

.footer-links a i {
    font-size: 0.9rem;
    color: var(--primary);
}

.copyright {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #7a7a7a;
    font-size: 1rem;
}

.slider-container {
    overflow: hidden;
    padding: 20px 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(16, 185, 129, 0);
        transform: scale(1.05);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
        transform: scale(1);
    }
}

@keyframes rotatePlatform {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ----------------------------------------------
   General adjustments for screens under 1200px
----------------------------------------------- */
@media (max-width: 1200px) {
    .container {
        width: 95%;
    }
}

/* ----------------------------------------------
   Tablet screens (max-width: 992px)
----------------------------------------------- */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .section-title h2 {
        font-size: 2.4rem;
    }

    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 50%;
        max-width: 300px;
        background: var(--darker);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 2rem;
        gap: 2rem;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    }

    nav ul.active {
        right: 0;
    }

    nav ul li {
        width: 100%;
    }

    nav ul li a {
        display: block;
        width: 100%;
        padding: 1rem 0;
        font-size: 1.3rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hamburger {
        display: block;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .rotating-animation {
        height: 350px;
    }

    .rotating-platform {
        width: 200px;
        height: 200px;
    }

    .rotating-item img {
        width: 150px;
        height: 150px;
    }

    .rotating-center {
        width: 100px;
        height: 100px;
        font-size: 1.2rem;
    }
}

/* ----------------------------------------------
   Large mobile screens (max-width: 768px)
----------------------------------------------- */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.4rem;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 1px;
        font-weight: 700;
        font-size: 1.5rem;
        color: var(--light);
        text-decoration: none;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section {
        padding: 5rem 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .clients-title h2 {
        font-size: 2rem;
    }

    .rotating-animation {
        height: 300px;
    }

    .rotating-platform {
        width: 150px;
        height: 150px;
    }

    .rotating-item img {
        width: 120px;
        height: 120px;
    }

    .rotating-center {
        width: 80px;
        height: 80px;
        font-size: 1rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}

/* ----------------------------------------------
   Small mobile screens (max-width: 480px)
----------------------------------------------- */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn,
    .btn-request,
    .btn-website {
        width: 100%;
        padding: 1rem 0;
        font-size: 1rem;
    }

    .app-buttons a img {
        height: 50px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .clients-track {
        flex-wrap: wrap;
        gap: 1rem;
        animation: scroll 20s linear infinite;
        width: calc(250px * 5 * 2);
        text-align: center;
    }

    .client-logo {
        width: 8%;
        height: 100px;
        margin: 10px auto;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Google Play Button */
.btn-google-play {
    display: inline-block;
    border-radius: 8px;
    transition: var(--transition);
    margin-top: 10px;
}

.btn-google-play:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Request Button */
.btn-request {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: white;
    padding: 0.9rem 1.8rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.btn-request:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    background-color: #128c7e;
}

/* WhatStream Price Styling */
.product-price {
    margin: 1.2rem 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-amount {
    font-size: 2rem;
}

.price-period {
    font-size: 1rem;
    color: #b0b0b0;
    font-weight: 500;
}

/* Software Development Icon */
.feature-card:nth-child(5) .feature-icon {
    background: rgba(16, 185, 129, 0.1);
}

.feature-card:nth-child(5):hover .feature-icon {
    background: var(--primary);
}

.btn-apple-store:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.btn-website {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #3b3b3b;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    justify-content: center;
    margin-bottom: 15px;
}

.website-button-container {
    text-align: center;
    margin-top: 30px;
}

.btn-website:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
    border-color: var(--primary);
}

@media (max-width: 768px) {
    .app-buttons {
        flex-direction: column;
    }

    .btn-google-play,
    .btn-apple-store {
        width: 40%;
        text-align: center;
    }

    .btn-google-play img,
    .btn-apple-store img {
        display: block;
        height: 60px;

        /* same as Google Play badge */
        width: auto;
    }
}

.bottom-button {
    margin-top: auto;
}

.bottom-button a {
    display: block;
    text-align: center;
}

.product-card {
    display: flex;
    flex-direction: column;
}

.app-buttons {
    display: flex;
    gap: 10px;

    /* space between badges */
    justify-content: center;
    flex-wrap: wrap;
}

.app-buttons a img {
    height: 60px;

    /* match Google Play badge height */
    width: auto;
    display: block;
}

.btn-apple-store {
    display: inline-block;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    opacity: 0.7;
    cursor: not-allowed;
    transition: var(--transition);
    padding-top: 10px;
}

.btn-apple-store::after {
    content: 'Coming Soon';
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);

    /* perfect centering */
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    text-align: center;
    padding: 0 5px;
}