:root {
    --primary-orange: #ea580c;
    --primary-black: #111827;
    --logo-orange: #EA580C;
    --text-grey: #6B7280;
    --bg-white: #FFFFFF;
    --soft-gray: #F3F4F6;
    --accent-color: var(--primary-orange);
    --background-color: var(--bg-white);
    --text-color: var(--primary-black);
    --text-light: var(--text-grey);
    --light-bg: var(--soft-gray);
    --white: #FFFFFF;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 5rem;
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
    line-height: 1.2;
    font-weight: 700;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color) 50%, var(--logo-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--logo-orange);
    background-clip: text;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-white { color: var(--white); }
.text-white-50 { color: rgba(255, 255, 255, 0.7); }

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--white);
    color: var(--primary-orange);
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary-orange);
}

.btn-primary:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    color: var(--primary-color);
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid rgba(0,0,0,0.1);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    background-color: rgba(0,0,0,0.02);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 32px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-list a:not(.btn-primary) {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-list a:not(.btn-primary):hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background: radial-gradient(circle at top right, #f1f5f9 0%, #ffffff 40%);
    overflow: hidden;
}

.hero-container-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(246, 140, 59, 0.1);
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Hero Visuals */
.hero-visuals {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.img-box {
    position: absolute;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: #e2e8f0;
}

.placeholder-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #cbd5e1, #f1f5f9);
}

.main-img {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    z-index: 2;
}

.secondary-img {
    width: 60%;
    height: 60%;
    top: -5%;
    right: -5%;
    z-index: 1;
    opacity: 0.5;
    transform: rotate(5deg);
}

.floating-icon {
    position: absolute;
    width: 64px;
    height: 64px;
    background: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 3;
    font-size: 1.5rem;
    color: var(--accent-color);
    animation: float 6s ease-in-out infinite;
}

.icon-1 { top: 20%; left: 0; animation-delay: 0s; }
.icon-2 { bottom: 15%; right: 5%; animation-delay: 2s; }
.icon-3 { top: 5%; right: 20%; animation-delay: 4s; }

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Sections General */
.section {
    padding: var(--spacing-lg) 0;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-light);
}

.bg-light { background-color: var(--light-bg); }
.bg-dark { background-color: var(--dark-bg); color: var(--white); }

/* Bento Grid Services */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: minmax(240px, auto);
    }
    
    .item-large {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .item-wide {
        grid-column: span 2;
    }
    
    .item-tall {
        grid-row: span 2;
    }
}

.bento-item {
    background: var(--white);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
}

.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(59, 130, 246, 0.2);
}

.bento-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bento-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.bento-item p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.lead-text-sm {
    font-weight: 600;
    color: var(--accent-color) !important;
    margin-bottom: 0.5rem !important;
    font-size: 0.9rem !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.icon-box {
    width: 50px;
    height: 50px;
    background-color: rgba(246, 140, 59, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

/* Specific Bento Item Styles */
.main-service {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.bento-bg-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 10rem;
    color: rgba(0,0,0,0.02);
    z-index: 1;
    transform: rotate(-15deg);
    transition: var(--transition);
}

.bento-item:hover .bento-bg-icon {
    transform: rotate(0deg) scale(1.1);
    color: rgba(59, 130, 246, 0.05);
}

.flex-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* Pricing Section */
.pricing-setup-block {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.05);
}

.setup-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 1.5rem;
}

.setup-features ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    list-style: none;
}

.setup-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.setup-features i {
    color: var(--accent-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 1rem 0 0.5rem;
}

.price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
}

.setup-note {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.plan-desc {
    font-weight: 600;
    color: var(--accent-color);
}

.plan-features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.plan-features i {
    color: var(--accent-color);
    margin-top: 4px;
}

.pricing-note {
    font-size: 0.9rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}

/* Testimonials */
.testimonial-slider {
    padding: 2rem 1rem 4rem !important;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fffbeb;
    color: #b45309;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 1rem;
}

.rating-badge i {
    color: #fbbf24;
}

.stars {
    color: #fbbf24;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.review-text {
    font-size: 1.125rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    flex-grow: 1;
    font-style: italic;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #e2e8f0;
}

.reviewer-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.reviewer-info span {
    font-size: 0.875rem;
    color: var(--text-light);
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color) !important;
}

/* FAQ Section */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    margin: 0;
}

.faq-question i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Adjust as needed */
    margin-top: 1rem;
}

.faq-answer p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.about-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.about-list i {
    color: var(--accent-color);
}

.about-visual {
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}

/* CTA Section */
.cta-card {
    background: var(--primary-black);
    border-radius: 32px;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-title {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.cta-list-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.cta-list {
    list-style: none;
    text-align: left;
}

.cta-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.cta-list i {
    color: #fbbf24; /* Amber for contrast/urgency */
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-white-bg {
    background-color: var(--white);
    color: var(--primary-black);
    border-color: var(--white);
}

.btn-white-bg:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
    box-shadow: none;
}

.btn-white-outline {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn-white-outline:hover {
    background-color: var(--white);
    color: var(--primary-black);
    border-color: var(--white);
}

.cta-micro {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Footer */
.footer {
    background-color: #0f172a;
    color: rgba(255,255,255,0.6);
    padding: 3rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title { font-size: 3rem; }
    .hero-container-grid { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
    .hero-subtitle { margin: 0 auto 2.5rem; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .about-grid { grid-template-columns: 1fr; }
    .pricing-card.popular { transform: none; }
    .pricing-card.popular:hover { transform: translateY(-10px); }
    
    .cta-title { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid rgba(0,0,0,0.05);
    }

    .nav-list.active { display: flex; }
    .mobile-menu-btn { display: flex; }
    
    .hero { padding-top: 140px; }
    .hero-title { font-size: 2.5rem; }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}
