/* Global Styles */
:root {
    --primary-color: #1a73e8;
    --primary-color-rgb: 26, 115, 232;
    --secondary-color: #4285f4;
    --accent-color: #0d47a1;
    --light-color: #f3f4f6;
    --dark-color: #1f2937;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --border-radius: 12px;
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Account for fixed header */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: #fff;
    padding-top: 70px; /* Account for fixed header */
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

p {
    margin-bottom: 1rem;
}

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

section {
    padding: 5rem 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-nav{
    background-color: white;
    border: 1px solid var(--primary-color);
    padding: 0.5rem 1rem;
}

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


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

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

.btn-secondary {
    background-color: var(--light-color);
    color: var(--dark-color);
}

.btn-secondary:hover {
    background-color: var(--gray-300);
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
}

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

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

/* Header */
header {
    background-color: var(--gray-100);
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: transform 0.3s ease, border-bottom-color 0.3s ease;
    border-bottom: 1px solid rgba(18, 18, 18, 0.134);
}

/* White background only for the home page */
.home-page header {
    background-color: white;
}



header.nav-hidden {
    transform: translateY(-100%);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    position: relative;
}

.logo h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--primary-color);
}

nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

nav ul {
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 1.5rem;
}

.header-cta {
    margin-left: auto;
}

nav ul li a {
    color: var(--gray-700);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

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

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

nav ul li a.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background-color: white;
    padding: 10rem 0;
    
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-image {
    box-shadow: rgba(87, 89, 92, 0.2) 0px 8px 24px;
    border-radius: 8px;
    overflow: hidden;
}

.hero-image img {
    display: block;
    max-width: 100%;
}

.h-text-content {
    width: 80%;
    max-width: 800px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-align: center;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(34, 34, 34, 0.753);
    text-align: center;
    line-height: 22px;
}

.btn-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.hero-content .btn {
    margin-right: 0;
    margin-bottom: 1rem;
}

/* Features Section */
.features {
    background-color: white;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.features-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.feature-tagline {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.features-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.feature-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

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

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    transition: transform 0.3s ease;
}

/* Hover effect removed */

/* Hover effect removed */

.feature-icon-box {
    width: 350px;
    height: 350px;
    background-color: var(--gray-100);
    border-radius: 1rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.feature-content {
    text-align: center;
    padding: 0 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--gray-900);
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Win Back Your Time Section */
.how-it-works {
    background-color: white;
    padding: 6rem 0;
}

.how-it-works .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.win-back-content {
    max-width: 550px;
}

.win-back-tagline {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgb(206, 134, 2);
    margin-bottom: 1rem;
    display: inline-block;
}

.win-back-tagline i {
    margin-right: 6px;
}

.win-back-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.win-back-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--gray-600);
}

.image-placeholder {
    width: 450px;
    height: 350px;
    background-color: var(--gray-200);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-weight: 500;
}

@media screen and (max-width: 1024px) {
    .how-it-works .container {
        flex-direction: column;
        text-align: center;
    }
    
    .win-back-content {
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .image-placeholder {
        width: 100%;
        height: 300px;
    }
}

/* Second Feature Section */

.second-feature {
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.second-feature-description{
    font-size: 1rem;
    color: var(--gray-600);
}

.second-feature-title{
    font-size: 2rem;
    color: var(--gray-900);
}


.second-feature-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;

}

.chip{
    color: rgb(39, 125, 255);
    border-radius: 16px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

.image-container{
    margin-top: 80px;
    width: 1100px;
    height: 450px;
    margin-left: auto;
    margin-right: auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.comparison-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.before-image,
.after-image {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.before-image {
    left: 0;
    z-index: 1;
    width: 50%;
    background-color: red;
}

.after-image {
    right: 0;
    z-index: 0;
    background-color: blue;
}

.before-image img,
.after-image img {
    position: absolute;
    top: 50%;
    left: 0;
    height: 100%;
    width: auto;
    transform: translateY(-50%);
    max-width: none;
    transition: none;
}

.slider-handle {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    z-index: 2;
    cursor: ew-resize;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.slider-line {
    position: absolute;
    width: 4px;
    height: 100%;
    background-color: white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.slider-button {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.slider-button i {
    font-size: 12px;
    color: var(--primary-color);
}

.slider-button i:first-child {
    margin-right: 6px;
}

.slider-button i:last-child {
    margin-left: 6px;
}

.main-text{
    width: 60%;
    text-align: center;
}

/* CTA Section */
.cta {
    background-color: transparent;
    text-align: center;
    color: white;
    position: relative;
    z-index: 10;
    padding: 0;
    margin-top: 100px;
    margin-bottom: -80px;
}

.cta .container {
    max-width: 1200px;
    background-color: var(--primary-color);
    border-radius: 20px;
    padding: 3.5rem 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.cta .container::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -5%;
    width: 110%;
    height: 20px;
    background: rgba(255, 255, 255, 0.06);
    transform: rotate(-2deg);
    border-radius: 50px;
}

.cta .container::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: -5%;
    width: 110%;
    height: 15px;
    background: rgba(255, 255, 255, 0.06);
    transform: rotate(1deg);
    border-radius: 50px;
}

.wavy-line {
    position: absolute;
    height: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    transform: rotate(-1deg);
}

.wavy-line-1 {
    top: 35%;
    left: -5%;
    width: 110%;
}

.wavy-line-2 {
    bottom: 35%;
    left: -5%;
    width: 110%;
    transform: rotate(2deg);
}

.cta h2 {   
    color: white;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.cta p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.cta .btn-primary {
    background-color: white;
    color: var(--primary-color);
    padding: 0.7rem 2rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.cta .btn-primary:hover {
    background-color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: #111111;
    color: var(--gray-300);
    padding: 10rem 0 3rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.1), rgba(255,255,255,0));
}

.footer-content {
    position: relative;
    z-index: 5;
}

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

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

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

.footer-col p {
    margin-bottom: 1.5rem;
    color: var(--gray-400);
    font-size: 1rem;
    line-height: 1.8;
}

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

.footer-col ul li a {
    color: var(--gray-400);
    transition: color 0.3s ease;
    font-size: 1rem;
    position: relative;
    padding-left: 0;
    transition: padding-left 0.3s ease, color 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 8px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #222222;
    padding-top: 2rem;
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-top: 2rem;
}

.footer-bottom a {
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

@media screen and (max-width: 768px) {
    .cta {
        margin-bottom: -50px;
        margin-top: 70px;
    }
    
    .cta .container {
        padding: 2.5rem 1.5rem;
    }
    
    .cta h2 {
        font-size: 1.8rem;
    }
    
    .cta p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .cta .btn-primary {
        padding: 0.6rem 1.7rem;
        font-size: 0.9rem;
    }
    
    footer {
        padding: 8rem 0 2rem;
    }
    
    .footer-grid {
        gap: 2rem;
    }
}

/* Page Header */
.page-header {
    background-color: var(--light-color);
    padding: 5rem 0 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

/* Pricing styles moved to pricing.css to avoid conflicts */

/* FAQ Section */
.faq {
    background-color: white;
    padding: 5rem 0;
}

.faq-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-intro h2 {
    font-size: 2.5rem;
    color: var(--gray-900);
}

.faq-smalltext{
    color: var(--gray-600);
}

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

.faq-item {
    background-color: white;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--gray-100);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    flex: 1;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
    color: var(--gray-600);
}

.faq-icon i {
    font-size: 1rem;
    color: var(--gray-600);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    color: var(--gray-600);
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .faq-question h3 {
        font-size: 1rem;
    }
}

/* Contact Page */

/* Contact Hero Section */
.contact-hero {
    background-color: var(--gray-100);
    padding: 5rem 0;
}

.contact-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    position: relative;
}

.contact-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--success-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.contact-heading {
    flex: 1;
    max-width: 550px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 500px;
}

.contact-heading h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
    font-weight: 600;
}

.contact-heading p {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Contact Ticker */
.contact-ticker {
    margin-top: 7rem;
    margin-bottom: 1rem;
    padding-top: 7rem;
}

.contact-ticker .ticker-heading {
    margin-bottom: 0.5rem;
    background-color: var(--gray-100);
}

.contact-ticker .ticker-heading p {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.3rem;
}

.contact-ticker .ticker-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0.6rem 0;
    background-color: transparent;
}

.contact-ticker .ticker-container::before,
.contact-ticker .ticker-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 2;
}

.contact-ticker .ticker-container::before {
    left: 0;
    background: linear-gradient(to right, var(--gray-100), transparent);
}

.contact-ticker .ticker-container::after {
    right: 0;
    background: linear-gradient(to left, var(--gray-100), transparent);
}

.contact-ticker .ticker {
    animation: ticker-scroll 25s linear infinite;
}

.contact-ticker .college-logo {
    padding: 0 1.5rem;
    height: 40px;
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-form-container {
    flex: 0.8;
    max-width: 400px;
}

.contact-section {
    background-color: white;
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    padding-right: 2rem;
}

.contact-methods {
    margin: 2rem 0;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-method .icon {
    width: 50px;
    height: 50px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.contact-method .icon i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.contact-method .details h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.contact-method .details p {
    margin-bottom: 0.25rem;
    color: var(--gray-600);
}

.social-links h3 {
    margin-bottom: 0.6rem;
    font-size: 1rem;
}

.social-icons {
    display: flex;
}

.social-icon {
    width: 36px;
    height: 36px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: white;
}

.contact-form {
    background-color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 500;
    font-size: 0.85rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 0.9rem;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: white;
    border: 1px solid var(--gray-300);
    border-radius: 4px;
}

.checkbox-container:hover input ~ .checkmark {
    border-color: var(--primary-color);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .hero .container,
    .contact-grid,
    .contact-row {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .contact-heading,
    .contact-form-container {
        max-width: 100%;
    }
    
    .contact-heading {
        min-height: auto;
    }

    .contact-form {
        max-width: 100%;
    }
    
    .contact-ticker {
        margin-top: 1.5rem;
    }

    .hero-image {
        order: -1;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }

    .contact-info {
        padding-right: 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .feature-card, 
    .step, 
    .pricing-card {
        padding: 1.5rem;
    }

    .pricing-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 576px) {
    header .container {
        flex-direction: column;
    }

    nav ul {
        margin-top: 1rem;
    }

    nav ul li {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .hero {
        padding: 4rem 0;
    }

    section {
        padding: 3rem 0;
    }

    /* FAQ and CTA styles for all pages */
    .faq {
        margin-top: 50px;
    }

    .cta, .container {
        width: 100% !important;
        padding: 30px !important;
    }

    .cta, .container h2 {
        font-size: 1.2rem !important; 
    }

    .faq-question h3 {
        font-size: 1rem !important;
    }
}

.announcement-chip {
    display: inline-block;
    background-color: white;
    color: var(--gray-800);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid var(--gray-800);
}



/* Past Papers Section */
.past-papers {
    background-color: white;
    padding: 6rem 0;
}

.past-papers .container {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.past-papers-content {
    max-width: 550px;
}

.past-papers-tagline {
    font-size: 0.9rem;
    font-weight: 600;
    color: #5b3c91;
    margin-bottom: 1rem;
    display: inline-block;
}

.past-papers-tagline i {
    margin-right: 6px;
}

.past-papers-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.past-papers-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--gray-600);
}

@media screen and (max-width: 1024px) {
    .past-papers .container {
        flex-direction: column;
        text-align: center;
    }
    
    .past-papers-content {
        max-width: 100%;
    }
}

/* Subject Features Section */
.subject-features {
    padding: 6rem 0;
    background-color: #fafafa;
}

.subject-features-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: #49a86b;
    margin-bottom: 1rem;
}

.feature-icon i {
    margin-right: 0.5rem;
}

.subject-features-intro h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.subject-features-intro p {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.subject-toggle-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    position: relative;
}

.subject-toggle {
    display: flex;
    background-color: #f0f0f0;
    border-radius: 50px;
    padding: 0.4rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.subject-tab {
    border: none;
    background: none;
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.subject-tab i {
    margin-right: 0.5rem;
}

.subject-tab.active {
    background-color: white;
    color: var(--gray-900);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.subject-content-area {
    display: flex;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.subject-content {
    display: none;
    width: 100%;
}

.subject-content.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.subject-detail {
    display: flex;
    align-items: center;
    gap: 6rem;
    justify-content: flex-start;
    margin-top: 10px;
}

.subject-info {
    flex: 0 1 320px;
    max-width: 320px;
    padding-right: 20px;
}

.subject-info h2 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.subject-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    text-align: left;
}

.subject-image {
    flex: 1;
}

.subject-image .image-placeholder {
    height: 350px;
    background-color: #f2f2f2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.learn-more {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

.learn-more i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.learn-more:hover i {
    transform: translateX(4px);
}

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

@media screen and (max-width: 1024px) {
    .subject-detail {
        flex-direction: column;
        gap: 2rem;
    }
    
    .subject-info {
        order: 2;
        text-align: center;
    }
    
    .subject-image {
        order: 1;
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .subject-features-intro h1 {
        font-size: 2.2rem;
    }
    
    .subject-toggle {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .subject-tab {
        margin-bottom: 0.5rem;
    }
}

.more-subjects {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 12px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    font-style: italic;
}

.more-subjects.show {
    opacity: 1;
    transform: translateY(0);
}

/* Testimonials Section */
.testimonials {
    background-color: #f9f9f9;
    padding: 6rem 0;
}

.testimonials-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonial-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #49a86b;  /* Green color as requested */
    margin-bottom: 1rem;
}

.testimonials-intro h2 {
    font-size: 2.5rem;
    color: var(--gray-900);
    max-width: 700px;
    margin: 0 auto;
}

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

.visible-testimonials {
    margin-bottom: 3rem;
}

.testimonials-wrapper {
    position: relative;
    margin-top: 2rem;
}

.hidden-testimonials {
    opacity: 0.5;
    filter: blur(2px);
    pointer-events: none;
    transition: all 0.5s ease;
}

.hidden-testimonials.show {
    opacity: 1;
    filter: blur(0);
    pointer-events: auto;
}

.fade-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(249, 249, 249, 0) 0%, rgba(249, 249, 249, 0.8) 70%, rgba(249, 249, 249, 1) 100%);
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.fade-overlay.hide {
    opacity: 0;
}

.show-more-btn {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.show-more-btn i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.show-more-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateX(-50%) translateY(-3px);
}

.show-more-btn.expanded i {
    transform: rotate(180deg);
}

.show-more-btn.expanded {
    bottom: -1.5rem;
}

.testimonial-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-700);
    font-style: italic;
    position: relative;
}

.testimonial-content p::before {
    content: '\201C';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 5rem;
    color: rgba(26, 115, 232, 0.1);
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--gray-200);
    margin-right: 1rem;
}

.author-info h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--gray-800);
}

.author-info p {
    margin: 0.2rem 0 0;
    font-size: 0.85rem;
    color: var(--gray-600);
}

@media screen and (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonials-intro h2 {
        font-size: 2rem;
    }
}

/* How It Works Timeline Section */
.how-it-works-timeline {
    padding: 6rem 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.timeline-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.timeline-intro h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.timeline-intro p {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.scroll-indicator {
    margin-top: 2rem;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 1.5rem;
    color: var(--gray-500);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-7px);
    }
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: auto;
    left: 50%;
    width: 4px;
    background-color: var(--gray-300);
    transform: translateX(-50%);
    height: calc(100% - 180px);
}

.timeline-step {
    position: relative;
    margin-bottom: 8rem;
    display: flex;
    align-items: center;
}

.timeline-node {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.node-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--primary-color);
    box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.2);
}

.node-circle i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.timeline-content {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: 45%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    cursor: pointer;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hover-hint {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 1.2rem;
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s ease;
}

.timeline-content:hover .hover-hint {
    opacity: 1;
    color: var(--primary-color);
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.timeline-content p {
    color: var(--gray-600);
    line-height: 1.6;
}

.step-left {
    justify-content: flex-start;
}

.step-right {
    justify-content: flex-end;
}

.step-left .timeline-content {
    margin-right: 5rem;
}

.step-right .timeline-content {
    margin-left: 5rem;
}

.timeline-testimonial {
    margin: 5rem auto;
    max-width: 700px;
}

.timeline-testimonial-content {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
}

.timeline-testimonial-content::before {
    content: '\201C';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 5rem;
    color: rgba(26, 115, 232, 0.1);
    font-family: serif;
}

.timeline-testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.timeline-testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--gray-200);
    margin-right: 1rem;
}

.author-details h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--gray-800);
}

.author-details p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.timeline-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 5;
}

.timeline-cta .btn {
    margin: 0 0.5rem;
}

.video-btn {
    display: inline-flex;
    align-items: center;
}

.video-btn i {
    margin-right: 0.5rem;
}

/* Animation for timeline steps */
.timeline-step {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.timeline-step.animate {
    opacity: 1;
    transform: translateY(0);
}

.timeline-step:nth-child(2) {
    transition-delay: 0.2s;
}

.timeline-step:nth-child(3) {
    transition-delay: 0.4s;
}

.timeline-step:nth-child(4) {
    transition-delay: 0.6s;
}

.timeline-step:nth-child(5) {
    transition-delay: 0.8s;
}

/* Responsive styles for timeline */
@media screen and (max-width: 992px) {
    .timeline-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .timeline-intro h2 {
        font-size: 2.2rem;
    }
    
    .timeline-line {
        left: 2rem;
        height: calc(100% - 250px);
    }
    
    .timeline-end:after {
        left: 2rem;
    }
    
    .timeline-node {
        left: 2rem;
    }
    
    .timeline-step {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 2rem;
        margin-bottom: 4rem;
    }
    
    .step-left, .step-right {
        justify-content: flex-start;
    }
    
    .timeline-content {
        width: 100%;
        margin-left: 3rem !important;
        margin-right: 0 !important;
        margin-top: 1rem;
    }
    
    .node-circle {
        width: 50px;
        height: 50px;
    }
    
    .node-circle i {
        font-size: 1.2rem;
    }
    
    .preview-content {
        width: 95%;
    }
    
    .preview-gif {
        height: 300px;
    }
}

.timeline-end {
    position: relative;
    height: 30px;
    margin-bottom: 3rem;
}

.timeline-end:after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background-color: var(--gray-300);
    border-radius: 50%;
}

/* Preview Container Styling */
.floating-previews {
    position: fixed;
    z-index: 1000;
    pointer-events: none;
}

.preview-tooltip {
    position: absolute;
    width: 480px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.preview-tooltip.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.preview-gif {
    width: 100%;
    height: 280px;
    background-color: var(--gray-100);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-gif img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-tooltip-content {
    padding: 1rem;
    background-color: white;
    border-top: 1px solid var(--gray-200);
}

.preview-tooltip-content h4 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.preview-tooltip-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.4;
}

/* Add a subtle pointer/arrow to the tooltip */
.preview-tooltip:before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 10px 10px 10px;
    border-style: solid;
    border-color: transparent transparent white transparent;
    z-index: 1;
}

@media screen and (max-width: 768px) {
    .preview-tooltip {
        width: 350px;
    }
    
    .preview-gif {
        height: 220px;
    }
    
    .preview-tooltip-content h4 {
        font-size: 1rem;
    }
    
    .preview-tooltip-content p {
        font-size: 0.8rem;
    }
}

/* Pricing styles moved to pricing.css to avoid conflicts */

/* School plans styles moved to pricing.css to avoid conflicts */

/* Free Trial Highlight */
.free-trial-highlight {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 5rem 0;
}

.trial-card {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.trial-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trial-icon i {
    font-size: 2rem;
    color: white;
}

.trial-content {
    flex: 1;
}

.trial-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.trial-content p {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.trial-features {
    flex-shrink: 0;
}

.trial-features ul {
    list-style: none;
}

.trial-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.trial-features li i {
    color: #10b981;
    margin-right: 0.8rem;
}

/* Custom Plans */
.custom-plans {
    background-color: white;
    padding: 6rem 0;
}

.custom-plans-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.custom-plans-text {
    flex: 1;
}

.custom-plans-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.custom-plans-text p {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.custom-features {
    margin-bottom: 2rem;
}

.custom-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--gray-700);
}

.custom-features li i {
    color: var(--primary-color);
    margin-right: 0.8rem;
}

.custom-plans-image {
    flex: 0.8;
    display: flex;
    justify-content: center;
}

.custom-plans-image .image-placeholder {
    width: 350px;
    height: 300px;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--gray-600);
}

.custom-plans-image .image-placeholder i {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.custom-plans-image .image-placeholder p {
    font-weight: 600;
    margin: 0;
}

/* Responsive Design for New Pricing Sections */
@media screen and (max-width: 1024px) {
    .trial-card,
    .custom-plans-content {
        flex-direction: column;
        text-align: center;
    }
    
    .trial-card {
        gap: 2rem;
    }
    
    .custom-plans-content {
        gap: 3rem;
    }
    
    .custom-plans-image {
        order: -1;
    }
}

@media screen and (max-width: 768px) {
    .pricing-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .individual-plan-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .individual-plan-card h2 {
        font-size: 2rem;
    }
    
    .amount {
        font-size: 3rem;
    }
    
    .plan-features ul {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .school-pricing-table {
        overflow-x: visible;
    }
    
    .school-pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .school-pricing-card.featured {
        transform: none;
    }
    
    .school-pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .school-pricing-cards .school-pricing-card {
        padding: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .trial-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .custom-plans-text h2 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 576px) {
    .school-pricing-card {
        padding: 1.5rem;
    }
    
    .school-price .price {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .custom-plans-image .image-placeholder {
        width: 280px;
        height: 250px;
    }
}

/* Unified pricing styles moved to pricing.css to avoid conflicts */

/* Enterprise Solutions Section */
.enterprise-solutions {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 6rem 0;
}

.enterprise-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.enterprise-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.enterprise-intro p {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

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

.enterprise-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.enterprise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.enterprise-card.premium {
    border-color: #f59e0b;
    background: linear-gradient(135deg, #fffbeb 0%, #ffffff 100%);
}

.enterprise-card.premium:hover {
    border-color: #d97706;
}

.enterprise-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.enterprise-card.premium .enterprise-header {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.enterprise-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    backdrop-filter: blur(10px);
}

.enterprise-icon i {
    font-size: 2rem;
    color: white;
}

.enterprise-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: white;
}

.enterprise-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.enterprise-content {
    padding: 2rem;
}

.enterprise-price {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.enterprise-price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    display: block;
    line-height: 1;
}

.enterprise-price .period {
    font-size: 1rem;
    color: var(--gray-500);
    font-weight: 500;
}

.contact-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    display: block;
}

.enterprise-price .price-note {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-top: 0.5rem;
    font-style: italic;
}

.enterprise-description {
    margin-bottom: 2rem;
}

.enterprise-description p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

.enterprise-features h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.enterprise-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.enterprise-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.enterprise-features li i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

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

.enterprise-cta .btn {
    width: 100%;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
}

/* Enterprise Benefits */
.enterprise-benefits {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.benefits-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.benefits-intro h3 {
    font-size: 1.8rem;
    color: var(--gray-900);
    margin: 0;
}

.enterprise-benefits .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gray-50) 0%, white 100%);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--gray-900);
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
}

/* New Pricing Hero */
.pricing-hero-new {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
    color: white;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    animation: float 6s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: -5%;
    animation-delay: 0s;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(66, 133, 244, 0.2) 100%);
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: -3%;
    animation-delay: 2s;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(26, 115, 232, 0.15) 100%);
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 15%;
    animation-delay: 4s;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(13, 71, 161, 0.2) 100%);
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-icons i {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.12);
    animation: floatIcon 8s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(66, 133, 244, 0.3);
}

.floating-icons i:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icons i:nth-child(2) {
    top: 15%;
    right: 20%;
    animation-delay: 2s;
}

.floating-icons i:nth-child(3) {
    bottom: 30%;
    left: 15%;
    animation-delay: 4s;
}

.floating-icons i:nth-child(4) {
    bottom: 20%;
    right: 10%;
    animation-delay: 6s;
}

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

@keyframes floatIcon {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.1; }
    50% { transform: translateY(-15px) rotate(5deg); opacity: 0.15; }
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.hero-main-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-badge i {
    color: #fbbf24;
    margin-right: 0.5rem;
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.4));
}

.pricing-hero-new h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 500px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.3rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.plan-preview-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transform: perspective(1000px) rotateY(-15deg);
}

.preview-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    width: 200px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: block;
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.preview-card:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    color: white;
}

.preview-card:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.featured-preview {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.18);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(26, 115, 232, 0.2);
}

.featured-preview:hover {
    transform: scale(1.1) translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    color: white;
}

.preview-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1f2937;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.8rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.preview-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(66, 133, 244, 0.3) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.preview-icon i {
    font-size: 1.5rem;
    color: white;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.preview-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.preview-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    opacity: 0.95;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.hero-arrow {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.hero-arrow a {
    display: inline-block;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.hero-arrow a:hover {
    color: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
}

.hero-arrow i {
    font-size: 2rem;
    animation: bounce 2s infinite;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design for New Hero */
@media screen and (max-width: 1024px) {
    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .plan-preview-cards {
        flex-direction: row;
        transform: none;
        gap: 1rem;
    }
    
    .preview-card {
        width: 150px;
        padding: 1rem;
    }
    
    .featured-preview {
        transform: scale(1.05);
    }
}

@media screen and (max-width: 768px) {
    .pricing-hero-new {
        padding: 6rem 0 4rem;
    }
    
    .pricing-hero-new h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .stat-item {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .plan-preview-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .shape {
        opacity: 0.5;
    }
    
    .floating-icons i {
        opacity: 0.1;
    }
}

@media screen and (max-width: 576px) {
    .hero-stats {
        gap: 0.5rem;
    }
    
    .stat-item {
        flex-direction: column;
        gap: 0.2rem;
    }
    
    .preview-card {
        width: 140px;
        padding: 0.8rem;
    }
    
    .preview-icon {
        width: 40px;
        height: 40px;
    }
    
    .preview-icon i {
        font-size: 1.2rem;
    }
}