:root {
    --primary: #369f6c; /* Blue color */
    --primary-dark: #1E40AF; /* Darker blue */
    --secondary: #10B981; /* Teal/green accent */
    --tertiary: #8B5CF6; /* Purple accent */
    --accent: #F59E0B; /* Orange/amber accent */
    --dark: #1F2937; /* Dark color for text */
    --light: #FFFFFF; /* White for backgrounds */
    --light-secondary: #F9FAFB; /* Light gray for secondary backgrounds */
    --gray: #6B7280; /* Medium gray for text */
    --light-gray: #E5E7EB; /* Light gray for borders and dividers */
    --gradient-start: #3B82F6;
    --gradient-end: #8B5CF6;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
}

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

/* This is a duplicate body selector that's overriding the dark theme */
/* Removing this and keeping the one above */

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

section {
    padding: 80px 0;
}

h1, h2, h3, h4 {
    margin-bottom: 20px;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    z-index: 9;
    position: relative;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

h4 {
    font-size: 1.4rem;
    font-weight: 600;
}

p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #000;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95); /* Light background */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

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

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

.logo a {
    display: block;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .logo-img {
        height: 35px;
    }
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

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

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

.nav-links a:hover:after {
    width: 100%;
}

.nav-btn {
    background-color: #000;
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    margin-left: 15px;
}

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

.nav-btn:after {
    display: none;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--light);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        font-size: 1.1rem;
        color: var(--dark);
    }
    
    .nav-btn {
        margin: 15px 0 0;
        display: inline-block;
        text-align: center;
        padding: 12px 25px;
    }
}

/* Header */
header {
    background-color: var(--light);
    background-image: url('images/demo-application-home-banner.jpg');
    background-size: cover;
    background-position: center;
    color: var(--dark);
    padding: 170px 0 140px; /* Increased top padding to account for navbar */
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
}

/* Add banner elements */
header .banner-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

header .banner-element:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
}

header .banner-element:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: 50px;
    left: -50px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 70%);
}

header .banner-element:nth-child(3) {
    width: 150px;
    height: 150px;
    top: 50px;
    left: 30%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 70%);
}

header .banner-element:nth-child(4) {
    width: 100px;
    height: 100px;
    bottom: 100px;
    right: 20%;
    background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0) 70%);
}

header:after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--light);
    transform: skewY(-3deg);
}

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

.header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    display: inline-block;
}

.header-content h1:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
}

.header-content p {
    font-size: 1.3rem;
    margin-bottom: 50px;
    line-height: 1.7;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
}

.header-content .btn {
    padding: 16px 32px;
    font-size: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.header-content .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
    background-color: white;
    color: var(--primary);
}

@media (max-width: 768px) {
    header {
        padding: 100px 0 120px;
    }
    
    .header-content h1 {
        font-size: 2rem;
    }
    
    .header-content p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .feature-content h3 {
        font-size: 1.5rem;
    }
}

/* Features */
.features {
    background-color: var(--light);
    background-image: url('images/demo-application-home-banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.features:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
}

.feature-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.feature-card {
    display: flex;
    align-items: center;
    background-color: var(--light);
    color: var(--dark);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.feature-card:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, #369f6c, #369f6c);
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}

.feature-card:nth-child(even):before {
    left: auto;
    right: 0;
    border-radius: 0;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--primary);
    background-color: rgba(59, 130, 246, 0.1);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 40px 0 0;
    flex-shrink: 0;
}

.feature-card:nth-child(even) .feature-icon {
    margin: 0 0 0 40px;
}

.feature-content {
    flex: 1;
}

.feature-list {
    list-style-type: none;
    margin-top: 15px;
}

.feature-list li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    font-size: 1.05rem;
}

.feature-list li:before {
    content: "✓";
    color: var(--secondary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

@media (max-width: 768px) {
    .feature-card, 
    .feature-card:nth-child(even) {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .feature-icon, 
    .feature-card:nth-child(even) .feature-icon {
        margin: 0 auto 20px;
    }
    
    .feature-list li {
        text-align: left;
    }
    
    .feature-card:before {
        width: 100%;
        height: 6px;
        border-radius: 0;
        border-top-left-radius: 16px;
        border-top-right-radius: 16px;
    }
    
    .feature-card:nth-child(even):before {
        top: 0;
        left: 0;
        right: auto;
        border-radius: 0;
        border-top-left-radius: 16px;
        border-top-right-radius: 16px;
    }
}

/* Benefits */
.benefits {
    background-color: var(--light);
    background-image: url('images/demo-application-home-banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    color: var(--dark);
}

.benefits:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9); 
    z-index: 0;
}

.benefits:after {
    content: '';
    position: absolute;
    top: 150px; /* Start below the title */
    left: 50%;
    width: 2px;
    height: calc(100% - 150px); /* Adjust height to start below title */
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    z-index: 1;
}

.benefit-grid {
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.benefit-card {
    position: relative;
    width: 45%;
    background-color: var(--light);
    color: var(--dark);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* .benefit-card p {
    text-align: justify;
} */

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

.benefit-card:nth-child(odd) {
    align-self: flex-start;
}

.benefit-card:nth-child(even) {
    align-self: flex-end;
}

.benefit-card:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--primary);
    border-radius: 50%;
    top: 30px;
    z-index: 2;
}

.benefit-card:nth-child(odd):before {
    right: -60px;
}

.benefit-card:nth-child(even):before {
    left: -60px;
}

.benefit-card:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
    top: 39px;
}

.benefit-card:nth-child(odd):after {
    right: -40px;
}

.benefit-card:nth-child(even):after {
    left: -40px;
}

.benefit-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .benefits:before {
        left: 0px;
    }
    
    .benefit-card {
        width: 85%;
        margin-left: auto;
        margin-right: 0;
    }
    
    .benefit-card:nth-child(odd),
    .benefit-card:nth-child(even) {
        align-self: flex-end;
    }
    
    .benefit-card:before {
        left: -50px !important;
        right: auto !important;
    }
    
    .benefit-card:after {
        left: -30px !important;
        right: auto !important;
    }
}

/* How it works */
.how-it-works {
    background-color: var(--light);
    background-image: url('images/demo-application-home-banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.how-it-works:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9); 
    z-index: 0;
}

.steps {
    display: flex;
    justify-content: center;
    position: relative;
    margin: 80px auto 0;
    z-index: 1;
}

.steps:before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    z-index: 1;
}

.step {
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    position: relative;
    padding: 0 15px;
    z-index: 2;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 3;
    border: 4px solid var(--light);
    transition: all 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.step h4 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.step:hover h4 {
    color: var(--primary-dark);
}

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

@media (max-width: 900px) {
    .steps {
        flex-wrap: wrap;
        gap: 0px;
    }
    
    .steps:before {
        display: none;
    }
    
    .step {
        min-width: 160px;
        max-width: 200px;
    }
}

@media (max-width: 600px) {
    .steps {
        flex-direction: column;
        align-items: center;
    }
    
    .step {
        max-width: 100%;
        width: 80%;
        margin-bottom: 40px;
    }
    
    .step:last-child {
        margin-bottom: 0;
    }
}

/* Use cases */
.use-cases {
    background-color: var(--light);
    background-image: url('images/demo-application-home-banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    color: var(--dark);
}

.use-cases:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9); 
    z-index: 0;
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.use-case-card {
    background-color: var(--light);
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.use-case-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

.use-case-card h3 {
    color: var(--primary);
    padding: 25px 30px 15px;
    margin-bottom: 0;
    position: relative;
}

.use-case-card p {
    padding: 0 30px 30px;
    color: var(--dark);
    flex-grow: 1;
    margin-bottom: 0;
    /* text-align: justify; */
}

.use-case-card:nth-child(1) {
    background-image: linear-gradient(to bottom right, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.9)), 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="M20,50 L80,50 M50,20 L50,80" stroke="%233B82F6" stroke-width="2" stroke-dasharray="5,5" opacity="0.2"/></svg>');
    background-size: cover;
}

.use-case-card:nth-child(2) {
    background-image: linear-gradient(to bottom right, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.9)), 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="30" stroke="%233B82F6" stroke-width="2" fill="none" opacity="0.2"/></svg>');
    background-size: cover;
}

.use-case-card:nth-child(3) {
    background-image: linear-gradient(to bottom right, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.9)), 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="M20,20 L80,80 M80,20 L20,80" stroke="%233B82F6" stroke-width="2" stroke-dasharray="5,5" opacity="0.2"/></svg>');
    background-size: cover;
}

.use-case-card:nth-child(4) {
    background-image: linear-gradient(to bottom right, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.9)), 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"/><rect x="30" y="30" width="40" height="40" stroke="%233B82F6" stroke-width="2" fill="none" opacity="0.2"/></svg>');
    background-size: cover;
}

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

/* Pricing */
.pricing {
    background-color: var(--light);
    background-image: url('images/demo-application-home-banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    text-align: center;
    color: var(--dark);
    overflow: hidden;
}

.pricing:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9); 
    z-index: 0;
}

.pricing .container {
    position: relative;
    z-index: 1;
}

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

.pricing-card {
    background-color: var(--light);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.pricing-card h3 {
    color: var(--primary);
}

/* Testimonials */
.testimonials {
    background-color: var(--light);
    background-image: url('images/demo-application-home-banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: var(--dark);
    overflow: hidden;
}

.testimonials:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9); 
    z-index: 0;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

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

.testimonial-card {
    background-color: var(--light);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding: 0 20px;
}

.testimonial-text:before,
.testimonial-text:after {
    content: '"';
    font-size: 2rem;
    color: var(--light-gray);
    position: absolute;
}

.testimonial-text:before {
    left: 0;
    top: -10px;
}

.testimonial-text:after {
    right: 0;
    bottom: -10px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
}

/* Technical specs */
.tech-specs {
    background-color: var(--light);
    background-image: url('images/demo-application-home-banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    color: var(--dark);
}

.tech-specs:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9); 
    z-index: 0;
}

.tech-specs:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="300" height="300" viewBox="0 0 300 300"><rect width="300" height="300" fill="none"/><circle cx="150" cy="150" r="100" stroke="%233B82F6" stroke-width="2" fill="none" opacity="0.1"/><circle cx="150" cy="150" r="70" stroke="%233B82F6" stroke-width="2" fill="none" opacity="0.1"/><circle cx="150" cy="150" r="40" stroke="%233B82F6" stroke-width="2" fill="none" opacity="0.1"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

.tech-specs .container {
    position: relative;
    z-index: 1;
}

.specs-list {
    list-style-type: none;
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--light);
    border-radius: 16px;
    padding: 40px 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.specs-list li {
    margin-bottom: 20px;
    padding: 15px 15px 15px 60px;
    position: relative;
    background-color: var(--light);
    color: var(--dark);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.specs-list li:last-child {
    margin-bottom: 0;
}

.specs-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.specs-list li:before {
    content: "";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-color: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
}

.specs-list li:after {
    content: "✓";
    color: var(--primary);
    position: absolute;
    left: 26px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    font-weight: bold;
}

@media (max-width: 768px) {
    .specs-list {
        padding: 30px;
    }
    
    .benefit-card h3 {
        font-size: 1.5rem;
    }

    .specs-list li {
        padding: 15px 15px 15px 50px;
    }
    
    .specs-list li:before {
        left: 15px;
    }
    
    .specs-list li:after {
        left: 21px;
    }
}

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

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-btn {
    background-color: white;
    color: var(--primary);
    font-size: 1.2rem;
    padding: 18px 40px;
    margin-top: 20px;
}

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

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer p {
    margin-bottom: 0;
}

.tb-form input.form-control {
    padding: 16px 32px;
    font-size: 1rem;
    border: 2px solid #dee2e6;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    border-radius: 0;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    width: 100%;
}

.tb-form button.btn.btn-primary {
    border-radius: 0;
    box-shadow: unset;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    font-weight: normal;
    width: 100%;
    cursor: pointer;
}

.tb-form button.btn.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
    transform: translateY(0px);
}

.tb-form .input-group {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .feature-grid,
    .benefit-grid,
    .use-case-grid,
    .pricing-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        flex-direction: column;
        align-items: center;
    }
    
    .tb-form .input-group {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
}