:root {
    /* Premium Dark Palette */
    --bg-color: #050505;
    /* Deep Black */
    --surface-color: rgba(255, 255, 255, 0.03);
    /* Glassy Surface */
    --surface-hover: rgba(255, 255, 255, 0.08);

    --text-color: #f2f2f2;
    --text-muted: #a0a0a0;

    /* Branding - SWC Gradient (Vibrant) */
    --swc-purple: #8b5cf6;
    /* Violet */
    --swc-pink: #ec4899;
    /* Pink */
    --swc-orange: #f97316;
    /* Orange */
    --swc-yellow: #eab308;
    /* Yellow */

    --primary-color: var(--swc-purple);
    --secondary-color: var(--swc-pink);
    --accent-color: var(--swc-orange);

    /* Master Gradient */
    --gradient-swc: linear-gradient(90deg, var(--swc-purple) 0%, var(--swc-pink) 33%, var(--swc-orange) 66%, var(--swc-yellow) 100%);
    --gradient-main: linear-gradient(135deg, var(--swc-purple), var(--swc-pink));
    --gradient-glow: linear-gradient(135deg, rgba(139, 92, 246, 0.5), rgba(236, 72, 153, 0.5));

    --border-color: rgba(255, 255, 255, 0.1);
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container-width: 1200px;

    --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(139, 92, 246, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--accent-color);
}

.highlight {
    color: var(--primary-color);
}

/* Navigation - Minimalist */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(12, 12, 12, 0.85);
    /* Dark semi-transparent */
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo img {
    height: 45px;
    width: auto;
    display: block;
}

/* ... existing styles ... */

/* Reviews Section (Google Style) */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--surface-color);
    backdrop-filter: blur(5px);
    border: var(--glass-border);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 15px;
}

.reviewer-info h3 {
    font-size: 1.1rem;
    margin-bottom: 2px;
    color: var(--text-color);
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.google-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.google-icon i {
    font-size: 1.2rem;
    background: conic-gradient(from -45deg, #ea4335 110deg, #4285f4 90deg 180deg, #34a853 180deg 270deg, #fbbc05 270deg) 73% 55%/150% 150% no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.stars {
    color: #fbbc05;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
    font-style: italic;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-color);
}

.btn-primary {
    background: var(--text-color);
    color: var(--bg-color) !important;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-color);
    color: #fff !important;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
}

/* Hero Section - Clean & Impactful */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    position: relative;
    background: url('https://smartwebcali.com/wp-content/uploads/2026/01/cali.webp') no-repeat center center/cover;
    text-align: center;
}

/* Hero Overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient direction changed for dynamism */
    background: linear-gradient(135deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.7) 50%, rgba(5, 5, 5, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 25px;
    background: rgba(139, 92, 246, 0.1);
    /* Violet Tint */
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.hero-title {
    font-size: 4.5rem;
    /* Larger */
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
    /* Extra bold */
}

/* Gradient Text for Highlight */
.hero-title .highlight {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #ccc;
    max-width: 650px;
    margin: 0 auto 50px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

/* Professional Buttons */
.btn-primary-solid {
    background: var(--primary-color);
    color: #fff;
    padding: 15px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
    border: none;
}

.btn-primary-solid:hover {
    background: #2563eb;
    /* Darker Blue */
}

.btn-text {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-text:hover {
    color: var(--primary-color);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Media Queries */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary-solid,
    .btn-text {
        width: 100%;
        justify-content: center;
    }
}


/* Sections Common */
.section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border-color);
}

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-color);
}

.section-title .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

/* Services Grid - Minimalist */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.service-card {
    background: var(--surface-color);
    backdrop-filter: blur(5px);
    border: var(--glass-border);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: left;
    /* Aligned left for cleaner look */
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.icon-box i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--text-color);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Portfolio Carousel */
.carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    height: 400px;
    overflow: hidden;
    /* Hide overflow */
    border-radius: 12px;
}

.carousel-track-container {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-track {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    height: 100%;
    transition: transform 250ms ease-in;
    display: flex;
    /* Flex layout for slides */
}

.carousel-slide {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    flex-shrink: 0;
    /* Prevent slides from shrinking */
}

.portfolio-item {
    height: 100%;
    width: 100%;
    position: relative;
    border-radius: 0;
    /* Full width in slide */
    overflow: hidden;
    background: var(--surface-color);
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.05);
    /* Subtle zoom */
}

/* Carousel Controls */
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-button:hover {
    background: var(--primary-color);
}

.carousel-button.prev {
    left: 20px;
}

.carousel-button.next {
    right: 20px;
}

/* Carousel Indicators */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.carousel-indicator {
    border: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-indicator.current-slide {
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
}

/* Hide navigation on mobile if touch swipe is implemented (optional, but keeping buttons for now) */
@media (max-width: 768px) {
    .carousel-button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Contact Section - Solid */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.contact-details li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1.05rem;
    color: var(--text-color);
}

.contact-details i {
    color: var(--primary-color);
    font-size: 1.2rem;
    background: rgba(59, 130, 246, 0.1);
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form-wrapper {
    background: var(--surface-color);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-color);
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #111;
}

/* Footer - Simple */
.footer {
    padding: 60px 0;
    background: var(--bg-color);
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.social-links a {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 60px 0;
    }
}

/* Social Media Growth Section */
.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-top: -40px;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.social-card {
    background: var(--surface-color);
    backdrop-filter: blur(5px);
    border: var(--glass-border);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-card:hover {
    transform: translateY(-5px);
}

.social-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.tiktok .social-icon i {
    color: #fff;
    text-shadow: 2px 2px 0px #ff0050, -2px -2px 0px #00f2ea;
}

.instagram .social-icon i {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.facebook .social-icon i {
    color: #1877F2;
}

.social-card h3 {
    margin-bottom: 20px;
    font-size: 1.4rem;
    color: var(--text-color);
}

.social-services-list {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    padding-left: 20px;
}

.social-services-list li {
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.social-services-list i {
    color: var(--primary-color);
    margin-right: 10px;
}

.btn-sm {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-tiktok {
    border: 1px solid #333;
    color: #fff;
}

.btn-tiktok:hover {
    background: #333;
}

.btn-instagram {
    border: 1px solid #bc1888;
    color: #fff;
}

.btn-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
}

.btn-facebook {
    border: 1px solid #1877F2;
    color: #fff;
}

.btn-facebook:hover {
    background: #1877F2;
}


/* Community Management Section */
.community-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.community-content {
    flex: 1;
}

.badge-service {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(139, 92, 246, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.community-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.7;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.f-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
}


/* Visual Card Stack */
.community-visual {
    flex: 1;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-card-stack {
    position: relative;
    width: 300px;
    height: 350px;
}

.v-card {
    position: absolute;
    width: 240px;
    height: 320px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.4s ease;
}

.card-1 {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    /* Instagram Gradient */
    top: 0;
    left: 0;
    transform: rotate(-10deg);
    z-index: 1;
}

.card-2 {
    background: linear-gradient(135deg, #000000, #252525);
    /* TikTok Dark */
    top: 20px;
    left: 40px;
    transform: rotate(5deg);
    z-index: 2;
}

.card-3 {
    background: linear-gradient(135deg, var(--swc-purple), var(--swc-pink));
    /* Brand Gradient */
    top: 50px;
    left: 80px;
    transform: rotate(15deg);
    z-index: 3;
}

.visual-card-stack:hover .card-1 {
    transform: rotate(-20deg) translate(-20px, -10px);
}

.visual-card-stack:hover .card-2 {
    transform: rotate(0deg) translate(0px, -10px);
}

.visual-card-stack:hover .card-3 {
    transform: rotate(25deg) translate(20px, -10px);
}

@media (max-width: 900px) {
    .community-container {
        flex-direction: column;
        text-align: center;
    }

    .community-content {
        order: 1;
    }

    .community-visual {
        order: 2;
        margin-top: 40px;
    }

    .features-list {
        align-items: center;
        /* Center text for mobile */
        text-align: left;
    }
}

/* Streaming Section Styles */
.pricing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    gap: 15px;
}

.toggle-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color);
}

.discount-pill {
    font-size: 0.75rem;
    background: var(--secondary-color);
    color: #fff;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 5px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Switch Toggle */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: var(--primary-color);
}

input:focus+.slider {
    box-shadow: 0 0 1px var(--primary-color);
}

input:checked+.slider:before {
    transform: translateX(26px);
}

/* Streaming Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: var(--surface-color);
    border: var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.pricing-card.recommended {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.15);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.recommended:hover {
    transform: scale(1.05) translateY(-10px);
}

.discount-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-main);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.icon-header {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
}

.pricing-header {
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.plan-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1;
}

.billing-period {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.plan-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
    /* Pushes footer down */
}

.pricing-features li {
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li i {
    color: var(--secondary-color);
    /* Pink checks for contrast */
    font-size: 0.9rem;
}

.pricing-footer {
    text-align: center;
}

.btn-price {
    display: inline-block;
    width: 100%;
    padding: 12px 20px;
    border: 1px solid var(--primary-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-card.recommended .btn-price {
    background: var(--primary-color);
    color: #fff;
}

.pricing-card:hover .btn-price {
    background: var(--primary-color);
    color: #fff;
}

/* Strategy Section - Simple Parallax */
.strategy-section {
    position: relative;
    padding: 120px 0;
    background: url('../img/marketing-strategy.jpg') no-repeat center center/cover;
    /* Placeholder needed or keep existing behavior if image missing */
    background-attachment: fixed;
    text-align: center;
    color: #fff;
}

.strategy-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.strategy-content {
    position: relative;
    z-index: 2;
}

.strategy-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight-yellow {
    color: var(--swc-yellow);
}

.strategy-content p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

/* Portfolio Item Pro */
.portfolio-item-pro {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 350px;
    /* Fixed height for consistency */
}

.portfolio-item-pro img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.portfolio-item-pro:hover img {
    transform: scale(1.1);
}

.portfolio-item-pro:hover .portfolio-info-overlay {
    transform: translateY(0);
    opacity: 1;
}

display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.badge-service {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
}

.community-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 500px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.f-icon {
    width: 50px;
    height: 50px;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

/* Pricing Section - Premium Glass Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.pricing-card {
    background: var(--surface-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: var(--glass-border);
    padding: 0;
    /* Content padding handled inside */
    border-radius: 20px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card.recommended {
    border-color: var(--accent-color);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.1);
    transform: scale(1.05);
    /* Slightly bigger */
    z-index: 2;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card.recommended:hover {
    transform: translateY(-10px) scale(1.05);
}

/* Internal Structure */
.pricing-header {
    padding: 40px 30px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-body {
    padding: 30px;
    flex-grow: 1;
}

.pricing-footer {
    padding: 0 30px 40px;
}

/* Discount Badge */
.discount-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: #db2777;
    /* Pink/Red mix */
    color: white;
    padding: 5px 30px;
    font-size: 0.8rem;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

/* Typography */
.plan-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    line-height: 1;
}

.plan-price small {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 15px;
    display: block;
}

.plan-desc {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Checklist */
.pricing-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #ddd;
    font-size: 0.95rem;
}

.pricing-features i {
    color: #10b981;
    /* Green success */
    margin-top: 4px;
    font-size: 0.9rem;
}

/* Buttons */
.btn-price {
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 50px;
    /* Pill shape */
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color);
}

.btn-price:hover {
    background: var(--gradient-main);
    color: white;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.4);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-grid {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.community-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-card-stack {
    position: relative;
    width: 300px;
    height: 300px;
}

.v-card {
    position: absolute;
    width: 200px;
    height: 240px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease;
}

.card-1 {
    transform: rotate(-10deg) translate(-20px, 0);
    z-index: 1;
    color: #bc1888;
}

.card-2 {
    transform: rotate(0deg) translate(0, -20px);
    z-index: 2;
    color: #fff;
    background: #222;
}

.card-3 {
    transform: rotate(10deg) translate(20px, 0);
    z-index: 3;
    color: var(--primary-color);
    background: #2a2a2a;
}

.community-visual:hover .card-1 {
    transform: rotate(-20deg) translate(-40px, 10px);
}

.community-visual:hover .card-3 {
    transform: rotate(20deg) translate(40px, 10px);
}

@media (max-width: 768px) {
    .community-container {
        grid-template-columns: 1fr;
    }

    .community-visual {
        display: none;
        /* Hide visual on mobile to save space */
    }
}

/* --- New Hero Layout --- */
.hero-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    /* Image gets more space */
    align-items: center;
    gap: 30px;
    text-align: left;
    max-width: 1400px;
    /* Even wider */
    margin: 0 auto;
    padding: 0 20px;
}

/* Override existing center alignment for hero contents */
.hero-content {
    text-align: left;
    margin: 0;
    z-index: 10;
}

.hero-title {
    font-size: 4rem;
    /* Reduced from 5.5rem */
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -1px;
    animation: slideInLeft 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

/* Gradient Text for Highlight with Shimmer */
.hero-title .highlight {
    background: linear-gradient(90deg, var(--brand-yellow), #ffffff, var(--brand-yellow));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    margin: 0 0 40px 0;
    font-size: 1.25rem;
    max-width: 95%;
    color: #ccc;
}

.hero-buttons {
    justify-content: flex-start;
}

/* Floating Image - Enhanced */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

.floating-img {
    width: 100%;
    max-width: 900px;
    /* Increased from 750px */
    height: auto;
    /* Clean, crisp shadow + subtle glow */
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6)) brightness(1.1) contrast(1.1);
    animation: float 6s ease-in-out infinite;
    z-index: 5;
    /* Optional: 3D perspective assumption */
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.hero-image:hover .floating-img {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

@keyframes float {
    0% {
        transform: translateY(0) perspective(1000px) rotateY(-5deg);
    }

    50% {
        transform: translateY(-25px) perspective(1000px) rotateY(-5deg);
    }

    100% {
        transform: translateY(0) perspective(1000px) rotateY(-5deg);
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 50px;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
        order: 2;
        /* Image on top on mobile? check preference. Usually Image top is better visually */
    }

    .hero-image {
        order: 1;
        margin-bottom: 30px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .floating-img {
        max-width: 100%;
        animation: floatMobile 6s ease-in-out infinite;
        /* Remove rotateY for mobile */
    }

    @keyframes floatMobile {
        0% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-20px);
        }

        100% {
            transform: translateY(0);
        }
    }
}

/* --- Swiper "PRO" Theme --- */
.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 450px;
    /* Custom height for cards */
    border-radius: 12px;
    /* Glass border */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    /* Important for scaling image inside */
}

.portfolio-item-pro {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.portfolio-item-pro img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-item-pro:hover img {
    transform: scale(1.1);
}

.portfolio-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 20px 30px;
    /* More padding top for gradient */
    background: linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.8) 50%, transparent 100%);
    color: #fff;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.swiper-slide-active .portfolio-info-overlay,
.portfolio-item-pro:hover .portfolio-info-overlay {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-info-overlay h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
    width: 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.swiper-button-prev,
.swiper-button-next {
    color: var(--primary-color);
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 1.2rem;
    font-weight: bold;
}

/* --- Strategy Section (Balance Perfecto) --- */
.strategy-section {
    position: relative;
    background: url('../img/team-marketing.jpg') no-repeat center center/cover;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-attachment: fixed;
    /* Parallax feel */
}

/* Dark Overlay */
.strategy-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Adjust opacity for readability */
    z-index: 1;
}

.strategy-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.strategy-content h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 700;
}

.highlight-yellow {
    color: #ffd700;
    /* Gold/Yellow */
    font-weight: 800;
    text-transform: uppercase;
}

.strategy-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #f0f0f0;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .strategy-section {
        height: auto;
        padding: 80px 0;
    }

    .strategy-content h2 {
        font-size: 2.2rem;
    }

    .strategy-content p {
        font-size: 1rem;
    }
}

/* --- SWC Brand Branding Overrides --- */

/* Hero Title Highlight: SWC Gradient */
.hero-title {
    background: var(--gradient-swc);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmer 4s linear infinite;
    /* Ensure the animation and gradient apply to the main text */
}

/* Ensure highlight inherits or reinforces the gradient if needed */
.hero-title .highlight {
    background: inherit;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


/* Strategy "Estrategia" Highlight: Orange/Yellow Pop */
.highlight-yellow {
    color: var(--swc-yellow) !important;
    text-shadow: 0 0 30px rgba(249, 115, 22, 0.5);
    /* Orange Glow */
}

/* Service Icons: Gradient Text or Varied */
.service-card .icon-box i {
    background: var(--gradient-swc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Buttons: Purple/Pink Gradient */
.btn-primary-solid,
.btn-primary {
    background: var(--gradient-main);
    color: #fff !important;
    font-weight: 700;
    border: none;
}

.btn-primary-solid:hover,
.btn-primary:hover {
    background: linear-gradient(135deg, var(--swc-pink), var(--swc-purple));
    /* Reverse gradient on hover */
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.6);
    transform: translateY(-2px);
}

/* Swiper Pagination */
.swiper-pagination-bullet-active {
    background: var(--swc-pink) !important;
}