/*
Theme Name: InfoGrasp 3.0
Theme URI: https://infograsp.com
Author: Yehuda Frankel
Author URI: https://infograsp.com
Description: A modern, responsive theme for private school management.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: infograsp
*/

/* InfoGrasp 3.0 - Main Stylesheet */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
    justify-content: center;
}

.main-nav {
    display: flex;
    list-style: none;
    gap: 0;
    background: linear-gradient(135deg, #2c5f8a 0%, #357abd 100%);
    border-radius: 8px;
    padding: 0;
    box-shadow: 0 4px 15px rgba(53, 122, 189, 0.2);
}

.main-nav li {
    margin: 0;
}

.main-nav a {
    display: block;
    padding: 12px 20px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.main-nav li:first-child a {
    border-radius: 8px 0 0 8px;
}

.main-nav li:last-child a {
    border-radius: 0 8px 8px 0;
    border-right: none;
}

.main-nav a:hover,
.main-nav a.active {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.main-nav a.active {
    background: rgba(255, 255, 255, 0.2);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo img {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(1) contrast(1.1);
}

.logo:hover img {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.2);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: white;
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
    background: linear-gradient(135deg, #5ba0f2, #4a90e2);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Hide mobile toggle and mobile nav on desktop */
.mobile-nav-toggle {
    display: none;
}

.mobile-nav {
    display: none;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    header {
        padding: 12px 0;
    }

    .header-content {
        flex-direction: row;
        text-align: left;
        padding: 8px 15px;
        justify-content: space-between;
        align-items: center;
    }

    .logo img {
        height: 35px;
    }

    .nav-container {
        display: none;
    }

    .cta-buttons {
        gap: 8px;
        display: flex;
    }

    .btn {
        padding: 8px 16px;
        font-size: 12px;
        border-radius: 6px;
    }

    .mobile-nav-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: rgba(53, 122, 189, 0.15);
        border: 2px solid rgba(53, 122, 189, 0.3);
        color: #357abd;
        font-size: 18px;
        cursor: pointer;
        padding: 8px;
        border-radius: 6px;
        transition: all 0.3s ease;
        width: 40px;
        height: 40px;
        margin-right: 8px;
        font-weight: bold;
    }

    .mobile-nav-toggle:hover {
        background: rgba(53, 122, 189, 0.25);
        border-color: rgba(53, 122, 189, 0.5);
    }

    .mobile-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(53, 122, 189, 0.2);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .mobile-nav.active {
        display: block;
        animation: slideDown 0.3s ease;
    }

    .mobile-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-nav li {
        border-bottom: 1px solid rgba(53, 122, 189, 0.1);
    }

    .mobile-nav li:last-child {
        border-bottom: none;
    }

    .mobile-nav a {
        display: block;
        padding: 15px 20px;
        color: #357abd;
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        transition: all 0.3s ease;
    }

    .mobile-nav a:hover,
    .mobile-nav a.active {
        background: rgba(53, 122, 189, 0.1);
        color: #357abd;
        padding-left: 30px;
    }
}

/* Responsive Design Tablet */
@media (max-width: 1024px) {
    .nav-container {
        gap: 20px;
    }
    
    .main-nav a {
        padding: 10px 14px;
        font-size: 12px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatPulse {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-8px) scale(1.05);
        opacity: 1;
    }
}

/* Demo css */
.demo-section {
    padding: 60px 0;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8faff 0%, #e8f1ff 100%);
    position: relative;
}

.demo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(74, 144, 226, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(53, 122, 189, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.demo-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease forwards;
}

.demo-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #52c41a, #1890ff, #722ed1);
}

.demo-header {
    text-align: center;
    margin-bottom: 40px;
}

.demo-title {
    font-size: 32px;
    font-weight: 800;
    color: #357abd;
    margin-bottom: 10px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

.demo-subtitle {
    color: #666;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

.demo-buttons-top,
.demo-buttons-bottom {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 25px 0;
}

.demo-btn {
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: none;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

.demo-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.demo-btn:hover::before {
    left: 100%;
}

.demo-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.demo-btn-call {
    background: linear-gradient(135deg, #1890ff, #096dd9);
    color: white;
}

.demo-btn-call:hover {
    background: linear-gradient(135deg, #40a9ff, #1890ff);
}

.demo-btn-email {
    background: linear-gradient(135deg, #722ed1, #531dab);
    color: white;
}

.demo-btn-email:hover {
    background: linear-gradient(135deg, #9254de, #722ed1);
}

.divider {
    width: 100%;
    height: 3px;
    border-top: 2px dotted #357abd;
    border-bottom: 2px dotted #357abd;
    margin: 25px 0;
    opacity: 0.7;
}

.demo-form-wrapper {
    margin: 30px 0;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #357abd;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.form-input {
    padding: 18px 20px;
    border: 2px solid rgba(53, 122, 189, 0.15);
    border-radius: 16px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    font-family: inherit;
    color: #333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
}

.form-input::placeholder {
    color: #999;
    font-weight: 400;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #357abd;
    background: white;
    box-shadow: 
        0 0 0 4px rgba(53, 122, 189, 0.1),
        0 8px 25px rgba(53, 122, 189, 0.15);
    transform: translateY(-2px);
}

.form-input:focus::placeholder {
    color: #bbb;
    transform: translateY(-2px);
}

.form-group:focus-within label {
    color: #4a90e2;
    transform: translateY(-2px);
}

.captcha-group {
    background: linear-gradient(135deg, rgba(53, 122, 189, 0.05), rgba(116, 46, 209, 0.05));
    padding: 24px;
    border-radius: 16px;
    border: 2px dashed rgba(53, 122, 189, 0.2);
    position: relative;
    overflow: hidden;
}

.captcha-group::before {
    content: '🔒';
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 18px;
    opacity: 0.6;
}

.captcha-code {
    display: inline-block;
    background: linear-gradient(135deg, #357abd, #4a90e2);
    color: white;
    padding: 8px 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 3px;
    margin: 0 8px;
    box-shadow: 0 4px 12px rgba(53, 122, 189, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.demo-submit-btn {
    background: linear-gradient(135deg, #52c41a, #389e0d);
    color: white;
    padding: 18px 32px;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(82, 196, 26, 0.3);
    margin-top: 10px;
    position: relative;
    overflow: hidden;
    font-family: inherit;
}

.demo-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.demo-submit-btn:hover::before {
    left: 100%;
}

.demo-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(82, 196, 26, 0.4);
    background: linear-gradient(135deg, #73d13d, #52c41a);
}

.demo-submit-btn:active {
    transform: translateY(-1px);
    transition: all 0.1s ease;
}

.demo-links {
    text-align: center;
    margin-top: 30px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

.demo-links a {
    color: #357abd;
    text-decoration: none;
    font-weight: 600;
    margin: 0 10px;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 6px;
}

.demo-links a:hover {
    color: #4a90e2;
    background: rgba(53, 122, 189, 0.1);
}

/* Enhanced floating label effect */
.floating-label {
    position: relative;
}

.floating-label .form-input:focus + .floating-text,
.floating-label .form-input:not(:placeholder-shown) + .floating-text {
    transform: translateY(-32px) scale(0.85);
    color: #357abd;
    background: white;
    padding: 0 8px;
}

.floating-text {
    position: absolute;
    left: 20px;
    top: 18px;
    font-size: 16px;
    color: #999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    font-weight: 500;
}

@media (max-width: 768px) {
    .demo-container {
        padding: 30px 25px;
        margin: 20px;
    }

    .demo-title {
        font-size: 28px;
    }

    .demo-buttons-top,
    .demo-buttons-bottom {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .demo-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .form-input {
        padding: 16px 18px;
        font-size: 16px;
    }

    .captcha-group {
        padding: 20px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form validation states */
.form-input:invalid:not(:focus) {
    border-color: rgba(207, 19, 34, 0.3);
    background: rgba(255, 242, 240, 0.8);
}

.form-input:valid:not(:placeholder-shown) {
    border-color: rgba(82, 196, 26, 0.3);
    background: rgba(246, 255, 237, 0.8);
}

.form-input:valid:not(:placeholder-shown)::after {
    content: '✓';
    position: absolute;
    right: 16px;
    color: #52c41a;
    font-weight: bold;
}


/* Features  Page*/
.hero {
	background: linear-gradient(135deg, #2563eb 0%, #1e40af 50%, #1d4ed8 100%);
	color: white;
	padding: 120px 0 100px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%);
	animation: float 6s ease-in-out infinite;
}

.hero-content {
	position: relative;
	z-index: 2;
}

.hero-title {
	font-size: 4rem;
	font-weight: 800;
	margin-bottom: 25px;
	line-height: 1.1;
	background: linear-gradient(45deg, #ffffff, #e0f2ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: glow 2s ease-in-out infinite alternate;
}

.hero-subtitle {
	font-size: 1.4rem;
	margin-bottom: 50px;
	opacity: 0.95;
	font-weight: 400;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

/* Enhanced Section Styles */
.section {
	padding: 100px 0;
	position: relative;
}

.section:nth-child(odd) {
	background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.section:nth-child(even) {
	background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
}

.section-title {
	font-size: 3.2rem;
	text-align: center;
	margin-bottom: 30px;
	background: linear-gradient(135deg, #002e5c, #357abd);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 800;
	position: relative;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 4px;
	background: linear-gradient(135deg, #d66493, #357abd);
	border-radius: 2px;
}

.section-icon {
	font-size: 5rem;
	text-align: center;
	margin-bottom: 40px;
	display: block;
	filter: drop-shadow(0 4px 15px rgba(0, 46, 92, 0.2));
	animation: bounce 2s infinite;
}

.section-intro {
	text-align: center;
	font-size: 1.3rem;
	color: #4a5568;
	margin-bottom: 80px;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
	font-weight: 500;
	line-height: 1.7;
}

/* Dynamic Feature Cards */
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
	gap: 50px;
	margin-bottom: 80px;
}

.feature-card {
	background: linear-gradient(135deg, #ffffff, #f8fafc);
	padding: 50px;
	border-radius: 24px;
	box-shadow: 
		0 20px 60px rgba(0, 46, 92, 0.08),
		0 8px 25px rgba(0, 46, 92, 0.05);
	border: 2px solid rgba(0, 46, 92, 0.05);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(135deg, #d66493, #357abd);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.feature-card:hover::before {
	transform: scaleX(1);
}

.feature-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 
		0 30px 80px rgba(0, 46, 92, 0.15),
		0 12px 35px rgba(0, 46, 92, 0.1);
	border-color: rgba(214, 100, 147, 0.2);
}

.feature-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #002e5c;
	margin-bottom: 20px;
	line-height: 1.3;
}

.feature-description {
	color: #4a5568;
	line-height: 1.8;
	font-size: 1.05rem;
}

/* Enhanced Process Steps */
.process-steps {
	display: grid;
	grid-template-columns: repeat(2, minmax(280px, 1fr));
	gap: 40px;
	margin: 60px 0;
	position: relative;
}

.process-steps::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, #d66493, #357abd);
	z-index: 1;
	opacity: 0.3;
}

.process-step {
	background: linear-gradient(135deg, #ffffff, #f8fafc);
	padding: 40px;
	border-radius: 20px;
	text-align: center;
	box-shadow: 0 12px 40px rgba(0, 46, 92, 0.1);
	border: 3px solid rgba(214, 100, 147, 0.1);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	z-index: 2;
	animation: fadeInUp 0.6s ease forwards;
	opacity: 0;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }

.process-step:hover {
	transform: translateY(-8px) scale(1.05);
	border-color: rgba(214, 100, 147, 0.4);
	box-shadow: 0 20px 60px rgba(214, 100, 147, 0.2);
}

.step-number {
	background: linear-gradient(135deg, #d66493, #b54d7a);
	color: white;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 1.4rem;
	margin: 0 auto 25px;
	box-shadow: 0 8px 25px rgba(214, 100, 147, 0.3);
	transition: all 0.3s ease;
}

.process-step:hover .step-number {
	transform: scale(1.1) rotate(360deg);
	box-shadow: 0 12px 35px rgba(214, 100, 147, 0.4);
}

.step-title {
	font-size: 1.2rem;
	font-weight: 700;
	color: #002e5c;
	margin-bottom: 15px;
}

.step-description {
	color: #4a5568;
	font-size: 1rem;
	line-height: 1.6;
}

/* Enhanced Testimonials */
.testimonial {
	background: linear-gradient(135deg, rgba(214, 100, 147, 0.1), rgba(214, 100, 147, 0.05));
	padding: 50px;
	border-radius: 20px;
	margin: 60px 0;
	border-left: 6px solid #d66493;
	position: relative;
	overflow: hidden;
	box-shadow: 0 15px 50px rgba(214, 100, 147, 0.1);
}

.testimonial::before {
	content: '"';
	position: absolute;
	top: 20px;
	left: 30px;
	font-size: 4rem;
	color: rgba(214, 100, 147, 0.2);
	font-family: Georgia, serif;
	font-weight: bold;
}

.testimonial-text {
	font-style: italic;
	font-size: 1.3rem;
	color: #002e5c;
	line-height: 1.7;
	margin-bottom: 25px;
	position: relative;
	z-index: 2;
}

.testimonial-author {
	font-weight: 700;
	color: #d66493;
	font-size: 1.1rem;
	position: relative;
	z-index: 2;
}

/* Dynamic CTA Sections */
.cta-section {
	background: linear-gradient(135deg, #002e5c, #357abd, #2563eb);
	color: white;
	padding: 80px 50px;
	text-align: center;
	margin: 80px 0;
	border-radius: 30px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 25px 80px rgba(0, 46, 92, 0.3);
}

.cta-section::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
	animation: shine 3s infinite;
}

.cta-buttons {
	display: flex;
	gap: 25px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 40px;
}

.btn {
	padding: 18px 35px;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 700;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: none;
	cursor: pointer;
	font-size: 16px;
	position: relative;
	overflow: hidden;
}

.btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
	transition: left 0.6s;
}

.btn:hover::before {
	left: 100%;
}

.btn-primary {
	background: linear-gradient(135deg, #d66493, #b54d7a);
	color: white;
	box-shadow: 0 8px 25px rgba(214, 100, 147, 0.3);
}

.btn-primary:hover {
	background: linear-gradient(135deg, #e074a3, #d66493);
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 15px 40px rgba(214, 100, 147, 0.4);
}

.btn-outline {
	background: transparent;
	color: white;
	border: 2px solid rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(10px);
}

.btn-outline:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: white;
	color: white;
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Enhanced Lists */
.feature-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 40px;
	margin: 50px 0;
}

.list-section {
	background: linear-gradient(135deg, #ffffff, #f8fafc);
	padding: 40px;
	border-radius: 16px;
	box-shadow: 0 12px 40px rgba(0, 46, 92, 0.08);
	border: 2px solid rgba(0, 46, 92, 0.05);
	transition: all 0.3s ease;
}

.list-section:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 60px rgba(0, 46, 92, 0.12);
	border-color: rgba(214, 100, 147, 0.2);
}

.list-title {
	font-size: 1.4rem;
	font-weight: 700;
	color: #002e5c;
	margin-bottom: 25px;
	position: relative;
	padding-bottom: 10px;
}

.list-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 3px;
	background: linear-gradient(135deg, #d66493, #357abd);
	border-radius: 2px;
}

.list-section ul {
	list-style: none;
	padding: 0;
}

.list-section li {
	padding: 12px 0;
	color: #4a5568;
	border-bottom: 1px solid rgba(0, 46, 92, 0.08);
	position: relative;
	padding-left: 20px;
	transition: all 0.2s ease;
}

.list-section li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #d66493;
	font-weight: bold;
}

.list-section li:hover {
	color: #002e5c;
	padding-left: 25px;
}

.list-section li:last-child {
	border-bottom: none;
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-10px);
	}
	60% {
		transform: translateY(-5px);
	}
}

@keyframes float {
	0%, 100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-20px);
	}
}

@keyframes glow {
	from {
		text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
	}
	to {
		text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
	}
}

@keyframes shine {
	0% {
		transform: rotate(45deg) translate(-200%, -200%);
	}
	50% {
		transform: rotate(45deg) translate(-50%, -50%);
	}
	100% {
		transform: rotate(45deg) translate(200%, 200%);
	}
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.hero-title {
		font-size: 2.8rem;
	}

	.section-title {
		font-size: 2.4rem;
	}

	.features-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.process-steps {
		grid-template-columns: 1fr;
	}

	.process-steps::before {
		display: none;
	}

	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}

	.btn {
		width: 100%;
		max-width: 300px;
	}

	.nav-container {
		display: none;
	}

	.container {
		padding: 0 15px;
	}

	.feature-card,
	.process-step {
		padding: 30px;
	}

	.testimonial {
		padding: 30px;
	}

	.cta-section {
		padding: 50px 30px;
		margin: 50px 0;
	}
}

/* Home Code*/

.hero {
    background: linear-gradient(-45deg, #4a90e2, #357abd, #2563eb, #1e40af);
    background-size: 400% 400%;
    animation: gradientWave 15s ease infinite;
}

@keyframes gradientWave {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Floating particles animation */
.hero::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255,255,255,0.2), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: floatingParticles 20s linear infinite;
}

@keyframes floatingParticles {
    0% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(-10px) translateX(10px); }
    66% { transform: translateY(-20px) translateX(-5px); }
    100% { transform: translateY(-30px) translateX(0px); }
}

/* Hero title typing effect */
.hero-title {
    overflow: hidden;
    border-right: 2px solid rgba(255,255,255,0.8);
    white-space: nowrap;
    animation: 
        typing 3.5s steps(40, end),
        blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: rgba(255,255,255,0.8); }
}

/* 2. LAPTOP SHOWCASE ANIMATIONS */

/* 3D rotation with mouse movement effect */
.showcase-laptop {
    transition: all 0.3s ease;
    animation: laptopFloat 6s ease-in-out infinite;
}

@keyframes laptopFloat {
    0%, 100% { 
        transform: perspective(1000px) rotateY(-15deg) rotateX(10deg) translateY(0px);
    }
    50% { 
        transform: perspective(1000px) rotateY(-10deg) rotateX(5deg) translateY(-20px);
    }
}

/* Interface cards cascading animation */
.interface-card {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    animation: interfaceCardReveal 0.8s ease forwards;
}

.interface-card:nth-child(1) { animation-delay: 0.2s; }
.interface-card:nth-child(2) { animation-delay: 0.4s; }
.interface-card:nth-child(3) { animation-delay: 0.6s; }
.interface-card:nth-child(4) { animation-delay: 0.8s; }

@keyframes interfaceCardReveal {
    to {
        opacity: 1;
        transform: translateY(0px) scale(1);
    }
}

/* Screen glow effect */
.laptop-screen {
    position: relative;
}

.laptop-screen::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #4a90e2, #357abd, #2563eb);
    border-radius: 22px;
    z-index: -1;
    opacity: 0.5;
    animation: screenGlow 3s ease-in-out infinite alternate;
}

@keyframes screenGlow {
    0% { 
        opacity: 0.3;
        transform: scale(1);
    }
    100% { 
        opacity: 0.7;
        transform: scale(1.02);
    }
}

/* 3. FEATURES SECTION ENHANCEMENTS */

/* Staggered reveal animation for feature cards */
.feature-card {
    opacity: 0;
    transform: translateY(50px) rotateX(10deg);
    animation: featureReveal 1s ease forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.3s; }
.feature-card:nth-child(3) { animation-delay: 0.5s; }

@keyframes featureReveal {
    to {
        opacity: 1;
        transform: translateY(0px) rotateX(0deg);
    }
}

/* Icon bounce animation on hover */
.feature-icon {
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.feature-card:hover .feature-icon {
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
    0%, 20%, 60%, 100% { transform: translateY(0) scale(1); }
    40% { transform: translateY(-20px) scale(1.1); }
    80% { transform: translateY(-10px) scale(1.05); }
}

/* Morphing border animation */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: 20px;
    background: linear-gradient(45deg, #4a90e2, #357abd, #2563eb, #1e40af) border-box;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: subtract;
    opacity: 0;
    animation: borderMorph 3s ease-in-out infinite;
}

.feature-card:hover::before {
    opacity: 1;
}

@keyframes borderMorph {
    0%, 100% { 
        border-radius: 20px;
        transform: rotate(0deg);
    }
    25% { 
        border-radius: 30px 10px 30px 10px;
        transform: rotate(1deg);
    }
    50% { 
        border-radius: 10px 30px 10px 30px;
        transform: rotate(-1deg);
    }
    75% { 
        border-radius: 25px 15px 25px 15px;
        transform: rotate(0.5deg);
    }
}

/* 4. BENEFITS SECTION ENHANCEMENTS */

/* Wave effect on benefit items */
.benefit-item {
    position: relative;
    overflow: hidden;
}

.benefit-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(74, 144, 226, 0.1), 
        transparent);
    animation: waveEffect 2s ease-in-out infinite;
}

@keyframes waveEffect {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* Pulsing glow for fundraising highlight */
.fundraising-highlight {
    animation: pulseGlow 2s ease-in-out infinite alternate;
    position: relative;
}

.fundraising-highlight::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
    opacity: 0.5;
    animation: glowPulse 2s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% { 
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
        transform: scale(1);
    }
    100% { 
        box-shadow: 0 0 40px rgba(16, 185, 129, 0.8);
        transform: scale(1.05);
    }
}

@keyframes glowPulse {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

/* 5. VIDEO SECTION ENHANCEMENTS */

/* Play button pulse animation */
.video-container::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    animation: playButtonPulse 2s ease-in-out infinite;
    pointer-events: none;
    z-index: 10;
}

@keyframes playButtonPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

/* 6. BUTTONS AND CTA ENHANCEMENTS */

/* Ripple effect for buttons */
.hero-btn, .btn, .feature-cta-btn {
    position: relative;
    overflow: hidden;
}

.hero-btn::before, .btn::before, .feature-cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-btn:hover::before, .btn:hover::before, .feature-cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Magnetic hover effect */
.hero-btn, .btn, .feature-cta-btn {
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}

.hero-btn:hover, .btn:hover, .feature-cta-btn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* 7. SCROLL-TRIGGERED ANIMATIONS */

/* Intersection Observer animations (add this JS) */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}

.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0px);
}

/* 8. MOUSE FOLLOW EFFECTS */

/* Cursor trail effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.6), transparent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* 9. LOADING ANIMATIONS */

/* Page load animation */
@keyframes pageLoad {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content, .hero-showcase {
    animation: pageLoad 1s ease-out;
}

.hero-showcase {
    animation-delay: 0.3s;
}

/* 10. MOBILE-SPECIFIC ANIMATIONS */

@media (max-width: 768px) {
    /* Reduce motion on mobile for performance */
    .hero {
        animation: gradientWave 20s ease infinite;
    }
    
    .showcase-laptop {
        animation: none;
        transform: scale(0.8);
    }
    
    .feature-card:hover {
        transform: translateY(-5px) scale(1.02);
    }
    
    /* Touch-friendly animations */
    .feature-card, .benefit-item {
        transition: all 0.3s ease;
    }
}

/* 11. ACCESSIBILITY CONSIDERATIONS */

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* 12. INTERACTIVE SECTION ANIMATIONS */

/* Section reveal on scroll */
.section-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.23, 1, 0.320, 1);
}

.section-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children animation */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.stagger-children.animate > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.animate > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.animate > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.animate > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.animate > *:nth-child(5) { transition-delay: 0.5s; }

.stagger-children.animate > * {
    opacity: 1;
    transform: translateY(0);
}

.features {
    background: linear-gradient(135deg, #f8faff 0%, #e8f1ff 100%);
    padding: 100px 0;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(74, 144, 226, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(53, 122, 189, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.feature-card {
    background: linear-gradient(145deg, #ffffff, #f8faff);
    padding: 50px 35px;
    border-radius: 28px;
    box-shadow: 
        0 25px 60px rgba(74, 144, 226, 0.18),
        0 8px 20px rgba(74, 144, 226, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.9);
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(74, 144, 226, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, #4a90e2 0%, #357abd 50%, #2563eb 100%);
    border-radius: 26px 26px 0 0;
    transform: scaleX(0);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(45deg, transparent, rgba(74, 144, 226, 0.04), transparent);
    transform: rotate(45deg);
    transition: transform 1s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover::after {
    transform: rotate(45deg) translateX(50%);
}

.feature-card:hover {
    transform: translateY(-18px) scale(1.03);
    box-shadow: 
        0 35px 80px rgba(74, 144, 226, 0.25),
        0 15px 30px rgba(74, 144, 226, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 1);
    border-color: rgba(74, 144, 226, 0.2);
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 50%, #2563eb 100%);
    border-radius: 28px;
    margin: 0 auto 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: white;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 
        0 15px 35px rgba(74, 144, 226, 0.35),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, #4a90e2, #357abd, #2563eb);
    border-radius: 32px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(-8deg);
    box-shadow: 
        0 25px 50px rgba(74, 144, 226, 0.45),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.feature-card:hover .feature-icon::before {
    opacity: 0.6;
}

.feature-title {
    font-size: 26px;
    font-weight: 900;
    color: #357abd;
    margin-bottom: 25px;
    line-height: 1.3;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.feature-description {
    color: #475569;
    line-height: 1.8;
    font-size: 17px;
    font-weight: 400;
}/* Mobile responsive for hero */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-showcase {
        order: 1;
    }
    
    .showcase-laptop {
        max-width: 500px;
        transform: none;
    }
    
    .showcase-laptop:hover {
        transform: scale(1.02);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0 40px;
        min-height: auto;
    }
    
    .hero-container {
        gap: 40px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .showcase-laptop {
        max-width: 400px;
    }
    
    .laptop-frame {
        padding: 15px 15px 40px 15px;
    }
    
    .interface-content {
        padding: 15px;
        gap: 12px;
    }
    
    .interface-card {
        padding: 12px;
        font-size: 11px;
    }
    
    .interface-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
}

/* Animation improvements */
@keyframes sparkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Benefits section - more visual interest */
.benefits {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 100px 0;
    position: relative;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.benefit-item {
    background: linear-gradient(145deg, #ffffff, #fafbff);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 
        0 15px 40px rgba(59, 130, 246, 0.12),
        0 3px 8px rgba(59, 130, 246, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #10b981, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.benefit-item:hover::before {
    transform: scaleX(1);
}

.benefit-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 25px 60px rgba(59, 130, 246, 0.2),
        0 8px 20px rgba(59, 130, 246, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.benefit-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefit-item p {
    color: #475569;
    line-height: 1.7;
    font-size: 16px;
}

/* Add more character animations */
@keyframes videoPattern {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 200px 200px;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Enhanced fundraising section */
.fundraising-highlight {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 20px 30px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
}

.fundraising-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Better final CTA */
.final-cta {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.3), transparent);
}

.cta-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    color: #357abd;
    margin-bottom: 20px;
    position: relative;
}

.cta-subtitle {
    font-size: 20px;
    color: #64748b;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}/* InfoGrasp 3.0 - Homepage Specific Styles */

/* Hero Section - Product showcase style */
.hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Ccircle cx='20' cy='20' r='2'/%3E%3Ccircle cx='80' cy='80' r='2'/%3E%3Ccircle cx='40' cy='60' r='1'/%3E%3Ccircle cx='60' cy='30' r='1'/%3E%3Ccircle cx='10' cy='70' r='1'/%3E%3Ccircle cx='90' cy='40' r='1'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 100px 100px;
    animation: sparkle 20s linear infinite;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: 4vw;    
	font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(20px, 3vw, 28px);
    margin-bottom: 16px;
    opacity: 0.95;
    font-weight: 600;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: clamp(16px, 2vw, 20px);
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0.3px;
    display: inline-block;
}

.hero-btn--primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.hero-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #34d399, #10b981);
}

.hero-btn--secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-btn--secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Product showcase */
.hero-showcase {
    position: relative;
    z-index: 2;
}

.showcase-container {
    position: relative;
    perspective: 1200px;
}

.showcase-laptop {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    transform: rotateY(-15deg) rotateX(10deg);
    transition: all 0.6s ease;
}

.showcase-laptop:hover {
    transform: rotateY(-10deg) rotateX(5deg) scale(1.05);
}

.laptop-frame {
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 20px 20px 8px 8px;
    padding: 20px 20px 60px 20px;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.4),
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.laptop-frame::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 20px;
    background: linear-gradient(145deg, #333, #1a1a1a);
    border-radius: 0 0 8px 8px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.laptop-screen {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 0 0 3px #000,
        0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.screen-content {
    background: white;
    aspect-ratio: 16 / 10;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.infograsp-interface {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8faff 0%, #e8f1ff 100%);
    border-radius: 8px;
    position: relative;
    border: 1px solid rgba(74, 144, 226, 0.1);
}

.interface-header {
    background: linear-gradient(135deg, #4a90e2, #357abd);
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.interface-content {
    padding: 20px;
    height: calc(100% - 50px);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.interface-card {
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.1);
    border-left: 4px solid #4a90e2;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
}

.interface-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #4a90e2, #357abd);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.interface-text {
    flex: 1;
}

.interface-title {
    font-weight: 600;
    margin-bottom: 2px;
}

.interface-desc {
    color: #6b7280;
    font-size: 11px;
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: heroSubtitleFloat 6s ease-in-out infinite 0.5s;
}

.hero-cta {
    animation: heroCTAFloat 6s ease-in-out infinite 1s;
    display: flex;
    align-items: center;
    gap: 30px;
}

.hero-cta-pills {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: heroCTAPillsFloat 8s ease-in-out infinite 1.5s;
}

.hero-pill {
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: none;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-pill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.8s ease;
}

.hero-pill:hover::before {
    left: 100%;
}

.hero-pill:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.hero-pill-demo {
    background: linear-gradient(135deg, rgba(82, 196, 26, 0.9), rgba(56, 158, 13, 0.9));
    color: white;
    animation: heroPillDemo 3s ease-in-out infinite;
}

.hero-pill-demo:hover {
    background: linear-gradient(135deg, rgba(115, 209, 61, 0.95), rgba(82, 196, 26, 0.95));
}

.hero-pill-call {
    background: linear-gradient(135deg, rgba(24, 144, 255, 0.9), rgba(9, 109, 217, 0.9));
    color: white;
    animation: heroPillCall 3s ease-in-out infinite 0.5s;
}

.hero-pill-call:hover {
    background: linear-gradient(135deg, rgba(64, 169, 255, 0.95), rgba(24, 144, 255, 0.95));
}

.hero-pill-email {
    background: linear-gradient(135deg, rgba(114, 46, 209, 0.9), rgba(83, 29, 171, 0.9));
    color: white;
    animation: heroPillEmail 3s ease-in-out infinite 1s;
}

.hero-pill-email:hover {
    background: linear-gradient(135deg, rgba(146, 84, 222, 0.95), rgba(114, 46, 209, 0.95));
}

/* Features Grid */
.features {
    background: linear-gradient(135deg, #fbfbfb 0%, #f5f7fa 100%);
    padding: 100px 0;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.features-intro {
    text-align: center;
    margin-bottom: 60px;
}

.features-diagram {
    max-width: 900px;
    margin: 0 auto 60px;
    position: relative;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.03), rgba(53, 122, 189, 0.05));
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.features-diagram img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.1));
}

.features-diagram:hover img {
    transform: scale(1.02);
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.15));
}

.section-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(31, 38, 135, 0.15),
        0 1px 2px rgba(31, 38, 135, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    animation: fadeInUp 0.6s ease forwards;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(31, 38, 135, 0.25),
        0 4px 8px rgba(31, 38, 135, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4a90e2, #357abd);
    border-radius: 12px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    animation: floatPulse 4s ease-in-out infinite;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #357abd;
    margin-bottom: 15px;
}

.feature-description {
    color: #666;
    line-height: 1.6;
}

/* Comprehensive Features - More visually interesting */
.comprehensive-features {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.comprehensive-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='20' cy='20' r='1'/%3E%3Ccircle cx='80' cy='80' r='1'/%3E%3Ccircle cx='40' cy='60' r='1'/%3E%3Ccircle cx='60' cy='30' r='1'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 150px 150px;
    animation: float 25s ease-in-out infinite;
}

.comprehensive-features .section-title {
    color: white;
    text-align: center;
    margin-bottom: 80px;
}

.comprehensive-features .section-title::after {
    background: linear-gradient(90deg, #4a90e2, #60a5fa);
}

.feature-section {
    background: rgba(255, 255, 255, 0.98);
    margin-bottom: 50px;
    border-radius: 30px;
    padding: 60px 50px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, #4a90e2 0%, #60a5fa 50%, #3b82f6 100%);
    border-radius: 30px 30px 0 0;
}

.feature-section::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(45deg, transparent, rgba(74, 144, 226, 0.02), transparent);
    transform: rotate(45deg);
    transition: transform 0.8s ease;
}

.feature-section:hover::after {
    transform: rotate(45deg) translateX(50%);
}

.feature-section:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.2),
        0 10px 25px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.feature-section h1 {
    color: #1e293b;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.2;
    position: relative;
}

.feature-section p {
    color: #475569;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.feature-section a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-section a:hover {
    border-bottom-color: #3b82f6;
    transform: translateX(8px);
}

.features-cta-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.features-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #52c41a, #1890ff, #722ed1);
}

.features-cta-title {
    color: #357abd;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 30px;
}

.features-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-cta-btn {
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: none;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.feature-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.feature-cta-btn:hover::before {
    left: 100%;
}

.feature-cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-cta-demo {
    background: linear-gradient(135deg, #52c41a, #389e0d);
    color: white;
}

.feature-cta-demo:hover {
    background: linear-gradient(135deg, #73d13d, #52c41a);
}

.feature-cta-call {
    background: linear-gradient(135deg, #1890ff, #096dd9);
    color: white;
}

.feature-cta-call:hover {
    background: linear-gradient(135deg, #40a9ff, #1890ff);
}

.feature-cta-email {
    background: linear-gradient(135deg, #722ed1, #531dab);
    color: white;
}

.feature-cta-email:hover {
    background: linear-gradient(135deg, #9254de, #722ed1);
}

/* Benefits Section */
.benefits {
    background: linear-gradient(135deg, #e8f4fd 0%, #d6ebfa 100%);
    padding: 80px 0;
}

.fundraising-showcase {
    text-align: center;
    margin-bottom: 60px;
}

.fundraising-image {
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.fundraising-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.fundraising-image:hover img {
    transform: scale(1.02);
}

.fundraising-highlight {
    background: linear-gradient(135deg, #52c41a, #389e0d);
    color: white;
    padding: 20px 30px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(82, 196, 26, 0.3);
    animation: fundraisingPulse 3s ease-in-out infinite;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease forwards;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.benefit-title {
    font-size: 18px;
    font-weight: 700;
    color: #357abd;
    margin-bottom: 10px;
}

/* Video Section - Make it more engaging */
.video-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 100px 0;
    text-align: center;
    color: white;
    position: relative;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M20,20 L80,20 L80,80 L20,80 Z' stroke='%23ffffff' stroke-opacity='0.05' stroke-width='1' fill='none'/%3E%3Ccircle cx='50' cy='50' r='20' stroke='%23ffffff' stroke-opacity='0.05' stroke-width='1' fill='none'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 200px 200px;
    animation: videoPattern 30s linear infinite;
}

.video-section .section-title {
    color: white;
    margin-bottom: 20px;
}

.video-section .section-title::after {
    background: linear-gradient(90deg, #4a90e2, #357abd);
}

.video-section p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.4);
}

.video-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #4a90e2, #357abd);
    border-radius: 22px;
    z-index: -1;
}

.video-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Interfaces Section */
.interfaces {
    background: linear-gradient(135deg, #357abd 0%, #2c5f8a 100%);
    padding: 80px 0;
    color: white;
}

.interfaces-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.interface-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.6s ease forwards;
}

.interface-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.interface-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.interface-description {
    opacity: 0.9;
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    background: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 36px;
    font-weight: 800;
    color: #357abd;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .hero-cta {
        gap: 25px;
    }

    .hero-cta-pills {
        gap: 15px;
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-pill {
        padding: 14px 40px;
        font-size: 15px;
        width: 100%;
        text-align: center;
    }

    .features-diagram {
        padding: 20px 10px;
        margin-bottom: 40px;
    }

    .fundraising-image {
        padding: 20px;
        margin-bottom: 30px;
    }

    .fundraising-highlight {
        font-size: 16px;
        padding: 15px 25px;
    }

    .feature-section {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .feature-section h1 {
        font-size: 24px;
    }

    .features-cta-section {
        padding: 30px 20px;
        margin-top: 40px;
    }

    .features-cta-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .feature-cta-btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 32px;
    }

    .hero {
        padding: 40px 0;
    }

    .features, .benefits, .video-section, .interfaces, .final-cta {
        padding: 40px 0;
    }

    .video-container iframe {
        height: 250px;
    }
}

/* Hero Animations */
@keyframes heroBackgroundFloat {
    0%, 100% {
        background-position: center center;
        transform: scale(1);
    }
    50% {
        background-position: center 10px;
        transform: scale(1.02);
    }
}

@keyframes heroPatternMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 200px 200px;
    }
}

@keyframes heroOverlayPulse {
    0%, 100% {
        opacity: 0.15;
    }
    50% {
        opacity: 0.08;
    }
}

@keyframes heroTitleFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes heroSubtitleFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes heroCTAFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-2px);
    }
}

@keyframes heroCTAPillsFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes heroPillDemo {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        box-shadow: 0 6px 20px rgba(82, 196, 26, 0.3);
    }
    50% {
        transform: translateY(-3px) rotate(1deg);
        box-shadow: 0 10px 25px rgba(82, 196, 26, 0.4);
    }
}

@keyframes heroPillCall {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        box-shadow: 0 6px 20px rgba(24, 144, 255, 0.3);
    }
    50% {
        transform: translateY(-3px) rotate(-1deg);
        box-shadow: 0 10px 25px rgba(24, 144, 255, 0.4);
    }
}

@keyframes heroPillEmail {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        box-shadow: 0 6px 20px rgba(114, 46, 209, 0.3);
    }
    50% {
        transform: translateY(-3px) rotate(0.5deg);
        box-shadow: 0 10px 25px rgba(114, 46, 209, 0.4);
    }
}

@keyframes fundraisingPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(82, 196, 26, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(82, 196, 26, 0.4);
    }
}

/* Animation Delays */
.feature-card:nth-child(2) { 
    animation-delay: 0.1s; 
}

.feature-card:nth-child(3) { 
    animation-delay: 0.2s; 
}

.benefit-item:nth-child(2) { 
    animation-delay: 0.1s; 
}

.benefit-item:nth-child(3) { 
    animation-delay: 0.2s; 
}

.benefit-item:nth-child(4) { 
    animation-delay: 0.3s; 
}

.feature-card:nth-child(2) .feature-icon { 
    animation-delay: 1s; 
}

.feature-card:nth-child(3) .feature-icon { 
    animation-delay: 2s; 
}

@media (max-width: 768px) {
    .mobile-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .mobile-nav ul {
        list-style: none;
        padding: 20px 0;
        margin: 0;
    }

    .mobile-nav a {
        display: block;
        padding: 12px 24px;
        text-decoration: none;
        color: #4a5568;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-size: 14px;
        transition: all 0.3s ease;
    }

    .mobile-nav a:hover,
    .mobile-nav a.active {
        color: #2563eb;
        background: rgba(37, 99, 235, 0.05);
    }

    /* Hero Section Mobile Centering */
    .hero {
        text-align: center;
        padding: 60px 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-title {
        font-size: 4vw;
        line-height: 1.2;
        margin-bottom: 20px;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 12px;
        text-align: center;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
        text-align: center;
        max-width: 90%;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    .hero-btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
        font-size: 0.95rem;
        text-align: center;
    }

    /* Section Titles Mobile Centering */
    .section-title {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 20px;
    }

    /* Features Section Mobile */
    .features-intro {
        text-align: center;
    }

    .features-intro p {
        font-size: 1rem;
        margin-bottom: 40px;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-card {
        padding: 24px;
        text-align: center;
    }

    .feature-title {
        font-size: 1.2rem;
        text-align: center;
    }

    .feature-description {
        text-align: center;
        font-size: 0.95rem;
    }

    /* Video Section Mobile */
    .video-section {
        text-align: center;
        padding: 80px 0;
    }

    .video-section p {
        text-align: center;
        font-size: 16px;
    }

    .video-container {
        margin: 0 10px;
    }

    /* Comprehensive Features Mobile */
    .comprehensive-features {
        padding: 80px 0;
    }

    .feature-section {
        padding: 24px;
        margin: 24px 0;
        text-align: center;
    }

    .feature-section h1 {
        font-size: 1.4rem;
        text-align: center;
        margin-bottom: 16px;
    }

    .feature-section p {
        text-align: center;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .feature-section a {
        display: block;
        text-align: center;
        margin-top: 16px;
    }

    .features-cta-section {
        text-align: center;
    }

    .features-cta-title {
        font-size: 1.6rem;
        text-align: center;
    }

    .features-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .feature-cta-btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
        text-align: center;
    }

    /* Benefits Section Mobile */
    .benefits {
        padding: 80px 0;
    }

    .fundraising-showcase {
        text-align: center;
    }

    .fundraising-highlight {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .fundraising-showcase p {
        text-align: center;
        font-size: 16px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .benefit-item {
        padding: 24px;
        text-align: center;
    }

    .benefit-title {
        font-size: 1.2rem;
        text-align: center;
    }

    .benefit-item p {
        text-align: center;
        font-size: 0.95rem;
    }

    /* Interfaces Section Mobile */
    .interfaces {
        padding: 80px 0;
    }

    .interfaces-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .interfaces .interface-card {
        padding: 24px;
        text-align: center;
    }

    .interfaces .interface-title {
        font-size: 1.2rem;
        text-align: center;
    }

    .interfaces .interface-description {
        text-align: center;
        font-size: 0.95rem;
    }

    /* Final CTA Mobile */
    .final-cta {
        padding: 80px 0;
        text-align: center;
    }

    .cta-title {
        font-size: 2rem;
        text-align: center;
    }

    .cta-subtitle {
        font-size: 1rem;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        justify-content: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
        text-align: center;
    }

    /* Container Padding */
    .container {
        padding: 0 16px;
    }

    /* Laptop Showcase Mobile */
    .showcase-laptop {
        transform: scale(0.8);
        margin: -20px 0;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .container {
        padding: 0 12px;
    }

    .showcase-laptop {
        transform: scale(0.7);
        margin: -30px 0;
    }

    .feature-section h1 {
        font-size: 1.2rem;
    }
}
/* Fix for Features Section Covering Hero When Scrolling Up */

/* Ensure proper z-index layering */
.hero {
    position: relative;
    z-index: 10; /* Higher than features section */
    margin-top: 80px;
    padding: 120px 0;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    overflow: hidden;
}

.features {
    position: relative;
    z-index: 5; /* Lower than hero */
    background: #f8fafc;
    padding: 120px 0;
}

/* Ensure all other sections have proper z-index */
.video-section,
.comprehensive-features,
.benefits,
.interfaces,
.final-cta {
    position: relative;
    z-index: 5;
}

/* Header should be highest */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000; /* Highest z-index */
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Mobile specific fixes */
@media (max-width: 768px) {
    .hero {
        z-index: 10;
        margin-top: 70px; /* Adjust for mobile header */
        padding: 80px 0;
    }
    
    .features {
        z-index: 5;
        padding: 80px 0;
    }
    
    /* Ensure mobile nav doesn't interfere */
    .mobile-nav {
        z-index: 999; /* Just below header */
    }
}

/* Additional fix: Ensure no negative margins cause overlap */
.features,
.video-section,
.comprehensive-features,
.benefits,
.interfaces,
.final-cta {
    margin-top: 0;
    margin-bottom: 0;
}

/* Prevent any transform issues */
.hero,
.features {
    transform: none !important;
    will-change: auto;
}

/* Login Section */
.login-section {
    padding: 60px 0;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease forwards;
}

.login-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #52c41a, #1890ff, #722ed1);
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-title {
    font-size: 32px;
    font-weight: 800;
    color: #357abd;
    margin-bottom: 10px;
}

.login-subtitle {
    color: #666;
    font-size: 16px;
}

/* Form Styles */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-weight: 600;
    color: #357abd;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input {
    padding: 15px 20px;
    border: 2px solid rgba(53, 122, 189, 0.2);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.form-input:focus {
    outline: none;
    border-color: #357abd;
    box-shadow: 0 0 0 3px rgba(53, 122, 189, 0.1);
    background: white;
}

.form-input::placeholder {
    color: #999;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #357abd;
}

.checkbox-group label {
    font-size: 14px;
    color: #666;
}

.forgot-password {
    color: #357abd;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #4a90e2;
}

.login-btn {
    background: linear-gradient(135deg, #357abd, #4a90e2);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(53, 122, 189, 0.3);
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(53, 122, 189, 0.4);
    background: linear-gradient(135deg, #4a90e2, #5ba0f2);
}

.login-divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.login-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(53, 122, 189, 0.3), transparent);
}

.login-divider span {
    background: rgba(255, 255, 255, 0.9);
    padding: 0 20px;
    color: #666;
    font-size: 14px;
}

.login-links {
    text-align: center;
    margin-top: 30px;
}

.login-links a {
    color: #357abd;
    text-decoration: none;
    font-weight: 600;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.login-links a:hover {
    color: #4a90e2;
}

/* Access Options */
.access-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.access-btn {
    padding: 20px 25px;
    border: 2px solid #357abd;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.9));
    color: #357abd;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: left;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(53, 122, 189, 0.1);
}

.access-btn:hover {
    background: linear-gradient(135deg, #357abd, #4a90e2);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(53, 122, 189, 0.3);
}

.access-btn-primary:hover {
    background: linear-gradient(135deg, #52c41a, #389e0d);
    border-color: #52c41a;
}

.access-btn-secondary:hover {
    background: linear-gradient(135deg, #1890ff, #096dd9);
    border-color: #1890ff;
}

.access-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.access-content {
    flex: 1;
}

.access-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.access-desc {
    font-size: 14px;
    opacity: 0.8;
}

.access-btn:hover .access-desc {
    opacity: 0.9;
}

/* Mobile Responsive Styles for Login */
@media (max-width: 768px) {
    .cta-buttons {
        display: none;
    }

    .login-container {
        padding: 30px 25px;
    }

    .login-title {
        font-size: 28px;
    }

    .access-options {
        gap: 15px;
    }

    .access-btn {
        padding: 18px 20px;
        font-size: 15px;
    }

    .access-title {
        font-size: 16px;
    }

    .access-desc {
        font-size: 13px;
    }
}

/* InfoGrasp 3.0 - Pricing Page Specific Styles */

.pricing-section {
    padding: 120px 0;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: floatingParticles 20s linear infinite;
}

@keyframes floatingParticles {
    0% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(-10px) translateX(10px); }
    66% { transform: translateY(-20px) translateX(-5px); }
    100% { transform: translateY(-30px) translateX(0px); }
}

/* Main Pricing Container */
.pricing-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    width: 100%;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease forwards;
    margin: 0 auto;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.pricing-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #10b981 0%, #4a90e2 50%, #2563eb 100%);
    border-radius: 30px 30px 0 0;
}

.pricing-container::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(45deg, transparent, rgba(74, 144, 226, 0.02), transparent);
    transform: rotate(45deg);
    animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Header */
.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #2563eb;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #4a90e2 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.pricing-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4a90e2, #2563eb);
    border-radius: 2px;
}

/* Main Highlight */
.pricing-highlight {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
    animation: pulseGlow 3s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% { 
        box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
        transform: scale(1);
    }
    100% { 
        box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
        transform: scale(1.02);
    }
}

.pricing-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: highlightShimmer 3s infinite;
}

@keyframes highlightShimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* No Costs Section - Updated with SVG Icons */
.no-costs-section {
    margin: 40px 0;
    display: grid;
    grid-template-columns: repeat(1, minmax(280px, 1fr));
    gap: 20px;
}

.cost-item {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: #475569;
    padding: 20px 20px 20px 60px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1rem;
    text-align: left;
    box-shadow: 0 8px 25px rgba(71, 85, 105, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

/* SVG Icon for better mobile compatibility */
.cost-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ef4444' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m15 9-6 6'/%3E%3Cpath d='m9 9 6 6'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.cost-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
    border-radius: 16px 16px 0 0;
}

.cost-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(71, 85, 105, 0.15);
    border-color: #cbd5e1;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

/* Section Headers */
.included-header {
    background: linear-gradient(135deg, #4a90e2 0%, #2563eb 100%);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 700;
    font-size: 1.3rem;
    margin: 40px 0 30px 0;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
    position: relative;
    overflow: hidden;
}

.included-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: headerShimmer 4s infinite;
}

@keyframes headerShimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Included Features - Updated with SVG Icons */
.included-features {
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(1, minmax(280px, 1fr));
    gap: 20px;
}

.feature-item {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    color: #15803d;
    padding: 20px 20px 20px 60px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1rem;
    text-align: left;
    box-shadow: 0 8px 25px rgba(21, 128, 61, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #dcfce7;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2315803d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.feature-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(21, 128, 61, 0.25);
    border-color: #86efac;
}

/* Pricing Note - Updated with SVG Icon */
.pricing-note {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    padding: 25px 35px 25px 70px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: left;
    margin: 40px auto;
    box-shadow: 0 10px 30px rgba(146, 64, 14, 0.15);
    max-width: 600px;
    border: 2px solid #fef3c7;
    position: relative;
    overflow: hidden;
}

.pricing-note::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 25px;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f59e0b' stroke='%23d97706' stroke-width='1.5'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 6v6l4 2'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* CTA Buttons */
.pricing-buttons-top,
.pricing-buttons-bottom {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.pricing-btn {
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: none;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    min-width: 200px;
    text-align: center;
}

.pricing-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.pricing-btn:hover::before {
    left: 100%;
}

.pricing-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.pricing-btn-demo {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.pricing-btn-demo:hover {
    background: linear-gradient(135deg, #34d399, #10b981);
}

.pricing-btn-call {
    background: linear-gradient(135deg, #4a90e2, #2563eb);
    color: white;
}

.pricing-btn-call:hover {
    background: linear-gradient(135deg, #60a5fa, #4a90e2);
}

.pricing-btn-email {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}

.pricing-btn-email:hover {
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
}

/* Dividers */
.divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
    margin: 40px 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #4a90e2, #2563eb);
    border-radius: 2px;
}

/* Pricing Links */
.pricing-links {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

.pricing-links a {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
    margin: 0 15px;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4a90e2;
    transition: width 0.3s ease;
}

.pricing-links a:hover {
    color: #2563eb;
    transform: translateY(-1px);
}

.pricing-links a:hover::after {
    width: 100%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pricing-section {
        padding: 80px 0;
    }

    .pricing-container {
        padding: 40px 25px;
        border-radius: 20px;
    }

    .pricing-title {
        font-size: 2.5rem;
    }

    .pricing-highlight,
    .included-header {
        font-size: 1.1rem;
        padding: 15px 25px;
    }

    .pricing-note {
        font-size: 1rem;
        padding: 20px 20px 20px 55px;
        text-align: left;
    }

    .pricing-note::before {
        width: 24px;
        height: 24px;
        left: 20px;
    }

    .no-costs-section,
    .included-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .cost-item,
    .feature-item {
        font-size: 0.95rem;
        padding: 18px 18px 18px 55px;
    }

    .cost-item::before,
    .feature-item::before {
        width: 20px;
        height: 20px;
        left: 18px;
    }

    .pricing-buttons-top,
    .pricing-buttons-bottom {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .pricing-btn {
        width: 100%;
        max-width: 300px;
        padding: 14px 24px;
    }

    .pricing-links {
        margin-top: 30px;
    }

    .pricing-links a {
        display: block;
        margin: 10px 0;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered animations */
.cost-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.cost-item:nth-child(1) { animation-delay: 0.1s; }
.cost-item:nth-child(2) { animation-delay: 0.2s; }
.cost-item:nth-child(3) { animation-delay: 0.3s; }
.cost-item:nth-child(4) { animation-delay: 0.4s; }

.feature-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.feature-item:nth-child(1) { animation-delay: 0.5s; }
.feature-item:nth-child(2) { animation-delay: 0.6s; }
.feature-item:nth-child(3) { animation-delay: 0.7s; }
.feature-item:nth-child(4) { animation-delay: 0.8s; }
.feature-item:nth-child(5) { animation-delay: 0.9s; }
.feature-item:nth-child(6) { animation-delay: 1.0s; }

/* Testimonials Section */
.testimonials-section {
    padding: 60px 0;
    min-height: calc(100vh - 200px);
    background: linear-gradient(135deg, #f8faff 0%, #e8f1ff 100%);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(74, 144, 226, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(53, 122, 189, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease forwards;
}

.testimonials-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #52c41a, #1890ff, #722ed1);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-title {
    font-size: 36px;
    font-weight: 800;
    color: #357abd;
    margin-bottom: 15px;
}

.testimonials-subtitle {
    color: #666;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: linear-gradient(145deg, #ffffff, #f8faff);
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 
        0 8px 25px rgba(74, 144, 226, 0.12),
        0 2px 6px rgba(74, 144, 226, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(74, 144, 226, 0.1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4a90e2 0%, #357abd 50%, #2563eb 100%);
    border-radius: 15px 15px 0 0;
}

.testimonial-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(74, 144, 226, 0.2),
        0 5px 15px rgba(74, 144, 226, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.testimonial-quote {
    font-size: 16px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 50px;
    color: #4a90e2;
    position: absolute;
    top: -15px;
    left: -8px;
    font-family: serif;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4a90e2, #357abd);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.author-info h4 {
    color: #357abd;
    font-weight: 700;
    margin-bottom: 3px;
    font-size: 16px;
}

.author-info p {
    color: #666;
    font-size: 13px;
    margin: 0;
}

/* Pricing Showcase */
.pricing-showcase {
    background: linear-gradient(145deg, #ffffff, #f8faff);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 
        0 15px 40px rgba(74, 144, 226, 0.12),
        0 3px 8px rgba(74, 144, 226, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(74, 144, 226, 0.1);
    position: relative;
    overflow: hidden;
    text-align: center;
    margin-top: 30px;
}

.pricing-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #52c41a, #1890ff, #722ed1);
    border-radius: 20px 20px 0 0;
}

.pricing-highlight {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 25px;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.pricing-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 30px 0;
    text-align: left;
}

.no-costs-section h3,
.included-section h3 {
    color: #357abd;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.costs-list,
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.costs-list li,
.features-list li {
    padding: 6px 0;
    color: #475569;
    font-weight: 600;
    position: relative;
    padding-left: 20px;
    font-size: 14px;
}

.costs-list li::before,
.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.pricing-note {
    color: #666;
    font-size: 14px;
    margin-top: 15px;
    font-weight: 600;
}

.pricing-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 25px 0;
}

.pricing-btn {
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: none;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.pricing-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.pricing-btn:hover::before {
    left: 100%;
}

.pricing-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-demo {
    background: linear-gradient(135deg, #52c41a, #389e0d);
    color: white;
}

.btn-demo:hover {
    background: linear-gradient(135deg, #73d13d, #52c41a);
}

.btn-call {
    background: linear-gradient(135deg, #1890ff, #096dd9);
    color: white;
}

.btn-call:hover {
    background: linear-gradient(135deg, #40a9ff, #1890ff);
}

.btn-email {
    background: linear-gradient(135deg, #722ed1, #531dab);
    color: white;
}

.btn-email:hover {
    background: linear-gradient(135deg, #9254de, #722ed1);
}

.divider {
    width: 100%;
    height: 3px;
    border-top: 2px dotted #357abd;
    border-bottom: 2px dotted #357abd;
    margin: 20px 0;
    opacity: 0.7;
}

.testimonials-links {
    text-align: center;
    margin-top: 30px;
}

.testimonials-links a {
    color: #357abd;
    text-decoration: none;
    font-weight: 600;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.testimonials-links a:hover {
    color: #4a90e2;
}

/* Mobile Responsive Styles for Testimonials */
@media (max-width: 768px) {
    .testimonials-container {
        padding: 30px 20px;
    }

    .testimonials-title {
        font-size: 28px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

    .testimonial-card {
        padding: 25px 20px;
    }

    .pricing-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .pricing-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .pricing-btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    .author-avatar {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .author-info h4 {
        font-size: 15px;
    }

    .author-info p {
        font-size: 12px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card {
    animation: fadeInUp 0.6s ease forwards;
}

.testimonial-card:nth-child(2) { animation-delay: 0.1s; }
.testimonial-card:nth-child(3) { animation-delay: 0.2s; }
.testimonial-card:nth-child(4) { animation-delay: 0.3s; }
.testimonial-card:nth-child(5) { animation-delay: 0.4s; }
.testimonial-card:nth-child(6) { animation-delay: 0.5s; }

/* Enhanced Features Page - Image & Video Integration */

/* Step-by-step process with images */
.process-steps {
    display: grid;
    gap: 60px;
    margin: 60px 0;
    max-width: max-content;
	margin-left: auto;
    margin-right: auto;
}

.process-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 46, 92, 0.1);
    border: 2px solid rgba(0, 46, 92, 0.05);
    transition: all 0.3s ease;
}

.process-step:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.process-step:nth-child(even) .step-content {
    order: 2;
}

.process-step:nth-child(even) .step-image {
    order: 1;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 46, 92, 0.15);
}

.step-content {
    text-align: left;
}

.step-image {
    text-align: center;
}

.step-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.step-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* Video containers */
.video-showcase {
    text-align: center;
    margin: 60px 0;
    padding: 40px;
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.video-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(74, 144, 226, 0.1), transparent);
}

.video-showcase iframe {
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    max-width: 100%;
    height: 360px;
    position: relative;
    z-index: 2;
}

.video-intro {
    color: white;
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

/* Feature cards with images */
.feature-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 40px 0;
}

.feature-with-image:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.feature-with-image:nth-child(even) .feature-content {
    order: 2;
}

.feature-with-image:nth-child(even) .feature-image {
    order: 1;
}

.feature-image {
    text-align: center;
}

.feature-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .process-step,
    .process-step:nth-child(even),
    .feature-with-image,
    .feature-with-image:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px;
    }
    
    .step-content,
    .step-image,
    .feature-content,
    .feature-image {
        order: unset !important;
        text-align: center;
    }
    
    .video-showcase {
        padding: 20px;
        margin: 40px 0;
    }
    
    .video-showcase iframe {
        height: 250px;
    }
}

/* InfoGrasp 3.0 - Updated Hero Section with Perfect Centering */

.hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center; /* Added for centering */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Ccircle cx='20' cy='20' r='2'/%3E%3Ccircle cx='80' cy='80' r='2'/%3E%3Ccircle cx='40' cy='60' r='1'/%3E%3Ccircle cx='60' cy='30' r='1'/%3E%3Ccircle cx='10' cy='70' r='1'/%3E%3Ccircle cx='90' cy='40' r='1'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 100px 100px;
    animation: sparkle 20s linear infinite;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 40px;
}

.hero-content {
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.hero-title {
    font-size: 3vw;;   
	font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 100%;
}

.hero-subtitle {
    font-size: clamp(20px, 3vw, 28px);
    margin-bottom: 16px;
    opacity: 0.95;
    font-weight: 600;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 100%;
}

.hero-description {
    font-size: clamp(16px, 2vw, 20px);
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Update the specific Text Messages styling */
.text-messages-hero .hero-title,
.text-messages-hero .hero-subtitle,
.text-messages-hero .hero-description {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile responsive improvements */
@media (max-width: 768px) {
    .hero {
        text-align: center;
        padding: 60px 0 40px;
    }
    
    .hero-container {
        padding: 0 16px;
        gap: 30px;
    }
    
    .hero-content {
        text-align: center;
        width: 100%;
    }
    
    .hero-title {
        font-size: 4vw;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: clamp(16px, 5vw, 24px);
        text-align: center;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: clamp(14px, 4vw, 18px);
        text-align: center;
        margin-bottom: 30px;
        max-width: 90%;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
    }
}

/* Ensure all section titles are centered */
.section-title {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
}

/* Demo section centering fix */
.demo-section {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-container {
    text-align: center;
    margin: 0 auto;
}

.demo-title,
.demo-subtitle {
    text-align: center;
}

/* Pricing section centering */
.pricing-section {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-container {
    text-align: center;
    margin: 0 auto;
}

.pricing-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Features section centering */
.features {
    text-align: center;
}

.features-intro {
    text-align: center;
}

.features-intro p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
}

/* Testimonials centering */
.testimonials-section {
    text-align: center;
}

.testimonials-container {
    text-align: center;
    margin: 0 auto;
}

.testimonials-title,
.testimonials-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
