/* Fonts */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Neuropol X Font */

@font-face {
    font-family: 'Neuropol X';
    src: url('https://db.onlinewebfonts.com/t/51ba3d490fdd1e46533e25ec9a004f14.eot');
    src: url('https://db.onlinewebfonts.com/t/51ba3d490fdd1e46533e25ec9a004f14.eot?#iefix') format('embedded-opentype'), url('https://db.onlinewebfonts.com/t/51ba3d490fdd1e46533e25ec9a004f14.woff2') format('woff2'), url('https://db.onlinewebfonts.com/t/51ba3d490fdd1e46533e25ec9a004f14.woff') format('woff'), url('https://db.onlinewebfonts.com/t/51ba3d490fdd1e46533e25ec9a004f14.ttf') format('truetype'), url('https://db.onlinewebfonts.com/t/51ba3d490fdd1e46533e25ec9a004f14.svg#Neuropol X') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/* Font fallback for Neuropol X */

.logo-text,
.wondermove-title,
.footer .logo-text {
    font-family: 'Neuropol X', 'Arial Black', sans-serif !important;
    font-weight: 800;
}

 :root {
    --primary: #007aff;
    --primary-dark: #0056b3;
    --secondary: #5856d6;
    --accent: #ff2d55;
    --light: #f5f7fa;
    --dark: #1c1c1e;
    --gray: #8e8e93;
    --light-gray: #e5e5ea;
    --success: #34c759;
    --warning: #ff9500;
    --danger: #ff3b30;
    --section-padding: 40px;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --card-radius: 18px;
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: #fafafa;
    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='%23007aff' 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");
    position: relative;
}


/* Typography */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.2;
}

h1 {
    font-size: 2.8rem;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 4px rgba(137, 128, 128, 0.7)
}

h2 {
    font-size: 2rem;
    margin-bottom: 24px;
}

h3 {
    font-size: 1.3rem;
    line-height: 1.4;
}

p {
    margin-bottom: 16px;
    font-size: 1rem;
}

.text-center {
    text-align: center;
}

.subtitle {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}


/* Layout */

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1200px;
    overflow-x: hidden;
    box-sizing: border-box;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    width: 100%;
    box-sizing: border-box;
}

.col {
    padding: 0 15px;
    flex: 1;
    box-sizing: border-box;
}

.section {
    padding: var(--section-padding);
    width: 100%;
    overflow-x: hidden;
    max-width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 32px;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}


/* Header & Navigation */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 800;
    font-family: 'Neuropol x', sans-serif;
    letter-spacing: 1px;
    color: var(--dark);
    margin-left: 10px;
}

.logo-text span {
    font-weight: 400;
    color: var(--primary);
}


/* .logo-icon {
font-size: 30px;
color: var(--primary);
margin-right: 10px;
display: inline-block;
width: 40px;
height: 40px;
line-height: 40px;
text-align: center;
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
border-radius: 8px;
color: white;
} */

.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-item {
    margin: 0 15px;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 122, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 122, 255, 0.4);
}

.btn-secondary {
    background-color: white;
    color: var(--primary);
    border: 1px solid var(--primary);
    box-shadow: none;
}

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

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%, -50%);
    transform-origin: 50% 50%;
}

.btn:hover::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0) translate(-50%, -50%);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20) translate(-50%, -50%);
        opacity: 0;
    }
}


/* Hero Section */

.hero {
    padding: 180px 0 100px;
    position: relative;
    background-color: rgba(247, 250, 255, 0.8);
    width: 100%;
    overflow-x: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66L28 100' fill='none' stroke='%23ffffff' stroke-opacity='0.3' stroke-width='1'/%3E%3Cpath d='M28 0L28 34L0 50L0 84L28 100L56 84L56 50L28 34' fill='none' stroke='%23ffffff' stroke-opacity='0.3' stroke-width='1'/%3E%3C/svg%3E");
    z-index: 1;
    pointer-events: none;
    opacity: 0.3;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.3) 0%, rgba(0, 82, 173, 0.2) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    align-items: center;
    overflow: hidden;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    opacity: 0.9;
    border-radius: 20px;
}

.hero-content {
    z-index: 3;
    position: relative;
    padding: 40px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    /* backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
background-color: rgba(0, 0, 0, 0.2);
border-radius: 20px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
border: 1px solid rgba(255, 255, 255, 0.1); */
    animation: fadeIn 1s ease-out, slideUp 1s ease-out;
}

.hero-title {
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    background: linear-gradient(90deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #ffffff;
    text-align: left;
}

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

.hero-image {
    position: absolute;
    right: -10%;
    top: 20%;
    width: 55%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 130px 0 70px;
        text-align: center;
    }
    .hero-content {
        max-width: 100%;
        padding: 20px;
    }
    .hero-video {
        border-radius: 10px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 110px 0 50px;
    }
    .hero-video-container {
        margin: 0;
    }
    .hero-content {
        padding: 25px;
        margin: 0 15px;
        width: calc(100% - 30px);
    }
    .hero-video {
        border-radius: 0;
    }
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
        width: 100%;
    }
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    h1 {
        font-size: 1rem;
        word-wrap: break-word;
    }
    h2 {
        font-size: 1.2rem;
        word-wrap: break-word;
    }
    .hero-title {
        font-size: 1.5rem;
    }
}


/* Features Section */

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(100px, auto);
    gap: 20px;
    margin-top: 50px;
    width: 100%;
}

.card {
    background-color: white;
    border-radius: var(--card-radius);
    padding: 30px;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}


/* .card:hover {
transform: translateY(-8px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
} */

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 24px;
}

.card-big {
    grid-column: span 6;
    grid-row: span 2;
    padding: 40px;
}

.card-medium {
    grid-column: span 4;
    grid-row: span 2;
}

.card-small {
    grid-column: span 3;
    grid-row: span 1;
}


/* Why Wondermove Section */

.why-wondermove {
    background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
    position: relative;
}

.why-wondermove::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23007aff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 0;
    pointer-events: none;
}


/* Problems Section */

.problems {
    position: relative;
    margin-top: 100px;
    margin-bottom: 50px;
}

.problems-pattern {
    position: absolute;
    right: -5%;
    bottom: -5%;
    width: 40%;
    height: 40%;
    opacity: 0.05;
    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='%23000000' fill-opacity='0.4'%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");
}

.problems-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
    width: 100%;
}

.problem-item {
    background-color: var(--light);
    padding: 25px;
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s;
    animation: scaleIn 0.5s ease-out;
}

.problem-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.problem-item:hover .problem-icon {
    transform: scale(1.1);
    background-color: rgba(0, 113, 227, 0.2);
    box-shadow: 0 8px 16px rgba(0, 113, 227, 0.15);
}

.problem-icon {
    font-size: 24px;
    color: var(--primary);
    margin-top: 3px;
    animation: pulse 3s infinite;
}

.problem-text {
    font-size: 18px;
    color: var(--dark);
    margin: 0;
}


/* Features Section */

.features {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23007aff' fill-opacity='0.1' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='1.5'/%3E%3Ccircle cx='13' cy='13' r='1.5'/%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
    pointer-events: none;
}

.feature-card {
    background-color: white;
    border-radius: var(--card-radius);
    padding: 30px;
    box-shadow: var(--card-shadow);
    height: 100%;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.5s ease-out;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 122, 255, 0.05) 0%, rgba(0, 122, 255, 0) 70%);
    transform: scale(0.5);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
    pointer-events: none;
}

.feature-card:hover::before {
    transform: scale(1);
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background-color: rgba(0, 113, 227, 0.2);
    box-shadow: 0 8px 16px rgba(0, 113, 227, 0.15);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary);
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background-color: rgba(0, 113, 227, 0.1);
    border-radius: 20px;
    animation: pulse 3s infinite;
}

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

.feature-card p {
    font-size: 0.9rem;
}


/* Transformation Section */

.transformation {
    background-color: white;
}

.transformation-table {
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
    gap: 20px;
}

.transformation-item {
    flex: 0 0 calc(50% - 10px);
    display: flex;
    margin-bottom: 30px;
}

.transformation-before,
.transformation-after {
    flex: 1;
    padding: 25px;
    border-radius: var(--card-radius);
}

.transformation-before {
    background-color: #f8f9fa;
    position: relative;
}

.transformation-after {
    background-color: #e6f7ff;
    position: relative;
}

.transformation-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--primary);
    padding: 0 20px;
}


/* Advanced Tools Section */

.advanced-tools {
    background: linear-gradient(135deg, #f5f7fa 0%, #ebf2fc 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.advanced-tools::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 304 304' width='304' height='304'%3E%3Cpath fill='%23007aff' fill-opacity='0.05' d='M44.1 224a5 5 0 1 1 0 2H0v-2h44.1zm160 48a5 5 0 1 1 0 2H82v-2h122.1zm57.8-46a5 5 0 1 1 0-2H304v2h-42.1zm0 16a5 5 0 1 1 0-2H304v2h-42.1zm6.2-114a5 5 0 1 1 0 2h-86.2a5 5 0 1 1 0-2h86.2zm-256-48a5 5 0 1 1 0 2H0v-2h12.1zm185.8 34a5 5 0 1 1 0-2h86.2a5 5 0 1 1 0 2h-86.2zM258 12.1a5 5 0 1 1-2 0V0h2v12.1zm-64 208a5 5 0 1 1-2 0v-54.2a5 5 0 1 1 2 0v54.2zm48-198.2V80h62v2h-64V21.9a5 5 0 1 1 2 0zm16 16V64h46v2h-48V37.9a5 5 0 1 1 2 0zm-128 96V208h16v12.1a5 5 0 1 1-2 0V210h-16v-76.1a5 5 0 1 1 2 0zm-5.9-21.9a5 5 0 1 1 0 2H114v48H85.9a5 5 0 1 1 0-2H112v-48h12.1zm-6.2 130a5 5 0 1 1 0-2H176v-74.1a5 5 0 1 1 2 0V242h-60.1zm-16-64a5 5 0 1 1 0-2H114v48h10.1a5 5 0 1 1 0 2H112v-48h-10.1zM66 284.1a5 5 0 1 1-2 0V274H50v30h-2v-32h18v12.1zM236.1 176a5 5 0 1 1 0 2H226v94h48v32h-2v-30h-48v-98h12.1zm25.8-30a5 5 0 1 1 0-2H274v44.1a5 5 0 1 1-2 0V146h-10.1zm-64 96a5 5 0 1 1 0-2H208v-80h16v-14h-42.1a5 5 0 1 1 0-2H226v18h-16v80h-12.1zm86.2-210a5 5 0 1 1 0 2H272V0h2v32h10.1zM98 101.9V146H53.9a5 5 0 1 1 0-2H96v-42.1a5 5 0 1 1 2 0zM53.9 34a5 5 0 1 1 0-2H80V0h2v34H53.9zm60.1 3.9V66H82v64H69.9a5 5 0 1 1 0-2H80V64h32V37.9a5 5 0 1 1 2 0zM101.9 82a5 5 0 1 1 0-2H128V37.9a5 5 0 1 1 2 0V82h-28.1zm16-64a5 5 0 1 1 0-2H146v44.1a5 5 0 1 1-2 0V18h-26.1z'/%3E%3C/svg%3E");
    z-index: 0;
    pointer-events: none;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 60px;
    margin-bottom: 60px;
    z-index: 1;
    width: 100%;
}

.tool-card {
    background-color: white;
    border-radius: var(--card-radius);
    padding: 35px;
    box-shadow: var(--card-shadow);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.5s ease-out;
}

.tool-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tool-card::before {
    display: none;
}

.tool-card::after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
    transition: all 0.3s;
}

.tool-icon {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background-color: rgba(0, 113, 227, 0.1);
    border-radius: 20px;
    animation: pulse 3s infinite;
}

.tool-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.tool-card p {
    font-size: 0.9rem;
}


/* Mobile App Section */

.mobile-app {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.mobile-app-row {
    align-items: center;
}

.mobile-app-content {
    flex: 0 0 55%;
    padding-right: 40px;
}

.mobile-image-column {
    flex: 0 0 45%;
    position: relative;
}

.mobile-image-container {
    position: relative;
    text-align: center;
    margin-top: -50px;
    perspective: 1000px;
}

.mobile-mockup {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    transform: rotateY(-15deg) rotateX(5deg);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    transition: all 0.5s ease;
    animation: floatAnimation 6s ease-in-out infinite;
}

.mobile-mockup:hover {
    transform: rotateY(-5deg) rotateX(2deg) scale(1.02);
}

.mobile-mockup-shadow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.mobile-mockup-glow {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 122, 255, 0.1) 0%, rgba(0, 122, 255, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 5s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.2);
        opacity: 0.1;
    }
}

.app-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.app-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.app-feature-icon {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 0;
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background-color: rgba(0, 113, 227, 0.1);
    border-radius: 20px;
    flex-shrink: 0;
    animation: pulse 3s infinite;
}

.app-feature h4 {
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 5px;
}

.app-feature p {
    font-size: 16px;
    color: var(--gray);
    margin: 0;
}

.app-store-buttons {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.app-store-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--dark);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s;
    font-weight: 500;
    font-size: 16px;
}

.app-store-button:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.app-store-button i {
    margin-right: 8px;
    font-size: 20px;
}

@media (max-width: 992px) {
    .mobile-app-row {
        flex-direction: column-reverse;
    }
    .mobile-app-content,
    .mobile-image-column {
        flex: 0 0 100%;
        padding-right: 0;
    }
    .mobile-image-container {
        height: auto;
        margin-top: 0;
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    body {
        padding: 0;
        overflow-x: hidden;
    }
    .container {
        padding: 0 15px;
        overflow-x: hidden;
    }
    .row {
        margin: 0;
        flex-direction: column;
        overflow-x: hidden;
    }
    .col {
        padding: 0 10px;
        flex: 0 0 100%;
        width: 100%;
        margin-bottom: 20px;
    }
    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }
    .mobile-app {
        padding: 60px 0;
        overflow: hidden;
    }
    .mobile-image-container {
        height: auto;
        max-height: 400px;
        overflow: hidden;
    }
    .mobile-mockup {
        transform: none;
        max-width: 80%;
        margin: 0 auto;
        display: block;
    }
    .mobile-mockup:hover {
        transform: none;
    }
    .mobile-mockup-glow {
        display: none;
    }
    .app-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .app-feature-icon {
        margin-bottom: 15px;
    }
}

.comparison {
    background: linear-gradient(180deg, var(--background) 0%, white 100%);
    overflow-x: hidden;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
    width: 100%;
}

.comparison-col {
    padding: 40px;
    border-radius: 24px;
}

.comparison-col.before {
    background: rgba(0, 0, 0, 0.03);
}

.comparison-col.after {
    background: rgba(0, 113, 227, 0.05);
}

.comparison-item {
    display: flex;
    margin-bottom: 32px;
    position: relative;
}

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


/* 
.comparison-item:hover {
transform: translateY(-8px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.comparison-item:hover .comparison-icon {
transform: scale(1.1);
background-color: rgba(0, 113, 227, 0.2);
box-shadow: 0 8px 16px rgba(0, 113, 227, 0.15);
} */

.comparison-icon {
    margin-right: 16px;
    color: var(--primary);
    font-size: 24px;
    flex-shrink: 0;
}

.comparison-text h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.comparison-text p {
    font-size: 0.9rem;
}

.comparison-col.before .comparison-icon {
    color: var(--text-light);
}


/* Transformation Bento Grid */

.transform-bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 40px;
    width: 100%;
}

.transform-card {
    background: var(--card-bg);
    border-radius: var(--card-radius);
    padding: 24px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-start;
    position: relative;
}

.transform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.transform-card.header-before {
    background: rgba(0, 0, 0, 0.03);
    padding: 16px 24px;
    grid-column: 1;
}

.transform-card.header-after {
    background: rgba(0, 113, 227, 0.05);
    padding: 16px 24px;
    grid-column: 2;
}

.transform-card.header-before h3,
.transform-card.header-after h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
    text-align: center;
    width: 100%;
}

.transform-card.header-after h3 {
    color: var(--primary);
}

.transform-card.item-before {
    background: rgba(0, 0, 0, 0.02);
    grid-column: 1;
}

.transform-card.item-after {
    background: rgba(0, 113, 227, 0.03);
    grid-column: 2;
}

.transform-icon {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-right: 16px;
    background: rgba(255, 255, 255, 0.7);
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.transform-card.item-after .transform-icon {
    color: var(--primary);
}

.transform-content {
    flex: 1;
}

.transform-content h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.transform-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}


/* Tools Bento Grid */

.tools-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    width: 100%;
}

.tool-bento-card {
    background: var(--card-bg);
    border-radius: var(--card-radius);
    padding: 24px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.tool-bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tool-bento-card.large {
    grid-column: span 2;
    grid-row: span 2;
}

.tool-bento-card.medium {
    grid-column: span 2;
}

.tool-bento-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(0, 113, 227, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
    font-size: 1.2rem;
    color: var(--primary);
}

.tool-bento-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.tool-bento-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .comparison-col {
        margin-bottom: 0;
    }
    .problems-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .transform-bento-grid {
        grid-template-columns: 1fr;
    }
    .transform-card.header-before,
    .transform-card.header-after,
    .transform-card.item-before,
    .transform-card.item-after {
        grid-column: 1;
    }
    .transform-card.header-after {
        margin-top: 16px;
    }
    .tools-bento-grid {
        grid-template-columns: 1fr;
    }
    .tool-bento-card.large,
    .tool-bento-card.medium {
        grid-column: span 1;
    }
    .problems-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


/* Features Bento Grid */

.features-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    width: 100%;
}

.feature-bento-card {
    background-color: white;
    border-radius: var(--card-radius);
    padding: 30px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-bento-card::after {
    content: "";
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 180px;
    height: 180px;
    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='%23007aff' fill-opacity='0.03'%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.5;
    z-index: 0;
    transition: all 0.3s;
}

.feature-bento-card:hover::after {
    opacity: 0.8;
}

.feature-bento-card.large {
    grid-column: span 2;
    grid-row: span 2;
    padding: 35px;
}

.feature-bento-card.medium {
    grid-column: span 2;
    padding: 35px;
}

@media (max-width: 992px) {
    .features-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .feature-bento-card.large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .features-bento-grid {
        grid-template-columns: 1fr;
    }
    .feature-bento-card.large,
    .feature-bento-card.medium {
        grid-column: span 1;
    }
}


/* Common icon styles - apply to all icon containers */

.feature-icon,
.problem-icon,

/* .comparison-icon, */

.elevate-icon,
.tool-icon,
.app-feature-icon {
    color: var(--primary);
    background-color: rgba(0, 122, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    transition: all 0.3s;
}


/* Specific icon styles */

.problem-icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
    min-width: 50px;
    margin-top: 0;
}

.card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding: 40px 20px;
    width: 100%;
    overflow-x: hidden;
}

.contact-section {
    background: white;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-header {
    position: relative;
    padding: 40px;
    background: linear-gradient(135deg, #0066FF, #00A3FF);
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    text-align: center;
}

.contact-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: white;
}

.contact-header p {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 0;
    opacity: 0.9;
}

.contact-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,0.1)' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.contact-body {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #ffffff;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.contact-body p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 30px;
    text-align: center;
    max-width: 80%;
}

.contact-buttons {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}


/* Shared button base */

.ww-btn {
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
}


/* Gradient primary button */

.btn-primary.ww-btn {
    background: linear-gradient(135deg, #0066FF, #00A3FF);
    color: white;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
}

.btn-primary.ww-btn i {
    margin-left: 8px;
}

.btn-primary.ww-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.4);
}


/* Secondary white button with border */

.btn-white.ww-btn {
    background: white;
    color: #0066FF;
    border: 2px solid #0066FF;
}

.btn-white.ww-btn:hover {
    background: linear-gradient(135deg, #0066FF, #00A3FF);
    color: white;
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
}


/* Optional outlined look */

.btn-outline-white.ww-btn {
    background: transparent;
    color: #0066FF;
    border: 2px solid #0066FF;
}

.btn-outline-white.ww-btn:hover {
    background: #0066FF;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
}

@media (max-width: 768px) {
    .contact-section {
        margin: 0 15px;
    }
    .contact-header h2 {
        font-size: 2rem;
    }
    .contact-header p,
    .contact-body p {
        font-size: 0.95rem;
    }
    .contact-body {
        padding: 30px 20px;
    }
    .contact-body p {
        max-width: 100%;
    }
    .contact-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .contact-buttons a {
        width: 100%;
        text-align: center;
    }
}


/* Enhanced Card Styling */

.card-container-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.enhanced-card {
    background-color: white;
    border-radius: var(--card-radius);
    padding: 40px;
    position: relative;
    flex: 1;
    min-width: 300px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    animation: scaleIn 0.5s ease-out;
}

.enhanced-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.dot-pattern {
    position: absolute;
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
    background-image: radial-gradient(var(--primary) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.dot-pattern-alt {
    position: absolute;
    width: 180px;
    height: 180px;
    top: 40px;
    right: -30px;
    background-image: radial-gradient(var(--secondary) 1.5px, transparent 1.5px);
    background-size: 15px 15px;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.dot-pattern-grid {
    position: absolute;
    width: 200px;
    height: 200px;
    top: -20px;
    right: -50px;
    background-image: linear-gradient(var(--primary) 1px, transparent 1px), linear-gradient(90deg, var(--primary) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.07;
    z-index: 0;
    pointer-events: none;
}

.blob-bg {
    position: absolute;
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -150px;
    background: radial-gradient(circle, rgba(0, 122, 255, 0.1) 0%, rgba(0, 122, 255, 0) 70%);
    border-radius: 50%;
    opacity: 0.7;
    z-index: 0;
    pointer-events: none;
}

.blob-bg-alt {
    position: absolute;
    width: 250px;
    height: 250px;
    bottom: -100px;
    left: -50px;
    background: radial-gradient(circle, rgba(88, 86, 214, 0.1) 0%, rgba(88, 86, 214, 0) 70%);
    border-radius: 50%;
    opacity: 0.7;
    z-index: 0;
    pointer-events: none;
}

.blob-bg-accent {
    position: absolute;
    width: 200px;
    height: 200px;
    bottom: -80px;
    left: 30px;
    background: radial-gradient(circle, rgba(255, 45, 85, 0.05) 0%, rgba(255, 45, 85, 0) 70%);
    border-radius: 50%;
    opacity: 0.7;
    z-index: 0;
    pointer-events: none;
}


/* .wave-pattern {
    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 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23007aff' fill-opacity='0.03'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    z-index: 0;
    pointer-events: none;
} */

.card-content {
    position: relative;
    z-index: 1;
}

.card-heading {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--primary);
    line-height: 1.3;
}

.card-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.card-highlight {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin: 25px 0 15px;
}

.card-footer {
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 10px;
}

@media (max-width: 992px) {
    .card-container-row {
        flex-direction: column;
    }
    .enhanced-card {
        width: 100%;
    }
}


/* Built to Elevate Section */

.built-to-elevate {
    background: linear-gradient(135deg, #f8f9fa 0%, #ebf2fc 100%);
    text-align: center;
    position: relative;
    padding: var(--section-padding);
    width: 100%;
    overflow-x: hidden;
}

.elevate-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    width: 100%;
}

.elevate-feature {
    flex: 0 0 calc(33.333% - 20px);
    background-color: white;
    padding: 40px 30px;
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    text-align: center;
    transition: all 0.3s;
    animation: scaleIn 0.5s ease-out;
}

.elevate-feature:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.elevate-feature:hover .elevate-icon {
    transform: scale(1.1);
    background-color: rgba(0, 113, 227, 0.2);
    box-shadow: 0 8px 16px rgba(0, 113, 227, 0.15);
}

.elevate-icon {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background-color: rgba(0, 113, 227, 0.1);
    border-radius: 20px;
    transition: all 0.3s;
    animation: pulse 3s infinite;
}


/* Media queries for Built to Elevate section */

@media (max-width: 992px) {
    .elevate-features {
        gap: 20px;
    }
    .elevate-feature {
        flex: 0 0 calc(50% - 20px);
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .built-to-elevate {
        padding: 60px 0;
    }
    .elevate-features {
        flex-direction: column;
        gap: 20px;
    }
    .elevate-feature {
        flex: 0 0 100%;
        width: 100%;
        margin: 0 auto 20px;
        max-width: 400px;
    }
    .elevate-icon {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .elevate-feature {
        padding: 25px 15px;
    }
}


/* CTA Section */

.cta {
    position: relative;
    overflow: hidden;
    padding: 50px;
    margin: 0;
    width: 100%;
}

.cta-container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.cta-header {
    padding: 50px 40px;
    text-align: center;
    position: relative;
    color: rgb(246, 11, 11);
    background: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,0.1)' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-content {
    background-color: #0c47dc;
    color: white;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
}

.cta h2 {
    font-size: 2.8rem;
    color: white;
    font-weight: 700;
}

.cta-header p {
    color: rgba(150, 33, 33, 0.9);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin: 30px auto 30px;
    line-height: 1.6;
}

.cta-buttons {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary {
    background-color: #007aff;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 119, 255, 0.3);
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 119, 255, 0.4);
}

@media (max-width: 768px) {
    .cta {
        padding: 30px 15px;
    }
    .cta-container {
        margin: 0;
        border-radius: 15px;
    }
    .cta h2 {
        font-size: 2rem;
    }
    .cta-header,
    .cta-content {
        padding: 30px 20px;
    }
    .cta-header p,
    .cta-content p {
        font-size: 1rem;
        max-width: 100%;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .cta-buttons a {
        width: 100%;
        text-align: center;
    }
}


/* Footer */

.footer {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: var(--dark);
    padding: 80px 0 30px;
    position: relative;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.03);
}


/* .footer::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23007aff' fill-opacity='0.03'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
z-index: 0;
pointer-events: none;
} */

.footer .row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.footer .col {
    position: relative;
    padding: 0 20px;
}


/* .footer-logo {
    margin-bottom: 25px;
} */

.footer .logo-text {
    font-family: 'Neuropol X', sans-serif !important;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 5px;
    /* background: linear-gradient(90deg, var(--primary), var(--secondary)); */
    -webkit-background-clip: text;
    background-clip: text;
    color: var(--primary);
    display: inline-block;
}

.logo-tagline {
    font-size: 0.9rem;
    color: var(--gray);
    font-style: Normal;
    display: block;
    margin-top: 5px;
}

.footer-info p {
    margin-bottom: 10px;
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links h4 {
    margin-bottom: 25px;
    color: var(--primary);
    position: relative;
    font-size: 1.2rem;
    padding-bottom: 12px;
    font-weight: 600;
}

.footer-links:hover h4::after {
    width: 60px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
    position: relative;
}

.footer-links ul:not(.contact-list) li {
    padding-left: 0;
    transition: all 0.3s ease;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
    position: relative;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}


/* .footer-links a::before {
content: '';
position: absolute;
bottom: -2px;
left: 0;
width: 0;
height: 2px;
background: linear-gradient(90deg, var(--primary), var(--secondary));
transition: width 0.3s ease;
} */

.footer-links a:hover::before {
    width: 100%;
}

.contact-list {
    margin: 0;
    padding: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.1) 0%, rgba(88, 86, 214, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    color: var(--primary);
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0) 0%, rgba(0, 122, 255, 0.2) 50%, rgba(0, 122, 255, 0) 100%);
    transform: rotate(45deg);
    transition: all 0.3s ease;
    opacity: 0;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.15) 0%, rgba(88, 86, 214, 0.15) 100%);
    box-shadow: 0 8px 16px rgba(0, 122, 255, 0.15);
}

.contact-item:hover .contact-icon::before {
    opacity: 1;
    animation: glare 1.5s ease;
}

@keyframes glare {
    0% {
        transform: rotate(45deg) translateY(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    100% {
        transform: rotate(45deg) translateY(100%);
        opacity: 0;
    }
}

.contact-info {
    font-size: 0.95rem;
    color: var(--gray);
    padding-top: 5px;
}

.contact-info a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

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

.social-media-links {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.1) 0%, rgba(88, 86, 214, 0.1) 100%);
    border-radius: 50%;
    color: var(--primary);
    font-size: 16px;
    transition: all 0.3s;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.social-link:hover {
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 122, 255, 0.2);
}

.social-link:hover::before {
    opacity: 1;
}

.footer-bottom {
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.footer-bottom a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
    margin: 0 5px;
}

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

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

.footer-bottom a:hover::after {
    width: 100%;
}


/* Add fluid shapes to the footer */

.footer-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.05;
    z-index: 0;
}

.footer-shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    top: -150px;
    right: -100px;
}

.footer-shape-2 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    bottom: -100px;
    left: -100px;
}


/* Footer responsive styling */

@media (max-width: 992px) {
    .footer .row {
        grid-template-columns: 1fr 1fr;
    }
    .footer .col:first-child {
        grid-column: span 2;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
        text-align: center;
    }
    .footer .row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer .col:first-child {
        grid-column: span 1;
    }
    .footer-logo,
    .footer-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-links h4 {
        text-align: center;
    }
    .footer-links h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .social-media-links {
        justify-content: center;
    }
    .contact-item {
        justify-content: flex-start;
        text-align: left;
    }
    .contact-list {
        display: inline-block;
        margin: 0 auto;
    }
    .footer-shape {
        opacity: 0.03;
    }
}


/* Animations */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

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

@keyframes floatAnimation {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}


/* Apply animations to elements */

.hero-content {
    animation: fadeIn 1s ease-out, slideUp 1s ease-out;
}

.feature-card,
.problem-item,
.tool-card,
.enhanced-card,
.elevate-feature {
    animation: scaleIn 0.5s ease-out;
}

.problem-icon,
.feature-icon,
.tool-icon,
.app-feature-icon,
.elevate-icon {
    animation: pulse 3s infinite;
}

.mobile-mockup {
    animation: floatAnimation 6s ease-in-out infinite;
}


/* Add smooth transitions */

.nav-link,
.btn,
.footer-links a,
.social-link {
    transition: all 0.3s ease;
}


/* Scroll reveal effect - elements will fade in as user scrolls */

.section:not(.hero) {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.in-view {
    opacity: 1;
    transform: translateY(0);
}


/* Add a simple JavaScript for scroll reveal effect */


/* Apple-style comparison section for mobile */

.apple-comparison-container {
    display: none;
}


/* Desktop comparison visibility */

.desktop-comparison {
    display: grid;
}


/* Apple-style comparison cards */

.apple-comparison-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 580px;
    margin: 0 auto;
    padding-top: 12px;
}

.apple-card {
    border-radius: var(--card-radius);
    padding: 22px 24px;
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    background-color: white;
    min-height: 104px;
    width: 82%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.apple-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.apple-card-title {
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.apple-card-content {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: -0.022em;
    line-height: 1.19048;
}

.apple-card-subcontent {
    font-size: 14px;
    color: var(--gray);
    font-weight: 400;
    line-height: 1.42859;
    letter-spacing: -0.016em;
}


/* Without Wondermove styling */

.apple-card.without {
    border-left: 3px solid var(--danger);
    margin-right: 64px;
    align-self: flex-start;
    background-color: rgba(255, 59, 48, 0.05);
}

.apple-card.without .apple-card-title {
    color: var(--danger);
}


/* With Wondermove styling */

.apple-card.with {
    border-right: 3px solid var(--primary);
    margin-left: 64px;
    align-self: flex-end;
    background-color: rgba(0, 122, 255, 0.05);
}

.apple-card.with .apple-card-title {
    color: var(--primary);
}


/* Mobile responsive styles */

@media only screen and (max-width: 768px) {
    /* Show Apple-style comparison, hide desktop comparison */
    .apple-comparison-container {
        display: block;
        padding: 0 15px;
    }
    .desktop-comparison {
        display: none;
    }
    .apple-card {
        padding: 18px 20px;
        min-height: 96px;
        width: 90%;
    }
    .apple-card.without {
        margin-right: 32px;
    }
    .apple-card.with {
        margin-left: 32px;
    }
    .apple-card-content {
        font-size: 19px;
    }
}

@media only screen and (max-width: 480px) {
    .apple-comparison-cards {
        gap: 16px;
    }
    .apple-card {
        padding: 16px 18px;
        width: 92%;
    }
    .apple-card.without {
        margin-right: 24px;
    }
    .apple-card.with {
        margin-left: 24px;
    }
    .apple-card-content {
        font-size: 17px;
        letter-spacing: -0.022em;
    }
    .apple-card-subcontent {
        font-size: 13px;
        letter-spacing: -0.016em;
    }
}


/* Features Mobile Carousel */

.features-mobile-carousel {
    display: none;
    width: 100%;
    margin-top: 30px;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-slides {
    display: flex;
    transition: transform 0.3s ease;
    width: 100%;
}

.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 0 10px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--light-gray);
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-indicator.active {
    background-color: var(--primary);
}


/* Media queries for responsive design */

@media (max-width: 768px) {
    /* Features section - Mobile view */
    .features-desktop {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
    }
    .features-mobile-carousel {
        display: block !important;
        visibility: visible !important;
    }
    /* Feature icons */
    .feature-icon {
        width: 50px !important;
        height: 50px !important;
        line-height: 50px !important;
        font-size: 20px !important;
    }
    /* Feature cards */
    .feature-card {
        padding: 20px !important;
    }
    .feature-heading {
        font-size: 1rem !important;
        margin-bottom: 10px !important;
    }
    .feature-text {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }
    /* Other mobile styles */
}

@media only screen and (max-width: 768px) {
    /* Show Apple-style comparison, hide desktop comparison */
    .apple-comparison-container {
        display: block;
        padding: 0 15px;
    }
    .desktop-comparison {
        display: none;
    }
    .apple-card {
        padding: 18px 20px;
        min-height: 96px;
        width: 90%;
    }
    .apple-card.without {
        margin-right: 32px;
    }
    .apple-card.with {
        margin-left: 32px;
    }
    .apple-card-content {
        font-size: 19px;
    }
}

@media only screen and (max-width: 480px) {
    .apple-comparison-cards {
        gap: 16px;
    }
    .apple-card {
        padding: 16px 18px;
        width: 92%;
    }
    .apple-card.without {
        margin-right: 24px;
    }
    .apple-card.with {
        margin-left: 24px;
    }
    .apple-card-content {
        font-size: 17px;
        letter-spacing: -0.022em;
    }
    .apple-card-subcontent {
        font-size: 13px;
        letter-spacing: -0.016em;
    }
}


/* Features Mobile Carousel */

.features-mobile-carousel {
    display: none;
    width: 100%;
    margin-top: 30px;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-slides {
    display: flex;
    transition: transform 0.3s ease;
    width: 100%;
}

.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 0 10px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--light-gray);
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-indicator.active {
    background-color: var(--primary);
}


/* Media queries for responsive design */

@media (max-width: 768px) {
    /* Features section - Mobile view */
    .features-desktop {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
    }
    .features-mobile-carousel {
        display: block !important;
        visibility: visible !important;
    }
    /* Feature icons */
    .feature-icon {
        width: 50px !important;
        height: 50px !important;
        line-height: 50px !important;
        font-size: 20px !important;
    }
    /* Feature cards */
    .feature-card {
        padding: 20px !important;
    }
    .feature-heading {
        font-size: 1rem !important;
        margin-bottom: 10px !important;
    }
    .feature-text {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }
    /* Other mobile styles */
    /* Reduce other icon sizes in mobile view */
    .tool-icon,
    .problem-icon,
    .app-feature-icon,
    .elevate-icon {
        width: 50px !important;
        height: 50px !important;
        line-height: 50px !important;
        font-size: 20px !important;
    }
    /* Remove arrow buttons from tools section */
    .tools-carousel-container .tools-nav-button {
        display: none;
    }
    /* Make tools carousel snap better for swipe */
    .tools-carousel-track {
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    /* Remove arrows from feature cards */
    .tools-grid .tool-card::before,
    .tools-grid .tool-card::after,
    .carousel-prev,
    .carousel-next {
        display: none !important;
    }
}

.problem-icon,

/* .comparison-icon, */

.elevate-icon,
.tool-icon,
.app-feature-icon {
    color: var(--primary);
    background-color: rgba(0, 122, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    transition: all 0.3s;
}


/* Specific icon styles */

.problem-icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
    min-width: 50px;
    margin-top: 0;
}

.card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding: 40px 20px;
    width: 100%;
    overflow-x: hidden;
}

.contact-section {
    background: white;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-header {
    position: relative;
    padding: 40px;
    background: linear-gradient(135deg, #0066FF, #00A3FF);
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    text-align: center;
}

.contact-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: white;
}

.contact-header p {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 0;
    opacity: 0.9;
}

.contact-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,0.1)' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.contact-body {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #ffffff;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.contact-body p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 30px;
    text-align: center;
    max-width: 80%;
}

.contact-buttons {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}


/* Shared button base */

.ww-btn {
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
}


/* Gradient primary button */

.btn-primary.ww-btn {
    background: linear-gradient(135deg, #0066FF, #00A3FF);
    color: white;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
}

.btn-primary.ww-btn i {
    margin-left: 8px;
}

.btn-primary.ww-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.4);
}


/* Secondary white button with border */

.btn-white.ww-btn {
    background: white;
    color: #0066FF;
    border: 2px solid #0066FF;
}

.btn-white.ww-btn:hover {
    background: linear-gradient(135deg, #0066FF, #00A3FF);
    color: white;
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
}


/* Optional outlined look */

.btn-outline-white.ww-btn {
    background: transparent;
    color: #0066FF;
    border: 2px solid #0066FF;
}

.btn-outline-white.ww-btn:hover {
    background: #0066FF;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
}

@media (max-width: 768px) {
    .contact-section {
        margin: 0 15px;
    }
    .contact-header h2 {
        font-size: 2rem;
    }
    .contact-header p,
    .contact-body p {
        font-size: 0.95rem;
    }
    .contact-body {
        padding: 30px 20px;
    }
    .contact-body p {
        max-width: 100%;
    }
    .contact-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .contact-buttons a {
        width: 100%;
        text-align: center;
    }
}


/* Enhanced Card Styling */

.card-container-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.enhanced-card {
    background-color: white;
    border-radius: var(--card-radius);
    padding: 40px;
    position: relative;
    flex: 1;
    min-width: 300px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    animation: scaleIn 0.5s ease-out;
}

.enhanced-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.dot-pattern {
    position: absolute;
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
    background-image: radial-gradient(var(--primary) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.dot-pattern-alt {
    position: absolute;
    width: 180px;
    height: 180px;
    top: 40px;
    right: -30px;
    background-image: radial-gradient(var(--secondary) 1.5px, transparent 1.5px);
    background-size: 15px 15px;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.dot-pattern-grid {
    position: absolute;
    width: 200px;
    height: 200px;
    top: -20px;
    right: -50px;
    background-image: linear-gradient(var(--primary) 1px, transparent 1px), linear-gradient(90deg, var(--primary) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.07;
    z-index: 0;
    pointer-events: none;
}

.blob-bg {
    position: absolute;
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -150px;
    background: radial-gradient(circle, rgba(0, 122, 255, 0.1) 0%, rgba(0, 122, 255, 0) 70%);
    border-radius: 50%;
    opacity: 0.7;
    z-index: 0;
    pointer-events: none;
}

.blob-bg-alt {
    position: absolute;
    width: 250px;
    height: 250px;
    bottom: -100px;
    left: -50px;
    background: radial-gradient(circle, rgba(88, 86, 214, 0.1) 0%, rgba(88, 86, 214, 0) 70%);
    border-radius: 50%;
    opacity: 0.7;
    z-index: 0;
    pointer-events: none;
}

.blob-bg-accent {
    position: absolute;
    width: 200px;
    height: 200px;
    bottom: -80px;
    left: 30px;
    background: radial-gradient(circle, rgba(255, 45, 85, 0.05) 0%, rgba(255, 45, 85, 0) 70%);
    border-radius: 50%;
    opacity: 0.7;
    z-index: 0;
    pointer-events: none;
}


/* .wave-pattern {
    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 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23007aff' fill-opacity='0.03'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    z-index: 0;
    pointer-events: none;
} */

.card-content {
    position: relative;
    z-index: 1;
}

.card-heading {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--primary);
    line-height: 1.3;
}

.card-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.card-highlight {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin: 25px 0 15px;
}

.card-footer {
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 10px;
}

@media (max-width: 992px) {
    .card-container-row {
        flex-direction: column;
    }
    .enhanced-card {
        width: 100%;
    }
}


/* Built to Elevate Section */

.built-to-elevate {
    background: linear-gradient(135deg, #f8f9fa 0%, #ebf2fc 100%);
    text-align: center;
    position: relative;
    padding: var(--section-padding);
    width: 100%;
    overflow-x: hidden;
}

.elevate-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    width: 100%;
}

.elevate-feature {
    flex: 0 0 calc(33.333% - 20px);
    background-color: white;
    padding: 40px 30px;
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    text-align: center;
    transition: all 0.3s;
    animation: scaleIn 0.5s ease-out;
}

.elevate-feature:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.elevate-feature:hover .elevate-icon {
    transform: scale(1.1);
    background-color: rgba(0, 113, 227, 0.2);
    box-shadow: 0 8px 16px rgba(0, 113, 227, 0.15);
}

.elevate-icon {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background-color: rgba(0, 113, 227, 0.1);
    border-radius: 20px;
    transition: all 0.3s;
    animation: pulse 3s infinite;
}


/* Media queries for Built to Elevate section */

@media (max-width: 992px) {
    .elevate-features {
        gap: 20px;
    }
    .elevate-feature {
        flex: 0 0 calc(50% - 20px);
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .built-to-elevate {
        padding: 60px 0;
    }
    .elevate-features {
        flex-direction: column;
        gap: 20px;
    }
    .elevate-feature {
        flex: 0 0 100%;
        width: 100%;
        margin: 0 auto 20px;
        max-width: 400px;
    }
    .elevate-icon {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .elevate-feature {
        padding: 25px 15px;
    }
}


/* CTA Section */

.cta {
    position: relative;
    overflow: hidden;
    padding: 50px;
    margin: 0;
    width: 100%;
}

.cta-container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.cta-header {
    padding: 50px 40px;
    text-align: center;
    position: relative;
    color: rgb(246, 11, 11);
    background: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,0.1)' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-content {
    background-color: #0c47dc;
    color: white;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
}

.cta h2 {
    font-size: 2.8rem;
    color: white;
    font-weight: 700;
}

.cta-header p {
    color: rgba(150, 33, 33, 0.9);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin: 30px auto 30px;
    line-height: 1.6;
}

.cta-buttons {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary {
    background-color: #007aff;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 119, 255, 0.3);
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 119, 255, 0.4);
}

@media (max-width: 768px) {
    .cta {
        padding: 30px 15px;
    }
    .cta-container {
        margin: 0;
        border-radius: 15px;
    }
    .cta h2 {
        font-size: 2rem;
    }
    .cta-header,
    .cta-content {
        padding: 30px 20px;
    }
    .cta-header p,
    .cta-content p {
        font-size: 1rem;
        max-width: 100%;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .cta-buttons a {
        width: 100%;
        text-align: center;
    }
}


/* Footer */

.footer {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: var(--dark);
    padding: 80px 0 30px;
    position: relative;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.03);
}


/* .footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23007aff' fill-opacity='0.03'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
    pointer-events: none;
} */

.footer .row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.footer .col {
    position: relative;
    padding: 0 20px;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer .logo-text {
    font-family: 'Neuropol X', sans-serif !important;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 5px;
    /* background: linear-gradient(90deg, var(--primary), var(--secondary)); */
    -webkit-background-clip: text;
    background-clip: text;
    color: var(--primary);
    display: inline-block;
}

.logo-tagline {
    font-size: 0.9rem;
    color: var(--gray);
    font-style: normal;
    display: block;
    margin-top: 5px;
    text-align: center;
}

.footer-info p {
    margin-bottom: 10px;
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links h4 {
    margin-bottom: 25px;
    color: var(--primary);
    position: relative;
    font-size: 1.2rem;
    padding-bottom: 12px;
    font-weight: 600;
}

.footer-links:hover h4::after {
    width: 60px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
    position: relative;
}

.footer-links ul:not(.contact-list) li {
    padding-left: 0;
    transition: all 0.3s ease;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
    position: relative;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}


/* .footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
} */

.footer-links a:hover::before {
    width: 100%;
}

.contact-list {
    margin: 0;
    padding: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.1) 0%, rgba(88, 86, 214, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    color: var(--primary);
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0) 0%, rgba(0, 122, 255, 0.2) 50%, rgba(0, 122, 255, 0) 100%);
    transform: rotate(45deg);
    transition: all 0.3s ease;
    opacity: 0;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.15) 0%, rgba(88, 86, 214, 0.15) 100%);
    box-shadow: 0 8px 16px rgba(0, 122, 255, 0.15);
}

.contact-item:hover .contact-icon::before {
    opacity: 1;
    animation: glare 1.5s ease;
}

@keyframes glare {
    0% {
        transform: rotate(45deg) translateY(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    100% {
        transform: rotate(45deg) translateY(100%);
        opacity: 0;
    }
}

.contact-info {
    font-size: 0.95rem;
    color: var(--gray);
    padding-top: 5px;
}

.contact-info a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

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

.social-media-links {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.1) 0%, rgba(88, 86, 214, 0.1) 100%);
    border-radius: 50%;
    color: var(--primary);
    font-size: 16px;
    transition: all 0.3s;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.social-link:hover {
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 122, 255, 0.2);
}

.social-link:hover::before {
    opacity: 1;
}

.footer-bottom {
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.footer-bottom a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
    margin: 0 5px;
}

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

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

.footer-bottom a:hover::after {
    width: 100%;
}


/* Add fluid shapes to the footer */

.footer-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.05;
    z-index: 0;
}

.footer-shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    top: -150px;
    right: -100px;
}

.footer-shape-2 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    bottom: -100px;
    left: -100px;
}


/* Footer responsive styling */

@media (max-width: 992px) {
    .footer .row {
        grid-template-columns: 1fr 1fr;
    }
    .footer .col:first-child {
        grid-column: span 2;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
        text-align: center;
    }
    .footer .row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer .col:first-child {
        grid-column: span 1;
    }
    .footer-logo,
    .footer-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-links h4 {
        text-align: center;
    }
    .footer-links h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .social-media-links {
        justify-content: center;
    }
    .contact-item {
        justify-content: flex-start;
        text-align: left;
    }
    .contact-list {
        display: inline-block;
        margin: 0 auto;
    }
    .footer-shape {
        opacity: 0.03;
    }
}


/* Animations */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

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

@keyframes floatAnimation {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}


/* Apply animations to elements */

.hero-content {
    animation: fadeIn 1s ease-out, slideUp 1s ease-out;
}

.feature-card,
.problem-item,
.tool-card,
.enhanced-card,
.elevate-feature {
    animation: scaleIn 0.5s ease-out;
}

.problem-icon,
.feature-icon,
.tool-icon,
.app-feature-icon,
.elevate-icon {
    animation: pulse 3s infinite;
}

.mobile-mockup {
    animation: floatAnimation 6s ease-in-out infinite;
}


/* Add smooth transitions */

.nav-link,
.btn,
.footer-links a,
.social-link {
    transition: all 0.3s ease;
}


/* Scroll reveal effect - elements will fade in as user scrolls */

.section:not(.hero) {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.in-view {
    opacity: 1;
    transform: translateY(0);
}


/* Add a simple JavaScript for scroll reveal effect */


/* Apple-style comparison section for mobile */

.apple-comparison-container {
    display: none;
}


/* Desktop comparison visibility */

.desktop-comparison {
    display: grid;
}


/* Apple-style comparison cards */

.apple-comparison-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 580px;
    margin: 0 auto;
    padding-top: 12px;
}

.apple-card {
    border-radius: var(--card-radius);
    padding: 22px 24px;
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    background-color: white;
    min-height: 104px;
    width: 82%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.apple-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.apple-card-title {
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.apple-card-content {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: -0.022em;
    line-height: 1.19048;
}

.apple-card-subcontent {
    font-size: 14px;
    color: var(--gray);
    font-weight: 400;
    line-height: 1.42859;
    letter-spacing: -0.016em;
}


/* Without Wondermove styling */

.apple-card.without {
    border-left: 3px solid var(--danger);
    margin-right: 64px;
    align-self: flex-start;
    background-color: rgba(255, 59, 48, 0.05);
}

.apple-card.without .apple-card-title {
    color: var(--danger);
}


/* With Wondermove styling */

.apple-card.with {
    border-right: 3px solid var(--primary);
    margin-left: 64px;
    align-self: flex-end;
    background-color: rgba(0, 122, 255, 0.05);
}

.apple-card.with .apple-card-title {
    color: var(--primary);
}


/* Mobile responsive styles */

@media only screen and (max-width: 768px) {
    /* Show Apple-style comparison, hide desktop comparison */
    .apple-comparison-container {
        display: block;
        padding: 0 15px;
    }
    .desktop-comparison {
        display: none;
    }
    .apple-card {
        padding: 18px 20px;
        min-height: 96px;
        width: 90%;
    }
    .apple-card.without {
        margin-right: 32px;
    }
    .apple-card.with {
        margin-left: 32px;
    }
    .apple-card-content {
        font-size: 19px;
    }
}

@media only screen and (max-width: 480px) {
    .apple-comparison-cards {
        gap: 16px;
    }
    .apple-card {
        padding: 16px 18px;
        width: 92%;
    }
    .apple-card.without {
        margin-right: 24px;
    }
    .apple-card.with {
        margin-left: 24px;
    }
    .apple-card-content {
        font-size: 17px;
        letter-spacing: -0.022em;
    }
    .apple-card-subcontent {
        font-size: 13px;
        letter-spacing: -0.016em;
    }
}


/* Features Mobile Carousel */

.features-mobile-carousel {
    display: none;
    width: 100%;
    margin-top: 30px;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-slides {
    display: flex;
    transition: transform 0.3s ease;
    width: 100%;
}

.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 0 10px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--light-gray);
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-indicator.active {
    background-color: var(--primary);
}


/* Media queries for responsive design */

@media (max-width: 768px) {
    /* Features section - Mobile view */
    .features-desktop {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
    }
    .features-mobile-carousel {
        display: block !important;
        visibility: visible !important;
    }
    /* Feature icons */
    .feature-icon {
        width: 50px !important;
        height: 50px !important;
        line-height: 50px !important;
        font-size: 20px !important;
    }
    /* Feature cards */
    .feature-card {
        padding: 20px !important;
    }
    .feature-heading {
        font-size: 1rem !important;
        margin-bottom: 10px !important;
    }
    .feature-text {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }
    /* Other mobile styles */
    /* Reduce other icon sizes in mobile view */
    .tool-icon,
    .problem-icon,
    .app-feature-icon,
    .elevate-icon {
        width: 50px !important;
        height: 50px !important;
        line-height: 50px !important;
        font-size: 20px !important;
    }
    /* Remove arrow buttons from tools section */
    .tools-carousel-container .tools-nav-button {
        display: none;
    }
    /* Make tools carousel snap better for swipe */
    .tools-carousel-track {
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    /* Remove arrows from feature cards */
    .tools-grid .tool-card::before,
    .tools-grid .tool-card::after,
    .carousel-prev,
    .carousel-next {
        display: none !important;
    }
}