/* ============================================
   COMPONENTS CSS - All inline styles extracted
   ============================================ */

/* ============================================
   CSS Variables & Base Styles
   ============================================ */
:root {
    /* Primary Colors - Main screens, buttons, backgrounds */
    --primary-dark: #10032A; /* Midnight Plum */
    --primary-light: #C9B8F4; /* Lavender Mist */
    --white: #FFFFFF;
    --black: #000000;
    
    /* Secondary Colors - Highlights, cards, accents, background sections */
    --secondary-deep: #4E1F60; /* Deep Plum */
    --secondary-soft: #E6D9FC; /* Soft Lilac */
    --secondary-sand: #E1CBA7; /* Warm Sand */
    --secondary-teal: #6AA5A9; /* Muted Teal */
    
    /* Legacy variables mapped to new palette */
    --accent: var(--primary-dark); /* Buttons use primary */
    --accent-dark: var(--secondary-deep);
    --accent-soft: var(--secondary-soft);
    --text-dark: var(--black);
    --text-muted: #6b7280;
    --card-border: var(--secondary-soft);
    --pink-bg: var(--primary-light);
    --pink-soft: var(--secondary-soft);
}

html {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Rethink Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top left, var(--primary-light) 0, var(--primary-light) 40%, var(--white) 100%);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-weight: 400;
}

/* Typography Hierarchy */
h1, h2, .h1, .h2 {
    font-family: 'Montserrat', sans-serif;
}

h1, .h1 {
    font-weight: 600; /* Semibold - Main Heading */
}

h2, .h2 {
    font-weight: 500; /* Medium - Heading 2 */
}

h3, h4, h5, h6,
.h3, .h4, .h5, .h6 {
    font-family: 'Rethink Sans', sans-serif;
    font-weight: 500; /* Medium - Subheading */
}

p, .lead, body, span, div, a, li, td, th {
    font-family: 'Rethink Sans', sans-serif;
    font-weight: 400; /* Regular - Paragraph */
}

body {
    font-size: 18px; /* Paragraph size */
}

.lead {
    font-size: 1.25rem;
}

/* ============================================
   Navbar Base Styles
   ============================================ */
.navbar-brand-logo {
    width: auto;
    height: 45px;
    max-width: 180px;
    object-fit: contain;
    display: block;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-link.active,
.nav-link:hover {
    color: var(--primary-dark) !important;
}

/* ============================================
   Button Styles
   ============================================ */
.btn-accent {
    background: linear-gradient(90deg, var(--primary-dark), var(--secondary-deep));
    border: none;
    color: var(--white);
    border-radius: 999px;
    padding-inline: 26px;
    box-shadow: 0 16px 40px rgba(16, 3, 42, 0.35);
    transition: background 0.3s ease;
}

.btn-accent:hover {
    background: var(--secondary-deep) !important;
    color: var(--white) !important;
}

.btn-accent-outline {
    border-radius: 999px;
    border: 1px solid var(--primary-dark);
    color: var(--primary-dark);
    background-color: var(--white);
}

/* ============================================
   Section Styles
   ============================================ */
.section {
    padding: 90px 0;
}

.section-tight {
    padding: 60px 0;
}

/* ============================================
   Hero Base Styles
   ============================================ */
.hero-wrapper {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top left, var(--primary-light) 0, var(--primary-light) 40%, var(--white) 100%);
}

.badge-topline {
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--secondary-deep);
    font-size: 0.75rem;
    font-weight: 600;
}

.about-story-check-icon {
    color: var(--secondary-teal);
}

.contact-social-link {
    width: 40px;
    height: 40px;
    background: var(--secondary-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-teal);
    transition: all 0.3s ease;
}

.contact-social-link:hover {
    background: var(--secondary-teal);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-badge {
    background-color: var(--secondary-soft);
    color: var(--secondary-deep);
    border-radius: 8px;
    letter-spacing: 0.05em;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600; /* Semibold */
    font-size: clamp(2.6rem, 4vw, 3.7rem);
    line-height: 1.1;
}

.hero-subtitle {
    font-family: 'Rethink Sans', sans-serif;
    font-weight: 400; /* Regular */
    max-width: 520px;
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* ============================================
   Shape & Card Styles
   ============================================ */
.shape-dot {
    position: absolute;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: var(--secondary-soft);
}

.shape-plus svg {
    width: 30px;
    height: 30px;
}

.card-soft {
    border-radius: 1.5rem;
    border: 1px solid var(--secondary-soft);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
    background: var(--white);
}

.card-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.14);
    transition: all .25s ease;
}

.logo-pill {
    border-radius: 999px;
    background: var(--secondary-soft);
    border: 1px solid var(--secondary-soft);
    padding: 10px 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-dark);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

/* ============================================
   Pricing Switch Styles
   ============================================ */
.pricing-switch {
    display: inline-flex;
    padding: 4px;
    border-radius: 999px;
    background: var(--secondary-soft);
}

.pricing-switch .btn {
    border-radius: 999px;
    padding: 6px 18px;
    font-size: 0.85rem;
}

.pricing-switch .btn.active {
    background: var(--white);
    color: var(--secondary-deep);
    box-shadow: 0 8px 20px rgba(78, 31, 96, 0.25);
}

/* ============================================
   User Card Styles
   ============================================ */
.user-card-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--secondary-sand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    margin: -40px auto 12px;
    border: 4px solid var(--white);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.16);
}

/* ============================================
   Testimonial Base Styles
   ============================================ */
.testimonial-blob {
    border-radius: 1.5rem;
    background: var(--white);
    border: 1px solid var(--secondary-soft);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

/* ============================================
   Footer Base Styles
   ============================================ */
footer,
.footer-background {
    background: var(--secondary-soft);
    border-top: 1px solid var(--secondary-soft);
}

.footer-link {
    text-decoration: none;
    color: #6b7280;
    font-size: 0.92rem;
}

.footer-link:hover {
    color: var(--secondary-deep);
}

/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 991.98px) {
    .section {
        padding: 70px 0;
    }

    .position-absolute[style*="d-none d-xl-block"] {
        display: none !important;
    }
}

@media (max-width: 575.98px) {
    .section {
        padding: 56px 0;
    }

    .hero-title {
        font-size: 2rem !important;
    }

    .btn-lg {
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
    }
}

/* Hide decorative elements on mobile - merged with responsive adjustments below */

/* Templates Component */
.templates-section {
    background: linear-gradient(to bottom, var(--secondary-soft), var(--white));
    padding: 100px 0;
}

.templates-decorative-circle {
    top: 20px;
    left: 3%;
    width: 60px;
    height: 60px;
    background: rgba(106, 165, 169, 0.1);
    border-radius: 50%;
}

.templates-star-container {
    top: 10px;
    right: 5%;
}

.templates-star {
    width: 30px;
    height: 30px;
    background: var(--secondary-sand);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
}

.templates-star-content {
    color: #000;
    font-weight: bold;
    font-size: 18px;
    transform: rotate(-45deg);
}

.templates-plus-container {
    top: 50px;
    right: 8%;
}

.templates-plus-text {
    color: var(--secondary-teal);
    font-size: 20px;
    font-weight: bold;
}

.templates-plus-text-alt {
    color: #000;
    font-size: 20px;
    font-weight: bold;
    margin-top: 5px;
}

.templates-lines-top {
    top: 15%;
    left: 2%;
}

.templates-line {
    width: 2px;
    height: 40px;
    background: var(--secondary-teal);
    transform: rotate(45deg);
    margin-left: 8px;
    margin-top: -20px;
}

.templates-line:first-child {
    margin-left: 0;
    margin-top: 0;
}

.templates-lines-bottom {
    bottom: 10%;
    left: 3%;
}

.templates-line-bottom {
    width: 2px;
    height: 50px;
    background: var(--secondary-teal);
    transform: rotate(-45deg);
    margin-left: 8px;
    margin-top: -25px;
}

.templates-line-bottom:first-child {
    margin-left: 0;
    margin-top: 0;
}

.templates-badge {
    color: var(--secondary-deep);
    font-weight: 600;
}

.templates-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500; /* Medium */
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--primary-dark);
}

.templates-card {
    border-radius: 20px;
}

.templates-card-content {
    min-height: 0;
    padding: 0;
    position: relative;
}

/* Template preview cards (big screenshots like design) */
.template-preview-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 400px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
    background: #f9fafb;
}

.template-preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.template-preview-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(106, 165, 169, 0.15), rgba(0, 0, 0, 0.75));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.template-preview-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--white);
    color: var(--secondary-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.templates-card:hover .template-preview-image {
    transform: scale(1.04);
}

.templates-card:hover .template-preview-overlay {
    opacity: 1;
}

.templates-logo {
    width: 40px;
    height: 40px;
    background: var(--secondary-teal);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    margin-right: 10px;
}

.templates-logo-dark {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-weight: bold;
    margin-right: 10px;
}

.templates-button {
    background: var(--secondary-teal);
    color: var(--white);
}

.templates-card-footer {
    border-top: 1px solid var(--secondary-soft);
}

.templates-edit-btn {
    font-weight: 600;
    padding-inline: 1.8rem;
    box-shadow: 0 3px 8px rgba(16, 3, 42, 0.25);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.templates-edit-btn,
.templates-edit-btn:focus,
.templates-edit-btn:active {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

.templates-edit-btn:hover {
    background-color: var(--secondary-deep);
    border-color: var(--secondary-deep);
    color: var(--white);
    transform: translateY(-1px);
}

.templates-product-card {
    background: var(--white);
    padding: 10px;
    border-radius: 2px;
    text-align: center;
}

.templates-product-placeholder {
    width: 100%;
    height: 60px;
    background: #e5e7eb;
    border-radius: 4px;
    margin-bottom: 5px;
}

.templates-product-label {
    font-size: 10px;
    color: #6b7280;
}

/* Hero Component */
.hero-mockup-img {
    display: none;
}

.hero-mockup-laptop {
    width: 100%;
    max-width: 420px;
    margin: 40px auto 0;
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 25px 70px rgba(0,0,0,0.25));
}

/* Positioning base class (used on larger screens) */
.hero-bottom-center {
    left: 50%;
    transform: translateX(-50%);
}

.hero-section {
    padding-top: 180px;
    padding-bottom: 420px;
}


/* RESPONSIVE FIXES */

@media (max-width: 576px) {
    .hero-section {
        padding-top: 80px;
    }
}

/* Tablet and small desktop: center laptop a bit larger */
@media (min-width: 768px) {
    .hero-mockup-laptop {
        width: 480px;
        max-width: 100%;
        margin-top: 40px;
        position: absolute;
    }
}

/* Desktop: show side mockups, pulled closer so they don't overlap on zoom */
@media (min-width: 1200px) {
    .hero-mockup-img {
        display: block;
        width: 260px;
        border-radius: 12px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        position: absolute;
    }

    .hero-mockup-laptop {
        width: 560px;
    }

    .hero-top-left {
        bottom: 10px;
        left: 0%;
    }

    .hero-top-right {
        top: 70px;
        right: 0%;
    }

    .hero-bottom-left {
        top: 70px;
        left: 3%;
    }

    .hero-bottom-right {
        bottom: 10px;
        right: 3%;
    }
}

/* Very wide desktop (approx. 100% zoom on big monitors): restore original spread */
@media (min-width: 1400px) {
    .hero-mockup-img {
        width: 300px;
    }

    .hero-mockup-laptop {
        width: 620px;
    }

    .hero-top-left {
        bottom: 10px;
        left: -290px;
    }

    .hero-top-right {
        top: 70px;
        right: -190px;
    }

    .hero-bottom-left {
        top: 70px;
        left: -190px;
    }

    .hero-bottom-right {
        bottom: 10px;
        right: -290px;
    }
}

/* Hero Button Styles */
.hero-section .btn-primary {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    box-shadow: 0 3px 8px rgba(16, 3, 42, 0.25);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero-section .btn-primary:hover {
    background-color: var(--secondary-deep);
    border-color: var(--secondary-deep);
    transform: translateY(-1px);
}

.hero-section .btn-outline-primary {
    background-color: var(--white);
    border-color: var(--primary-dark);
    color: var(--primary-dark);
    border-radius: 8px;
    transition: all 0.3s ease;
}

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


/* Navbar Component */
.navbar-transparent {
    background: transparent !important;
    box-shadow: none !important;
    transition: all 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    width: 100%;
}

.navbar-scrolled {
    background: var(--white) !important;
    box-shadow: none !important;
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    width: 100%;
    transition: all 0.3s ease;
}

.navbar-brand-text {
    color: var(--primary-dark);
}

.nav-link-color {
    color: var(--primary-dark);
}

.nav-link-active-color {
    color: var(--secondary-deep);
    font-weight: 800;
}

/* Navbar white text for dashboard and profile pages */
.navbar-white-text .nav-link,
.navbar-white-text .nav-link-color,
.navbar-white-text .nav-link-active-color,
.navbar-white-text .navbar-brand,
.navbar-white-text .navbar-toggler-icon {
    color: var(--white) !important;
}

.navbar-white-text .nav-link:hover,
.navbar-white-text .nav-link.active {
    color: var(--white) !important;
    opacity: 0.9;
}

.navbar-white-text .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-white-text .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Remove white text when scrolled on dashboard/profile pages */
.navbar-white-text.navbar-scrolled .nav-link,
.navbar-white-text.navbar-scrolled .nav-link-color,
.navbar-white-text.navbar-scrolled .nav-link-active-color,
.navbar-white-text.navbar-scrolled .navbar-brand {
    color: var(--primary-dark) !important;
}

.navbar-white-text.navbar-scrolled .nav-link:hover,
.navbar-white-text.navbar-scrolled .nav-link.active {
    color: var(--secondary-deep) !important;
    opacity: 1;
}

.navbar-white-text.navbar-scrolled .navbar-toggler {
    border-color: var(--primary-dark);
}

.navbar-white-text.navbar-scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2816, 3, 42, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-lang-text {
    color: #15152b;
}

/* Make navbar push content down on smaller screens (no overlay) */
@media (max-width: 991.98px) {
    .navbar-transparent,
    .navbar-scrolled {
        position: relative !important;
        background: #ffeef3 !important; /* soft background to match hero */
        box-shadow: none !important;
    }
}

/* Footer Component */
/* Note: .footer-background styles are defined in Footer Base Styles section above */

.footer-logo-square {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 10px;
}

.footer-logo-orange {
    background: var(--secondary-teal);
}

.footer-logo-dark {
    background: var(--primary-dark);
}

.footer-brand-text {
    color: var(--primary-dark);
}

.footer-logo {
    width: auto;
    height: 45px;
    max-width: 180px;
    object-fit: contain;
    display: block;
}

.footer-description {
    line-height: 1.6;
    color: #6b7280;
}

.footer-heading {
    color: var(--primary-dark);
    font-size: 1rem;
}

.footer-link-bullet {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--secondary-teal);
    border-radius: 50%;
    margin-right: 8px;
}

.footer-link-text {
    color: #6b7280;
}

.footer-icon-container {
    width: 36px;
    height: 36px;
    background: var(--secondary-soft);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.footer-icon {
    color: var(--secondary-teal);
}

.footer-contact-text {
    color: #6b7280;
    line-height: 1.6;
}

.footer-newsletter-text {
    color: #6b7280;
}

.footer-newsletter-input {
    border: 1px solid var(--secondary-soft);
}

.footer-newsletter-input:focus {
    border-color: var(--secondary-teal);
    box-shadow: 0 0 0 3px rgba(106, 165, 169, 0.1);
    outline: none;
}

.footer-newsletter-button {
    background: var(--primary-dark);
    color: var(--white);
    border: none;
    padding: 0 20px;
    transition: all 0.3s ease;
}

.footer-newsletter-button:hover {
    background: var(--secondary-deep);
    color: var(--white);
}

.footer-divider {
    border-style: dashed;
    border-color: var(--secondary-soft);
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: var(--secondary-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-teal);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: var(--secondary-teal);
    color: var(--white);
    transform: translateY(-2px);
}

/* Testimonials Component */
.testimonials-section {
    padding: 100px 0;
}

.testimonials-decorative-star {
    top: 10%;
    right: 3%;
    width: 30px;
    height: 30px;
    background: var(--secondary-sand);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials-star-content {
    color: var(--primary-dark);
    font-weight: bold;
    font-size: 18px;
}

.testimonials-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500; /* Medium */
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--primary-dark);
}

.testimonials-description {
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-blob-custom {
    background: var(--secondary-soft);
    border-radius: 20px;
    border: 1px solid var(--secondary-soft);
    transition: all 0.3s ease;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--secondary-soft);
    border-radius: 50%;
    margin-right: 12px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.testimonial-avatar-small {
    width: 40px;
    height: 40px;
}

.testimonial-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-stars-wrapper {
    display: flex;
    align-items: center;
    gap: 4px;
}

.testimonial-star {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--secondary-sand);
    color: var(--secondary-teal);
    font-size: 12px;
    border: 2px solid var(--secondary-teal);
    transition: all 0.3s ease;
}

.testimonial-star-filled {
    background: var(--secondary-teal);
    color: var(--white);
    border-color: var(--secondary-teal);
}

.testimonial-star-empty {
    background: var(--white);
    color: var(--secondary-teal);
    border-color: var(--secondary-soft);
}

.testimonial-name {
    font-size: 1rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot-active {
    background: var(--secondary-teal);
    transform: scale(1.2);
}

.testimonial-dot-inactive {
    background: var(--secondary-soft);
}

.testimonial-dot-inactive:hover {
    background: var(--secondary-teal);
    opacity: 0.7;
    transform: scale(1.1);
}

.testimonial-secondary {
    margin-left: 40px;
    opacity: 0.7;
}

.testimonial-quote-icon {
    opacity: 0.3;
}

.testimonial-name-small {
    font-size: 0.9rem;
}

.testimonials-illustration {
    min-height: 500px;
}

.testimonials-gradient-box {
    background: linear-gradient(135deg, var(--secondary-deep) 0%, var(--secondary-teal) 100%);
    border-radius: 30px;
    padding: 60px 40px;
    position: relative;
    box-shadow: 0 30px 80px rgba(78, 31, 96, 0.3);
}

.testimonials-tablet {
    background: var(--primary-dark);
    border-radius: 20px;
    padding: 30px;
    margin: 40px auto;
    max-width: 280px;
    box-shadow: 0 20px 60px rgba(16, 3, 42, 0.4);
}

.testimonials-tablet-content {
    background: var(--secondary-sand);
    border-radius: 15px;
    padding: 20px;
    min-height: 200px;
}

.testimonials-tablet-text {
    color: var(--primary-dark);
    font-size: 0.9rem;
}

.testimonials-tablet-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.testimonials-speech-bubble {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonials-speech-top-right {
    top: 20px;
    right: 20px;
}

.testimonials-speech-top-left {
    top: 80px;
    left: 20px;
}

.testimonials-speech-bottom {
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonials-speech-icon-check {
    color: var(--secondary-teal);
}

.testimonials-speech-icon-list {
    color: var(--primary-dark);
}

.testimonials-speech-icon-star {
    color: var(--secondary-sand);
}

/* Pricing Component */
.pricing-section {
    padding: 100px 0;
}

.pricing-decorative-circle {
    width: 40px;
    height: 40px;
    background: rgba(106, 165, 169, 0.1);
    border-radius: 50%;
}

.pricing-circle-top-left {
    top: 10%;
    left: 3%;
}

.pricing-circle-top-right {
    top: 5%;
    right: 5%;
}

.pricing-circle-bottom-left {
    bottom: 10%;
    left: 5%;
    width: 60px;
    height: 60px;
    background: rgba(106, 165, 169, 0.08);
}

.pricing-circle-bottom-right {
    bottom: 5%;
    right: 3%;
    width: 50px;
    height: 50px;
    background: rgba(106, 165, 169, 0.08);
}

.pricing-lines {
    top: 20%;
    right: 2%;
}

.pricing-line {
    width: 2px;
    height: 50px;
    background: var(--secondary-teal);
    transform: rotate(45deg);
    margin-left: 8px;
    margin-top: -25px;
}

.pricing-line:first-child {
    margin-left: 0;
    margin-top: 0;
}

.pricing-badge {
    font-size: 0.85rem;
    color: var(--secondary-deep);
}

.pricing-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500; /* Medium */
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--primary-dark);
}

.pricing-card {
    border-radius: 20px;
    background: var(--white);
    border: 1px solid var(--secondary-soft);
}

.pricing-icon-container {
    width: 50px;
    height: 50px;
    background: var(--secondary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-plan-name {
    font-size: 1.3rem;
    color: var(--primary-dark);
}

.pricing-price {
    font-size: 2.2rem;
    color: var(--primary-dark);
}

.pricing-features-title {
    color: var(--primary-dark);
}

.pricing-button-trial {
    background: var(--secondary-soft);
    color: var(--secondary-deep);
    border: 1px solid var(--secondary-soft);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pricing-button-trial:hover {
    background: var(--secondary-teal);
    color: var(--white);
    border-color: var(--secondary-teal);
}

.pricing-button-purchase {
    background: var(--primary-dark);
    color: var(--white);
    border: 1px solid var(--primary-dark);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pricing-button-purchase:hover {
    background: var(--secondary-deep);
    color: var(--white);
    border-color: var(--secondary-deep);
}

.pricing-check-icon {
    color: var(--secondary-teal);
}

.pricing-x-icon {
    color: var(--text-muted);
    opacity: 0.5;
}

/* Setup Component */
.setup-section {
    padding: 100px 0;
}

.setup-decorative-circle {
    width: 50px;
    height: 50px;
    background: rgba(106, 165, 169, 0.1);
    border-radius: 50%;
}

.setup-circle-top-left {
    top: 20px;
    left: 5%;
}

.setup-lines-top-right {
    top: 10px;
    right: 10%;
}

.setup-line {
    width: 2px;
    height: 60px;
    background: var(--secondary-teal);
    transform: rotate(45deg);
    margin-left: 8px;
}

.setup-line:first-child {
    margin-left: 0;
}

.setup-arrows-left {
    left: 2%;
    top: 50%;
    transform: translateY(-50%);
}

.setup-arrow-text {
    color: var(--secondary-teal);
    font-size: 24px;
    font-weight: bold;
}

.setup-square-container {
    bottom: 10%;
    right: 3%;
}

.setup-square {
    width: 20px;
    height: 20px;
    border: 2px solid var(--secondary-teal);
    transform: rotate(45deg);
    margin-left: 10px;
    margin-top: -10px;
}

.setup-square:first-child {
    margin-left: 0;
    margin-top: 0;
}

.setup-star-bottom-right {
    bottom: 5%;
    right: 2%;
    width: 30px;
    height: 30px;
    background: var(--secondary-sand);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.setup-star-content {
    color: var(--primary-dark);
    font-weight: bold;
    font-size: 20px;
}

.setup-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500; /* Medium */
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--primary-dark);
}

.setup-card {
    border-radius: 20px;
    position: relative;
    transition: border-top-width 0.25s ease, border-top-color 0.25s ease,
        transform 0.25s ease, box-shadow 0.25s ease;
}

.setup-card-inactive {
    border-top: 2px solid var(--secondary-soft);
}

.setup-card-indicator {
    left: 15px;
    top: 70px;
    width: 8px;
    height: 8px;
    background: var(--secondary-teal);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.4);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.setup-card-bar {
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--secondary-teal);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.setup-card:hover {
    border-top: 4px solid var(--secondary-teal);
    transform: translateY(-6px);
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
}

.setup-card:hover .setup-card-indicator {
    opacity: 1;
    transform: scale(1);
}

.setup-card:hover .setup-card-bar {
    opacity: 1;
    transform: scaleX(1);
}

.setup-icon-container {
    width: 80px;
    height: 80px;
    border-radius: 20px;
}

.setup-icon-container-active {
    background: var(--secondary-soft);
}

.setup-icon-container-inactive {
    background: var(--secondary-soft);
    opacity: 0.5;
    transition: background-color 0.25s ease, opacity 0.25s ease;
}

.setup-icon-active {
    color: var(--secondary-teal);
}

.setup-icon-inactive {
    color: var(--text-muted);
    transition: color 0.25s ease;
}

/* Icon & icon container react on hover as well */
.setup-card:hover .setup-icon-container-inactive {
    background: var(--secondary-soft);
    opacity: 1;
}

.setup-card:hover .setup-icon-inactive {
    color: var(--secondary-teal);
}

.setup-step-title {
    font-size: 1.2rem;
}

/* Features Component */
.features-section {
    padding: 100px 0;
}

.features-line-top-left {
    top: 10%;
    left: 2%;
    width: 2px;
    height: 60px;
    background: #ff4c70;
    transform: rotate(45deg);
}

.features-grid-top-right {
    top: 5%;
    right: 3%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

.features-grid-dot {
    width: 6px;
    height: 6px;
    background: #ff4c70;
}

.features-lines-bottom-right {
    bottom: 10%;
    right: 2%;
}

.features-line-bottom {
    width: 2px;
    height: 50px;
    background: #ff4c70;
    transform: rotate(-45deg);
    margin-left: 8px;
    margin-top: -25px;
}

.features-line-bottom:first-child {
    margin-left: 0;
    margin-top: 0;
}

.features-star-bottom-right {
    bottom: 5%;
    right: 3%;
    width: 30px;
    height: 30px;
    background: #ffd700;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-star-content {
    color: #000;
    font-weight: bold;
    font-size: 18px;
}

.features-badge {
    font-size: 0.85rem;
    color: var(--secondary-deep);
}

.features-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500; /* Medium */
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--primary-dark);
    line-height: 1.2;
}

.features-description {
    font-size: 1rem;
    line-height: 1.6;
}

.features-list {
    color: #6b7280;
}

.features-list-item {
    font-size: 0.95rem;
}

.features-card {
    border: 1px solid #f1dde6;
    border-radius: 16px;
}

.features-icon-container {
    width: 50px;
    height: 50px;
    border: 2px dashed var(--secondary-teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.features-card-title {
    font-size: 1rem;
}

.features-card-description {
    font-size: 0.85rem;
    line-height: 1.5;
}

.features-highlight-dot {
    width: 6px;
    height: 6px;
    background: var(--secondary-teal);
    border-radius: 50%;
    margin-top: 8px;
}


/* Users Component - No inline styles, uses existing classes */

/* Utility Classes */
.text-color-primary {
    color: var(--primary-dark);
}

.text-color-accent {
    color: var(--secondary-deep);
}

.text-color-muted {
    color: #6b7280;
}

.section-padding-large {
    padding: 100px 0;
}

.section-padding-medium {
    padding: 80px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-mockups-container,
    .templates-decorative-circle,
    .hero-decorative-svg,
    .testimonials-decorative-star,
    .pricing-decorative-circle,
    .setup-decorative-circle,
    .features-grid-top-right,
    .features-star-bottom-right {
        display: none !important;
    }

    /* Hide decorative elements on mobile */
    .position-absolute[style*="top:"],
    .position-absolute[style*="bottom:"],
    .position-absolute[style*="left:"],
    .position-absolute[style*="right:"] {
        display: none !important;
    }
}

/* ============================================
   Contact Form Styles
   ============================================ */
.contact-form .form-control {
    border: 1px solid var(--secondary-soft);
    border-radius: 12px;
    padding: 12px 16px;
    transition: all 0.3s ease;
    background: var(--white);
}

.contact-form .form-control:focus {
    border-color: var(--primary-dark);
    box-shadow: 0 0 0 3px rgba(16, 3, 42, 0.1);
    outline: none;
}

.contact-form .form-control-lg {
    padding: 14px 18px;
    font-size: 1rem;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.contact-form .form-label {
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* Social Links Hover Effects */
a[style*="background: #f3f4f6"]:hover {
    background: var(--secondary-teal) !important;
    transform: translateY(-2px);
}

a[style*="background: #f3f4f6"]:hover i {
    color: #fff !important;
}


.card-hover:hover .features-icon-container {
    transform: scale(1.1);
}

/* ============================================
   Templates Modal Styles
   ============================================ */
#templatesModal .modal-backdrop {
    background-color: rgba(16, 3, 42, 0.6);
    backdrop-filter: blur(4px);
}

#templatesModal .modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

#templatesModal .modal-header .btn-close:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

#templatesModal .templates-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

#templatesModal .btn-outline-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-1px);
}

#templatesModal .btn-primary:hover {
    background-color: var(--secondary-deep);
    border-color: var(--secondary-deep);
    transform: translateY(-1px);
}

#templatesModal .modal-header {
    background: linear-gradient(135deg, var(--secondary-soft) 0%, var(--primary-light) 100%);
    border-bottom: 1px solid var(--secondary-soft);
    padding: 2rem;
}

#templatesModal .modal-header .templates-badge {
    color: var(--secondary-deep);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#templatesModal .modal-header .templates-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--primary-dark);
}

#templatesModal .modal-header .btn-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

#templatesModal .modal-body {
    padding: 2.5rem;
    background: radial-gradient(circle at top left, var(--primary-light) 0, var(--primary-light) 20%, var(--white) 100%);
}

#templatesModal .spinner-border {
    color: var(--primary-dark) !important;
    width: 3rem;
    height: 3rem;
}
