/* ===================================
   FLOWSILY - MONDAY.COM DESIGN SYSTEM
   Complete CSS Framework
   Version: 2.0
   =================================== */

/* ===================================
   FONTS
   =================================== */
@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ===================================
   CSS VARIABLES - MONDAY.COM PALETTE
   =================================== */
:root {
    /* Primary Colors - Monday.com exact */
    --primary-purple: #6161FF;
    --primary-purple-light: #797EF6;
    --primary-purple-dark: #5151E5;
    --secondary-pink: #FF5AC4;
    --secondary-blue: #00C9FF;
    --accent-green: #00D647;
    --accent-orange: #FDAB3D;
    --accent-red: #FF6161;
    --accent-yellow: #FFCB00;
    
    /* Backgrounds - Monday.com style */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F6F7FB;
    --bg-dark: #1C1F3B;
    --bg-black: #181B34;
    --bg-purple-light: #F5F6FF;
    --bg-pink-light: #FFF5FC;
    --bg-blue-light: #F0FAFF;
    --bg-green-light: #E7FFF3;
    
    /* Text Colors - Monday.com hierarchy */
    --text-primary: #323338;
    --text-secondary: #676879;
    --text-light: #9699A6;
    --text-white: #FFFFFF;
    --text-dark: #181B34;
    
    /* Borders */
    --border-light: #E6E9EF;
    --border-medium: #C5C7D0;
    --border-dark: #676879;
    
    /* Shadows - Monday.com subtle style */
    --shadow-xs: 0 2px 6px rgba(0,0,0,0.04);
    --shadow-sm: 0 4px 10px rgba(0,0,0,0.06);
    --shadow-md: 0 6px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-2xl: 0 30px 80px rgba(0,0,0,0.20);
    
    /* Border Radius - Monday.com consistent */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    
    /* Spacing Scale */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    --space-3xl: 80px;
    --space-4xl: 120px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.2s ease;
    --transition-slow: 0.3s ease;
    --transition-slower: 0.4s ease;
}

/* ===================================
   RESET & BASE
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Figtree', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ===================================
   TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 {
    font-size: 72px;
    letter-spacing: -2px;
}

h2 {
    font-size: 56px;
    letter-spacing: -1.5px;
}

h3 {
    font-size: 32px;
    letter-spacing: -0.5px;
}

h4 {
    font-size: 24px;
    letter-spacing: -0.3px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.text-large {
    font-size: 24px;
    line-height: 1.6;
}

.text-small {
    font-size: 14px;
    line-height: 1.5;
}

.text-xs {
    font-size: 12px;
    line-height: 1.4;
}

/* Text Colors */
.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-light { color: var(--text-light); }
.text-white { color: var(--text-white); }
.text-purple { color: var(--primary-purple); }
.text-pink { color: var(--secondary-pink); }
.text-blue { color: var(--secondary-blue); }
.text-green { color: var(--accent-green); }

/* Font Weights */
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }

/* ===================================
   LAYOUT
   =================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-narrow {
    max-width: 1200px;
}

.container-wide {
    max-width: 1600px;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-base);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-purple);
    letter-spacing: -0.5px;
    transition: var(--transition-base);
}

.logo:hover {
    opacity: 0.8;
}

.logo i {
    font-size: 32px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition-base);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-purple);
    transition: var(--transition-base);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-purple);
}

.nav-actions {
    display: flex;
    gap: 16px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-primary);
}

/* ===================================
   BUTTONS - MONDAY.COM STYLE
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    letter-spacing: -0.2px;
    transition: var(--transition-base);
    white-space: nowrap;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Primary Button */
.btn-primary {
    background: var(--primary-purple);
    color: white;
    box-shadow: 0 4px 12px rgba(97, 97, 255, 0.25);
}

.btn-primary:hover:not(:disabled) {
    background: var(--primary-purple-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(97, 97, 255, 0.35);
}

/* Secondary Button */
.btn-secondary {
    background: transparent;
    color: var(--primary-purple);
    border: 2px solid var(--border-light);
}

.btn-secondary:hover:not(:disabled) {
    border-color: var(--primary-purple);
    background: var(--bg-purple-light);
}

/* White Button */
.btn-white {
    background: white;
    color: var(--primary-purple);
    box-shadow: var(--shadow-lg);
}

.btn-white:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* Outline White Button */
.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.1);
}

/* Black Button */
.btn-black {
    background: var(--bg-black);
    color: white;
    box-shadow: 0 4px 12px rgba(24, 27, 52, 0.25);
}

.btn-black:hover:not(:disabled) {
    background: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24, 27, 52, 0.35);
}

/* Button Sizes */
.btn-small {
    padding: 10px 24px;
    font-size: 14px;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
    border-radius: 12px;
}

.btn-icon {
    padding: 14px;
    aspect-ratio: 1;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    padding: 120px 0 100px;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(97, 97, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 90, 196, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-light);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
}

.hero-badge i {
    color: var(--accent-orange);
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 24px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 48px;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.trust-item i {
    color: var(--accent-green);
    font-size: 16px;
}

/* ===================================
   SECTIONS
   =================================== */
.section {
    padding: 120px 0;
}

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

.section-lg {
    padding: 160px 0;
}

.section-alt {
    background: var(--bg-secondary);
}

.section-dark {
    background: var(--bg-dark);
    color: var(--text-white);
}

.section-dark h1, .section-dark h2, .section-dark h3,
.section-dark h4, .section-dark h5, .section-dark h6 {
    color: var(--text-white);
}

.section-dark p {
    color: rgba(255, 255, 255, 0.8);
}

.section-black {
    background: var(--bg-black);
    color: var(--text-white);
}

.section-black h1, .section-black h2, .section-black h3,
.section-black h4, .section-black h5, .section-black h6 {
    color: var(--text-white);
}

.section-black p {
    color: rgba(255, 255, 255, 0.7);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-badge {
    display: inline-block;
    background: var(--bg-purple-light);
    color: var(--primary-purple);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.section-badge-dark {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
}

.section-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -1.5px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===================================
   CARDS - MONDAY.COM STYLE
   =================================== */
.card {
    background: white;
    border-radius: var(--radius-md);
    padding: 40px;
    border: 1px solid var(--border-light);
    transition: var(--transition-slow);
    position: relative;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-purple);
}

.card-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    flex-shrink: 0;
}

.card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Card Icon Color Variations */
.card:nth-child(1) .card-icon {
    background: linear-gradient(135deg, #FFE8E8 0%, #FFD6D6 100%);
    color: var(--accent-red);
}

.card:nth-child(2) .card-icon {
    background: linear-gradient(135deg, #E8F0FF 0%, #D6E4FF 100%);
    color: var(--secondary-blue);
}

.card:nth-child(3) .card-icon {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE8CC 100%);
    color: var(--accent-orange);
}

.card:nth-child(4) .card-icon {
    background: linear-gradient(135deg, #F3E8FF 0%, #E8D6FF 100%);
    color: var(--primary-purple);
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.card-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.card-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.card-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

/* ===================================
   IMAGE PLACEHOLDERS - MONDAY.COM
   =================================== */
.image-placeholder {
    background: linear-gradient(135deg, var(--bg-purple-light) 0%, var(--bg-pink-light) 100%);
    border-radius: var(--radius-lg);
    padding: 80px 40px;
    text-align: center;
    border: 2px dashed var(--border-light);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, rgba(97, 97, 255, 0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(97, 97, 255, 0.03) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(97, 97, 255, 0.03) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(97, 97, 255, 0.03) 75%);
    background-size: 40px 40px;
    background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
}

.image-placeholder i {
    font-size: 80px;
    color: var(--primary-purple);
    opacity: 0.3;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.image-placeholder p {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.image-placeholder.large {
    padding: 120px 40px;
}

/* ===================================
   CAROUSEL/SLIDER - MONDAY.COM STYLE
   =================================== */
.carousel {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
}

.carousel-btn:hover {
    background: var(--primary-purple);
    color: white;
    transform: scale(1.1);
}

.carousel-indicators {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 24px;
}

.carousel-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-medium);
    cursor: pointer;
    transition: var(--transition-base);
}

.carousel-indicator.active {
    background: var(--primary-purple);
    width: 24px;
    border-radius: var(--radius-full);
}

/* ===================================
   TABS - MONDAY.COM STYLE
   =================================== */
.tabs {
    display: flex;
    gap: 8px;
    border-bottom: 2px solid var(--border-light);
    margin-bottom: 32px;
}

.tab {
    padding: 12px 24px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition-base);
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.tab:hover {
    color: var(--primary-purple);
}

.tab.active {
    color: var(--primary-purple);
    border-bottom-color: var(--primary-purple);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* ===================================
   ACCORDION - MONDAY.COM STYLE
   =================================== */
.accordion {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid var(--border-light);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    padding: 20px 24px;
    background: white;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-base);
}

.accordion-header:hover {
    background: var(--bg-secondary);
}

.accordion-header.active {
    color: var(--primary-purple);
}

.accordion-icon {
    transition: var(--transition-base);
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-body.active {
    max-height: 1000px;
}

.accordion-content {
    padding: 20px 24px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================================
   COMPARISON TABLE
   =================================== */
.comparison-wrapper {
    background: white;
    border-radius: var(--radius-lg);
    padding: 48px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.comparison-table th {
    background: var(--bg-secondary);
    padding: 20px;
    text-align: left;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-primary);
    border-bottom: 2px solid var(--border-light);
}

.comparison-table th:last-child {
    background: linear-gradient(135deg, var(--bg-purple-light) 0%, var(--bg-pink-light) 100%);
    color: var(--primary-purple);
}

.comparison-table td {
    padding: 20px;
    border-bottom: 1px solid var(--border-light);
    font-size: 15px;
}

.comparison-table tr:hover {
    background: var(--bg-secondary);
}

.check-icon {
    color: var(--accent-green);
    font-size: 20px;
}

.cross-icon {
    color: var(--accent-red);
    font-size: 20px;
}

/* ===================================
   STATS
   =================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.stat-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 40px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: var(--transition-slow);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 600;
}

/* ===================================
   BALANCE COMPARISON
   =================================== */
.balance-comparison {
    background: white;
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    margin: 64px auto;
    max-width: 900px;
    border: 1px solid var(--border-light);
}

.balance-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: center;
}

.balance-box {
    padding: 32px;
    border-radius: var(--radius-md);
    text-align: center;
    position: relative;
    transition: var(--transition-slow);
}

.balance-box:hover {
    transform: scale(1.02);
}

.balance-box.positive {
    background: linear-gradient(135deg, #E7F7EF 0%, #D0F0E0 100%);
    border: 2px solid var(--accent-green);
}

.balance-box.negative {
    background: linear-gradient(135deg, #FFE8E8 0%, #FFD6D6 100%);
    border: 2px solid var(--accent-red);
}

.balance-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 12px;
}

.balance-amount {
    font-size: 48px;
    font-weight: 800;
    margin: 16px 0;
    letter-spacing: -1px;
}

.balance-box.positive .balance-amount {
    color: var(--accent-green);
}

.balance-box.negative .balance-amount {
    color: var(--accent-red);
}

.balance-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.balance-subtext {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 8px;
}

.vs-divider {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-light);
}

.balance-note {
    text-align: center;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
    font-size: 16px;
    color: var(--text-secondary);
}

.balance-note strong {
    color: var(--accent-red);
    font-weight: 700;
}

/* ===================================
   COST BOX
   =================================== */
.cost-box {
    background: linear-gradient(135deg, #FFE8E8 0%, #FFD6D6 100%);
    border: 2px solid var(--accent-red);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
    max-width: 800px;
    margin: 64px auto;
}

.cost-box h3 {
    font-size: 32px;
    color: var(--accent-red);
    margin-bottom: 32px;
    font-weight: 700;
}

.cost-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.cost-item {
    background: white;
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.cost-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.cost-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.cost-total {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-red);
    margin-top: 32px;
    padding-top: 32px;
    border-top: 2px solid var(--accent-red);
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-pink) 100%);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    top: -300px;
    right: -300px;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    bottom: -300px;
    left: -300px;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    color: white;
    font-size: 56px;
    margin-bottom: 24px;
}

.cta-section p {
    color: white;
    font-size: 24px;
    opacity: 0.95;
    margin-bottom: 48px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* CTA Section Black Variant */
.cta-section-black {
    background: var(--bg-black);
}

.cta-section-dark {
    background: var(--bg-dark);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition-base);
}

.footer-column a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition-base);
}

.social-links a:hover {
    background: var(--primary-purple);
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.fade-in-down {
    animation: fadeInDown 0.6s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

.scale-in {
    animation: scaleIn 0.6s ease-out;
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }

.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }

.pt-1 { padding-top: var(--space-xs); }
.pt-2 { padding-top: var(--space-sm); }
.pt-3 { padding-top: var(--space-md); }
.pt-4 { padding-top: var(--space-lg); }
.pt-5 { padding-top: var(--space-xl); }

.pb-1 { padding-bottom: var(--space-xs); }
.pb-2 { padding-bottom: var(--space-sm); }
.pb-3 { padding-bottom: var(--space-md); }
.pb-4 { padding-bottom: var(--space-lg); }
.pb-5 { padding-bottom: var(--space-xl); }

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1200px) {
    .container {
        padding: 0 32px;
    }
    
    h1, .hero-title {
        font-size: 56px;
    }
    
    h2, .section-title {
        font-size: 40px;
    }
}

@media (max-width: 1024px) {
    h1, .hero-title {
        font-size: 48px;
    }
    
    h2, .section-title {
        font-size: 36px;
    }
    
    .container {
        padding: 0 24px;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Tablet: 2 columns for 3-4 grids */
    .card-grid-3,
    .card-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1, .hero-title {
        font-size: 36px;
        letter-spacing: -1px;
    }
    
    h2, .section-title {
        font-size: 28px;
        letter-spacing: -0.5px;
    }
    
    h3 {
        font-size: 24px;
    }
    
    p, .hero-subtitle {
        font-size: 16px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        gap: 16px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .balance-grid {
        grid-template-columns: 1fr;
    }
    
    .vs-divider {
        transform: rotate(90deg);
    }
    
    .card-grid,
    .card-grid-2,
    .card-grid-3,
    .card-grid-4 {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .hero-cta,
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    
      /* TESTIMONIDAL TO DELETE */ 
    /* ====== Testimonial Carousel (tsl-*) ====== */
:root{
  --tsl-maxw: 1100px;
  --tsl-gap: 1.25rem;
  --tsl-radius: 16px;
  --tsl-shadow: 0 8px 24px rgba(0,0,0,.08);
  --tsl-card-bg: var(--surface, #ffffff);
  --tsl-text: var(--text, #111827);
  --tsl-muted: var(--muted, #6b7280);
  --tsl-accent: var(--accent, #2563eb); /* adapt to your brand */
  --tsl-border: rgba(0,0,0,.08);
  --tsl-subtle: rgba(0,0,0,.04);
}

.tsl-section{ padding: clamp(2.5rem, 5vw, 5rem) 1rem; background: var(--section-bg, transparent); }
.tsl-container{ max-width: var(--tsl-maxw); margin: 0 auto; }

.tsl-header{ text-align:center; margin-bottom: 1.75rem; }
.tsl-title{
  font-size: clamp(1.4rem, 1.6rem + 1vw, 2.2rem);
  line-height: 1.15; margin: 0 0 .25rem; color: var(--tsl-text);
}
.tsl-subtitle{ margin: 0; color: var(--tsl-muted); font-size: .95rem; }

.tsl-carousel{
  position: relative;
  background: linear-gradient(180deg, var(--tsl-subtle), transparent);
  border-radius: var(--tsl-radius);
  padding: clamp(.5rem, 1vw, 1rem);
  overflow: hidden;
}

.tsl-viewport{
  overflow: hidden;
  outline: none;
  border-radius: calc(var(--tsl-radius) - 6px);
}

.tsl-track{
  display: flex;
  gap: var(--tsl-gap);
  transition: transform .5s ease;
  will-change: transform;
  /* Each card is 100% width in the track context */
  width: 100%;
}

.tsl-card{
  min-width: 100%;
  background: var(--tsl-card-bg);
  border: 1px solid var(--tsl-border);
  border-radius: var(--tsl-radius);
  box-shadow: var(--tsl-shadow);
  padding: clamp(1rem, 2vw, 1.5rem);
  display: grid;
  gap: .75rem;
}

.tsl-quote{
  margin: 0;
  font-size: clamp(1rem, .95rem + .3vw, 1.125rem);
  line-height: 1.6;
  color: var(--tsl-text);
}

.tsl-meta{ display: grid; gap: .15rem; }
.tsl-name{ font-weight: 600; color: var(--tsl-text); }
.tsl-role{ color: var(--tsl-muted); font-size: .9rem; }

/* Nav buttons */
.tsl-nav{
  position: absolute; top: 50%; transform: translateY(-50%);
  inline-size: 40px; block-size: 40px;
  border-radius: 999px;
  background: #fff; color: var(--tsl-text);
  border: 1px solid var(--tsl-border);
  box-shadow: var(--tsl-shadow);
  display: grid; place-items: center;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
  z-index: 3;
}
.tsl-nav:hover{ transform: translateY(-50%) scale(1.06); background: var(--tsl-accent); color: #fff; }
.tsl-prev{ left: .5rem; }
.tsl-next{ right: .5rem; }

/* Dots */
.tsl-dots{
  display: flex; justify-content: center; gap: .5rem;
  margin-top: 1rem;
}
.tsl-dot{
  inline-size: 8px; block-size: 8px; border-radius: 999px;
  background: var(--tsl-border);
  border: none; cursor: pointer; padding: 0;
}
.tsl-dot.is-active{ background: var(--tsl-accent); inline-size: 18px; }

/* Responsive: show 2 cards on medium, 3 on large (optional).
   If you prefer strictly 1-at-a-time, comment this block. */
@media (min-width: 760px){
  .tsl-card{ min-width: calc(50% - var(--tsl-gap) / 2); }
}
@media (min-width: 1100px){
  .tsl-card{ min-width: calc(33.333% - (var(--tsl-gap) * 2 / 3)); }
}

    
}