/* 
   Resérva - Premium CSS Stylesheet
   Design: Modern, Sleek, Mobile-First
   Author: Full-Stack Developer Agent
*/


@font-face {
    font-family: 'DaniloSans';
    src: url('assets/fonts/Gilroy-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'DaniloSans';
    src: url('assets/fonts/Gilroy-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

/* ==========================================
   1. CSS VARIABLES & DESIGN SYSTEM
   ========================================== */
:root {
    /* Color Palette */
    --primary-color: #e2dacb;       /* Modern Indigo */
    --primary-hover: #4338ca;
    --primary-light: #eeebff;
    
    --secondary-color: #0f172a;     /* Slate Dark Blue */
    --secondary-hover: #1e293b;
    
    --success-color: #10b981;       /* Emerald / Green */
    --success-hover: #059669;
    --success-light: #ecfdf5;
    
    --whatsapp-color: #25d366;      /* Official WhatsApp Green */
    --whatsapp-hover: #128c7e;
    --whatsapp-light: #e8f9f0;
    
    --danger-color: #ef4444;
    --danger-light: #fef2f2;
    
    --warning-color: #f59e0b;
    
    /* Neutral Colors */
    --text-main: #1f2937;           /* Slate 800 */
    --text-muted: #4b5563;          /* Slate 600 */
    --text-light: #9ca3af;          /* Slate 400 */
    
    --bg-white: #ffffff;
    --bg-light: #f9fafb;            /* Slate 50 */
    --bg-light-alt: #f3f4f6;        /* Slate 100 */
    --border-color: #e5e7eb;        /* Slate 200 */

    --color-gradA1: #f8f2eb; /* Gradient Start */
    --color-gradA2: #eddcc2;

    --color-gradB1: #f6f4f1; /* Gradient Start */
    --color-gradB2: #cec2b6;

    --color-gradC1: #fbf5ec; /* Gradient Start */
    --color-gradC2: #d3ac83;
    
    /* Typography */
    --font-family: 'DaniloSans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-primary: 0 10px 15px -3px rgba(79, 70, 229, 0.25);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
}

/* ==========================================
   2. GLOBAL RESET & BASE STYLES
   ========================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-family);
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Utility Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

/* Grids & Helpers */
.grid {
    display: grid;
    gap: 24px;
}

.grid-3 {
    grid-template-columns: 1fr;
}

.grid-4 {
    grid-template-columns: 1fr;
}

.grid-9 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.bg-light { background-color: var(--bg-light); }
.text-center { text-align: center; }
.font-bold { font-weight: 700; }
.text-primary { color: var(--primary-color) !important; }
.text-success { color: var(--success-color) !important; }
.text-whatsapp { color: var(--whatsapp-color) !important; }

.bg-primary-light { background-color: var(--primary-light); }
.bg-success-light { background-color: var(--success-light); }
.bg-whatsapp-light { background-color: var(--whatsapp-light); }

.hidden { display: none !important; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 22px;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: center;
    gap: 8px;
}

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

.btn-primary:hover {
    background-color: var(--color-gradC2);
    box-shadow: var(--shadow-primary);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    font-weight: normal;
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--border-color);
    color: var(--text-main);
}

.btn-outline:hover {
    background-color: var(--bg-light-alt);
    border-color: var(--text-light);
}

.btn-cta {
    background-color: var(--success-color);
    color: var(--bg-white);
    animation: pulse 2s infinite;
}

.btn-cta:hover {
    background-color: var(--success-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.25);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1.05rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Badges */
.badge {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.badge-accent {
    background-color: var(--success-color);
    color: var(--bg-white);
    font-size: 0.75rem;
    padding: 4px 10px;
}

/* Section Header Styles */
.section-header {
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-pretitle {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--secondary-color);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-description {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ==========================================
   3. HEADER & NAVIGATION
   ========================================== */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all var(--transition-fast);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
}

.logo {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: -0.04em;
    display: flex;
    align-items: center;
}

.logo-accent {
    color: var(--primary-color);
}

.nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary-color);
    cursor: pointer;
    padding: 5px;
    z-index: 1010;
}

/* Mobile Nav Menu Default State */
.nav-menu {
    position: fixed;
    top: 75px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 75px);
    background-color: var(--bg-white);
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    gap: 30px;
    transition: left var(--transition-normal);
    overflow-y: auto;
}

.nav-menu.active {
    left: 0;
}

.nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nav-link {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-main);
}

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

.nav-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
}

/* ==========================================
   4. HERO SECTION
   ========================================== */
.hero {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    background: url("assets/img/sfondo.png");
    background-size: cover;
}

.hero-container {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
}

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

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--bg-white);
    margin-bottom: 35px;
    font-weight: 400;
}

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

/* Hero Illustration Graphic */
.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-illustration {
    width: 320px;
    height: 320px;
    position: relative;
}

.ill-circle-bg {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(16, 185, 129, 0.1) 100%);
    z-index: 1;
    animation: rotateSphere 20s linear infinite;
}

.ill-card {
    position: absolute;
    background-color: #e6e6e6;
    border-radius: var(--radius-md);
    padding: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 5;
    border: 1px solid var(--border-color);
    transition: transform var(--transition-normal);
}

.ill-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.ill-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.ill-card-1 {
    top: 15%;
    left: -5%;
    width: 330px;
    animation: floatCard1 6s ease-in-out infinite;
}

.ill-card-1 i {
    font-size: 1.8rem;
}

.ill-card-2 {
    bottom: 15%;
    right: -5%;
    width: 300px;
    animation: floatCard2 6s ease-in-out infinite;
    animation-delay: 3s;
}

.ill-card-2 i {
    font-size: 2rem;
}

/* ==========================================
   5. CORE FEATURES
   ========================================== */
.core-features {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.feature-card {
    background-image: linear-gradient(135deg, var(--color-gradA1) 0%, var(--color-gradA2) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card.feature-card-2 {
    background-image: linear-gradient(135deg, var(--color-gradB1) 0%, var(--color-gradB2) 100%);
}

.feature-card.feature-card-3 {
    background-image: linear-gradient(135deg, var(--color-gradC1) 0%, var(--color-gradC2) 100%);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--secondary-color);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.6;
}

/* ==========================================
   6. DETAILED FEATURES
   ========================================== */
.detailed-features {
    padding: 60px 0 100px;
}

.detail-row {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 100px;
}

.detail-row:last-child {
    margin-bottom: 0;
}

.detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.accent-line {
    width: 50px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.detail-row.row-reverse .accent-line {
    background-color: var(--success-color);
}

.detail-content h2 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--secondary-color);
    line-height: 1.25;
    margin-bottom: 20px;
}

.detail-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.detail-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-list li {
    font-weight: 500;
    font-size: 0.98rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Detailed Visuals */
.detail-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mockup Browser Window */
.visual-mockup {
    width: 100%;
    max-width: 480px;
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.mockup-header {
    height: 38px;
    background-color: var(--bg-light-alt);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 6px;
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
}
.mockup-dot:nth-child(1) { background-color: #ef4444; }
.mockup-dot:nth-child(2) { background-color: #f59e0b; }
.mockup-dot:nth-child(3) { background-color: #10b981; }

.mockup-body {
    padding: 20px;
    background-color: var(--bg-white);
}

.mockup-calendar {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.calendar-header {
    background-color: var(--primary-light);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 14px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1px;
    background-color: var(--border-color);
}

.calendar-time {
    background-color: var(--bg-light);
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
    padding: 14px 10px;
    text-align: center;
}

.calendar-event {
    background-color: var(--bg-white);
    padding: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.calendar-event.ev-1 {
    border-left: 4px solid var(--primary-color);
    background-color: var(--primary-light);
    color: var(--primary-color);
}

.calendar-event.ev-2 {
    border-left: 4px solid var(--success-color);
    background-color: var(--success-light);
    color: var(--success-color);
}

.calendar-event.ev-empty {
    color: var(--text-light);
    font-style: italic;
    font-weight: 400;
}

/* Phone Mockup */
.visual-phone {
    width: 250px;
    height: 480px;
    background-color: var(--secondary-color);
    border: 10px solid var(--secondary-hover);
    border-radius: 36px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.phone-screen {
    height: 100%;
    background-color: var(--bg-white);
    display: flex;
    flex-direction: column;
}

.phone-header {
    height: 24px;
    background-color: var(--secondary-hover);
    display: flex;
    justify-content: center;
    position: relative;
}

.phone-notch {
    width: 100px;
    height: 16px;
    background-color: var(--secondary-color);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.phone-body {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.phone-body h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.phone-time-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.phone-time-slot {
    border: 1px solid var(--border-color);
    padding: 12px 6px;
    font-size: 0.85rem;
    text-align: center;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.phone-time-slot.selected {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
}

/* WhatsApp Mockup */
.visual-whatsapp-mock {
    width: 100%;
    max-width: 380px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid #d1d5db;
}

.wa-header {
    background-color: #075e54;
    color: var(--bg-white);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wa-user {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.wa-avatar {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-full);
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.wa-user h5 {
    font-size: 0.9rem;
    font-weight: 600;
}

.wa-user span {
    font-size: 0.7rem;
    opacity: 0.85;
    display: block;
    margin-top: -2px;
}

.wa-chat {
    background-color: #ece5dd;
    background-image: radial-gradient(#dfdcd6 10%, transparent 10%);
    background-size: 16px 16px;
    padding: 24px 16px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.bubble-received {
    align-self: flex-start;
    background-color: var(--bg-white);
    border-radius: 0 12px 12px 12px;
    padding: 12px 16px;
    max-width: 85%;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    line-height: 1.45;
}

.wa-time {
    display: block;
    text-align: right;
    font-size: 0.7rem;
    color: var(--text-light);
    margin-top: 4px;
}

/* ==========================================
   7. SECTORS OF APPLICATION
   ========================================== */
.sectors {
    padding: 90px 0;
}

.sector-card {
    padding: 24px 16px;
    text-align: center;
    transition: all var(--transition-normal);
}

.sector-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.sector-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    transition: transform var(--transition-fast);
}



.sector-card:hover .sector-icon {
    transform: scale(1.15);
}

.sector-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--secondary-color);
}

/* ==========================================
   8. PRICING SECTION
   ========================================== */
.pricing {
    padding: 90px 0;
}

/* Toggle switch design */
.pricing-toggle-container {
    display: inline-flex;
    align-items: center;
    background-color: var(--bg-light-alt);
    padding: 6px;
    border-radius: var(--radius-full);
    margin-top: 30px;
    gap: 12px;
}

.toggle-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    padding: 0 10px;
    cursor: pointer;
    user-select: none;
    transition: color var(--transition-fast);
}

.toggle-label.active {
    color: var(--secondary-color);
}

.pricing-toggle-btn {
    width: 60px;
    height: 30px;
    background-color: var(--primary-color);
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    padding: 4px;
    transition: background-color var(--transition-fast);
}

.toggle-switch-circle {
    width: 22px;
    height: 22px;
    background-color: var(--bg-white);
    border-radius: var(--radius-full);
    position: absolute;
    left: 4px;
    transition: transform var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

/* Switch transition active */
.pricing-toggle-btn.annuale .toggle-switch-circle {
    transform: translateX(30px);
}

/* Pricing Grid & Cards */
.pricing-grid {
    margin-top: 60px;
    align-items: stretch;
}

.pricing-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all var(--transition-normal);
}

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

.pricing-card.popular {
    border: 2px solid #ffcc00;
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
}

.pricing-card.popular:hover {
    transform: scale(1.02) translateY(-8px);
    box-shadow: var(--shadow-xl), 0 10px 20px -3px rgba(79, 70, 229, 0.15);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffcc00;
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-md);
}

.pricing-header h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.pricing-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    min-height: 44px;
}

.price-container {
    display: flex;
    align-items: baseline;
    margin-bottom: 12px;
}

.price-currency {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    align-self: flex-start;
    margin-top: 4px;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--secondary-color);
    line-height: 1;
    transition: transform var(--transition-fast);
}

.price-period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-left: 6px;
}

.activation-fee {
    font-size: 0.85rem;
    color: var(--success-color);
    font-weight: 700;
    background-color: var(--success-light);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    display: inline-block;
    margin-bottom: 30px;
}

.pricing-features {
    margin-bottom: 40px;
    flex: 1;
}

.pricing-features-modules
{
    margin-bottom: 40px;
    flex: 3;
    padding: 10px;
    padding-bottom: 20px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(16, 185, 129, 0.1) 100%);
}

.disabled{
    color: var(--text-light)!important;
}

.pricing-features ul, .pricing-features-modules ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pricing-features li, .pricing-features-modules li {
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features i, .pricing-features-modules i {
    font-size: 1.1rem;
}

.pricing-features i.fa-circle-check {
    color: #bf7208;
}

.pricing-features-modules i.fa-puzzle-piece {
    color: #012855;
    margin-top:-4px;
}

.pricing-features i.fa-circle-xmark {
    color: var(--text-light);
}

.pricing-features li.disabled {
    color: var(--text-light);
    text-decoration: line-through;
}

.pricing-footer {
    margin-top: auto;
}

/* ==========================================
   9. TESTIMONIALS SECTION
   ========================================== */
.testimonials {
    padding: 90px 0;
}

.testimonials-grid {
    margin-top: 40px;
}

.testimonial-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all var(--transition-normal);
}

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

.stars {
    color: var(--warning-color);
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.testimonial-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 24px;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    background-color: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.testimonial-author h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-light);
    display: block;
}

/* ==========================================
   10. CONTACT FORM SECTION
   ========================================== */
.contact {
    padding: 95px 0;
    background-color: var(--bg-white);
}

.contact-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-info {
    max-width: 500px;
}

.contact-info h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1.2;
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail-item {
    display: flex;
    gap: 16px;
}

.contact-detail-item .icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background-color: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-detail-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 2px;
}

.contact-detail-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

/* Contact Form UI Card */
.contact-form-container {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
}

.form-group .required {
    color: var(--danger-color);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 14px;
    color: var(--text-light);
    font-size: 0.95rem;
    pointer-events: none;
}

.input-wrapper input,
.input-wrapper select {
    width: 100%;
    padding: 12px 14px 12px 42px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-family);
    font-size: 0.95rem;
    color: var(--text-main);
    background-color: var(--bg-white);
    outline: none;
    transition: all var(--transition-fast);
}

.input-wrapper input:focus,
.input-wrapper select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.15);
}

.input-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

/* Custom Dropdown arrow icon replacement */
.input-wrapper::after {
    content: "\f0d7";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 16px;
    color: var(--text-muted);
    pointer-events: none;
}

/* Hide select arrow arrow replacement on normal inputs */
.input-wrapper:not(:has(select))::after {
    display: none;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    margin: 6px 0;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1.5px solid var(--border-color);
    cursor: pointer;
    accent-color: var(--primary-color);
    margin-top: 3px;
}

.checkbox-group label {
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
    cursor: pointer;
}

.checkbox-group label a {
    color: var(--primary-color);
    font-weight: 600;
}

.checkbox-group label a:hover {
    text-decoration: underline;
}

/* Form Feedback Notifications */
.form-feedback {
    padding: 14px 16px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    animation: fadeIn 0.4s ease-out;
}

.form-feedback.success {
    background-color: var(--success-light);
    color: var(--success-hover);
    border: 1.5px solid rgba(16, 185, 129, 0.2);
}

.form-feedback.error {
    background-color: var(--danger-light);
    color: var(--danger-color);
    border: 1.5px solid rgba(239, 68, 68, 0.2);
}

/* Loading Spinners */
.spinner {
    display: inline-flex;
    align-items: center;
}

/* ==========================================
   11. FOOTER
   ========================================== */
.footer {
    background-color: var(--secondary-color);
    color: #94a3b8;             /* Slate 400 */
    padding: 70px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
    display: grid;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-brand {
    max-width: 360px;
}

.footer-logo {
    color: var(--bg-white);
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

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

.footer-links h4 {
    color: var(--bg-white);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--bg-white);
    padding-left: 4px;
}

.footer-bottom {
    background-color: #0b0f19;  /* Deep dark slate */
    padding: 26px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-bottom-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    font-size: 0.8rem;
}

.footer-bottom p {
    margin: 0;
}

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

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@keyframes rotateSphere {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes floatCard1 {
    0% { transform: translateY(0px) rotate(-1deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(-1deg); }
}

@keyframes floatCard2 {
    0% { transform: translateY(0px) rotate(1deg); }
    50% { transform: translateY(-12px) rotate(-1deg); }
    100% { transform: translateY(0px) rotate(1deg); }
}


/* ==========================================
   13. RESPONSIVE BREAKPOINTS (MEDIA QUERIES)
   ========================================== */

/* Medium Devices (Tablets, 640px and up) */
@media (min-width: 600px) {
    .grid-9 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .form-row {
        flex-direction: row;
    }
    
    .form-row .form-group {
        flex: 1;
    }
    
    .contact-form-container {
        padding: 40px;
    }
}

/* Large Devices (Desktops/Tablets, 768px and up) */
@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 2.75rem;
    }
    
    /* Navigation Bar */
    .nav-toggle {
        display: none;
    }
    
    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        box-shadow: none;
        flex-direction: row;
        align-items: center;
        padding: 0;
        gap: 30px;
        background: none;
    }
    
    .nav-list {
        flex-direction: row;
        gap: 25px;
    }
    
    .nav-link {
        font-size: 0.95rem;
        font-weight: 500;
    }
    
    .nav-actions {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        border-top: none;
        padding-top: 0;
    }
    
    /* Hero */
    .hero {
        padding: 100px 0;
    }
    
    .hero-container {
        flex-direction: row;
        align-items: center;
        gap: 30px;
    }
    
    .hero-content {
        flex: 1.1;
    }
    
    .hero-title {
        font-size: 3.25rem;
    }
    
    .hero-image-container {
        flex: 0.9;
    }
    
    .hero-illustration {
        width: 420px;
        height: 420px;
    }
    
    .ill-card-1 { width: 330px; }
    .ill-card-2 { width: 300px; }
    
    /* Grid adjustments */
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Detail Rows alternating */
    .detail-row {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }
    
    .detail-row.row-reverse {
        flex-direction: row-reverse;
    }
    
    /* Contact */
    .contact-container {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .contact-info {
        flex: 1;
        position: sticky;
        top: 120px;
    }
    
    .contact-form-container {
        flex: 1.2;
    }
    
    /* Footer */
    .footer-container {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .footer-bottom-container {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Extra Large Devices (Large Desktops, 1024px and up) */
@media (min-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .grid-9 {
        grid-template-columns: repeat(8, 1fr);
        gap: 12px;
    }
    
    .sector-card {
        padding: 20px 10px;
    }
    
    .sector-card h4 {
        font-size: 0.9rem;
    }
    
    .sector-icon {
        font-size: 1.65rem;
    }
}
