/* IMPORT PROFESSIONAL FONTS */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@700&display=swap');

/* VARIABLES FOR CONSISTENT DESIGN */
:root {
--primary-purple: #5B3A8C;
--dark-purple: #3A2459;
--light-purple: #7B5CA3;
--accent-green: #10B981;
--corporate-gray: #F7F8FA;
--text-dark: #1F2937;
--text-medium: #6B7280;
--text-light: #9CA3AF;
--white: #FFFFFF;
--shadow-sm: 0 2px 4px rgba(0,0,0,0.06);
--shadow-md: 0 4px 6px rgba(0,0,0,0.1);
--shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
--shadow-xl: 0 20px 40px rgba(91, 58, 140, 0.2);
}

/* RESET & BASE STYLES */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
background: linear-gradient(135deg, #F7F8FA 0%, #E5E7EB 100%);
color: var(--text-dark);
line-height: 1.6;
font-size: 16px;
overflow-x: hidden;
}

/* PROFESSIONAL HEADER */
.main-header {
background: linear-gradient(135deg, var(--dark-purple) 0%, var(--primary-purple) 100%);
padding: 100px 20px 80px;
text-align: center;
position: relative;
overflow: hidden;
}

.main-header::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.main-header h1 {
font-family: 'Playfair Display', Georgia, serif;
font-size: 56px;
color: var(--white);
font-weight: 700;
letter-spacing: -1px;
margin-bottom: 10px;
text-shadow: 0 2px 10px rgba(0,0,0,0.2);
animation: fadeInUp 0.8s ease-out;
position: relative;
z-index: 1;
}

@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

/* AVAILABILITY & ROI BAR - MODERN CORPORATE STYLE */
.availability-roi-bar {
max-width: 1200px;
margin: -40px auto 60px;
background: var(--white);
border-radius: 20px;
padding: 40px;
box-shadow: var(--shadow-xl);
display: flex;
justify-content: space-around;
align-items: center;
gap: 60px;
position: relative;
z-index: 10;
}

.left-cluster, .right-cluster {
text-align: center;
flex: 1;
}

.small-text {
font-size: 14px;
font-weight: 500;
color: var(--text-medium);
margin-bottom: 15px;
text-transform: uppercase;
letter-spacing: 0.5px;
}

/* MODERN STATUS BAR */
.status-bar-container {
width: 200px;
height: 40px;
background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
border-radius: 50px;
margin: 0 auto;
overflow: hidden;
position: relative;
box-shadow: inset 0 2px 8px rgba(0,0,0,0.1);
}

.green-status-bar {
height: 100%;
background: linear-gradient(135deg, var(--accent-green), #059669);
border-radius: 50px;
transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
position: relative;
overflow: hidden;
}

.green-status-bar::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
animation: shimmer 2s infinite;
}

@keyframes shimmer {
0% { transform: translateX(-100%); }
100% { transform: translateX(100%); }
}

/* 3D PURPLE ROI BUTTON */
.roi-button {
background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
color: var(--white);
border: none;
padding: 15px 35px;
border-radius: 50px;
cursor: pointer;
font-size: 14px;
font-weight: 600;
letter-spacing: 0.5px;
box-shadow:
0 4px 15px rgba(91, 58, 140, 0.4),
0 2px 4px rgba(0,0,0,0.1),
inset 0 -2px 0 rgba(0,0,0,0.2);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
transform: translateY(0);
position: relative;
overflow: hidden;
}

.roi-button:hover {
transform: translateY(-3px);
box-shadow:
0 7px 25px rgba(91, 58, 140, 0.5),
0 3px 8px rgba(0,0,0,0.2),
inset 0 -2px 0 rgba(0,0,0,0.3);
}

.roi-button:active {
transform: translateY(-1px);
box-shadow:
0 3px 10px rgba(91, 58, 140, 0.4),
inset 0 -1px 0 rgba(0,0,0,0.2);
}

/* TOP ACTION BUTTONS - SLEEK 3D STYLE */
.top-action-buttons {
position: fixed;
top: 20px;
right: 20px;
display: flex;
gap: 10px;
z-index: 1000;
animation: slideInRight 0.6s ease-out;
}

@keyframes slideInRight {
from {
transform: translateX(100px);
opacity: 0;
}
to {
transform: translateX(0);
opacity: 1;
}
}

/* FORCE ALL TOP BUTTONS TO BE IDENTICAL */
.top-action-buttons * {
all: unset !important; /* RESET EVERYTHING */
}
.top-action-buttons button,
.top-action-buttons .purple-pill,
.top-action-buttons .special-cta-btn,
.top-action-buttons .top-try-btn {
/* UNIFORM BASE STYLE */
display: inline-block !important;
padding: 8px 20px !important;
border-radius: 25px !important;
font-size: 12px !important;
font-weight: 500 !important;
font-family: 'Inter', sans-serif !important;
letter-spacing: 0 !important;
text-align: center !important;
cursor: pointer !important;
border: none !important;
outline: none !important;
text-decoration: none !important;
transition: all 0.2s ease !important;
animation: none !important;
position: relative !important;
color: white !important;
margin: 0 !important;
line-height: normal !important;
white-space: nowrap !important;
}

/* Purple button color */
.top-action-buttons .purple-pill {
background: linear-gradient(135deg, #6B5B8F, #4A3A6B) !important;
box-shadow: 0 2px 5px rgba(0,0,0,0.15) !important;
}

/* Green button color */
.top-action-buttons .special-cta-btn,
.top-action-buttons .top-try-btn {
background: linear-gradient(135deg, #10B981, #059669) !important;
box-shadow: 0 2px 5px rgba(0,0,0,0.15) !important;
}

/* Uniform hover for all */
.top-action-buttons button:hover {
transform: translateY(-1px) !important;
box-shadow: 0 3px 8px rgba(0,0,0,0.2) !important;
}

/* 3D PURPLE PILL BUTTONS (for other sections) */
.purple-pill {
background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
color: var(--white);
border: none;
padding: 12px 24px;
border-radius: 50px;
cursor: pointer;
font-size: 13px;
font-weight: 600;
letter-spacing: 0.3px;
box-shadow:
0 4px 15px rgba(91, 58, 140, 0.3),
0 2px 4px rgba(0,0,0,0.1),
inset 0 -2px 0 rgba(0,0,0,0.2);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
}

.purple-pill::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
transition: left 0.5s;
}

.purple-pill:hover {
transform: translateY(-3px) scale(1.02);
box-shadow:
0 6px 20px rgba(91, 58, 140, 0.4),
0 3px 8px rgba(0,0,0,0.15),
inset 0 -2px 0 rgba(0,0,0,0.3);
}

.purple-pill:hover::before {
left: 100%;
}

.purple-pill:active {
transform: translateY(-1px);
}

/* SPECIAL CTA BUTTON - PREMIUM 3D EFFECT */
.special-cta-btn, .main-free-trial-btn {
background: linear-gradient(135deg, var(--accent-green), #059669);
color: var(--white);
border: none;
padding: 18px 40px;
border-radius: 50px;
cursor: pointer;
font-size: 16px;
font-weight: 700;
letter-spacing: 0.5px;
margin: 0 auto 50px;
display: inline-block;
box-shadow:
0 6px 20px rgba(16, 185, 129, 0.4),
0 2px 4px rgba(0,0,0,0.1),
inset 0 -3px 0 rgba(0,0,0,0.2);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
animation: pulse-glow 3s infinite;
}

@keyframes pulse-glow {
0%, 100% {
box-shadow:
0 6px 20px rgba(16, 185, 129, 0.4),
0 2px 4px rgba(0,0,0,0.1),
inset 0 -3px 0 rgba(0,0,0,0.2);
}
50% {
box-shadow:
0 8px 30px rgba(16, 185, 129, 0.6),
0 2px 4px rgba(0,0,0,0.1),
inset 0 -3px 0 rgba(0,0,0,0.2);
}
}

.special-cta-btn:hover, .main-free-trial-btn:hover {
transform: translateY(-4px) scale(1.05);
box-shadow:
0 10px 35px rgba(16, 185, 129, 0.5),
0 4px 8px rgba(0,0,0,0.15),
inset 0 -3px 0 rgba(0,0,0,0.3);
}

/* FREE TRIAL BLOCK - CORPORATE CARD STYLE */
.free-trial-block {
background: linear-gradient(135deg, var(--white) 0%, #FAFAFA 100%);
padding: 20px 20px;
max-width: 1200px;
margin: 50px auto;
border-radius: 30px;
box-shadow: var(--shadow-xl);
position: relative;
overflow: hidden;
text-align: center;
}

.free-trial-block::before {
content: '';
position: absolute;
top: -50%;
right: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, var(--light-purple) 0%, transparent 70%);
opacity: 0.05;
}

.free-trial-block h2 {
font-family: 'Poppins', sans-serif;
font-size: 34px;
font-weight: 700;
color: var(--text-dark);
line-height: 1.3;
letter-spacing: -0.5px;
text-align: center;
}

.free-trial-block .subheading {
font-size: 17px;
color: var(--text-medium);
line-height: 1.8;
max-width: 900px;
margin: 0px auto 50px;
text-align: center;
padding: 0 10px;
}

/* TRIAL COUNTER - MODERN STYLE */
.trial-counter {
background: linear-gradient(135deg, var(--corporate-gray), var(--white));
border-radius: 15px;
display: inline-block;
box-shadow: var(--shadow-md);
margin: 30px auto 40px;
text-align: center;
}

.counter-label {
color: var(--text-dark);
font-weight: 600;
font-size: 18px;
text-transform: uppercase;
letter-spacing: 1px;
}

.counter-number {
display: inline-block;
color: var(--accent-green);
font-weight: 700;
font-size: 32px;
margin-left: 10px;
text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.counter-number.low {
color: #F59E0B;
animation: pulse 2s infinite;
}

.counter-number.critical {
color: #EF4444;
animation: pulse 1s infinite;
font-size: 36px;
}

@keyframes pulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.1); }
}

/* SERVICE GRID - MODERN CARD LAYOUT */
.service-grid {
background: var(--white);
max-width: 1000px;
margin: 40px auto 0;
padding: 10px;
border-radius: 20px;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 80px;
box-shadow: var(--shadow-lg);
}

.service-column {
padding: 10px;
background: linear-gradient(135deg, #FAFAFA 0%, var(--white) 100%);
border-radius: 15px;
border: 1px solid #E5E7EB;
transition: all 0.3s ease;
animation: fadeIn 0.6s ease-out;
}

.service-column:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-xl);
border-color: var(--light-purple);
}

.service-column h3 {
color: var(--dark-purple);
font-size: 20px;
font-weight: 700;
margin-bottom: 25px;
font-family: 'Poppins', sans-serif;
letter-spacing: -0.5px;
}

.service-column ul {
list-style: none;
margin-bottom: 30px;
}

.service-column li {
color: var(--text-medium);
font-size: 14px;
margin-bottom: 15px;
padding-left: 25px;
position: relative;
line-height: 1.6;
transition: color 0.3s ease;
}

.service-column li:hover {
color: var(--text-dark);
}

.service-column li:before {
content: "→";
position: absolute;
left: 0;
color: var(--primary-purple);
font-weight: 700;
font-size: 16px;
}

/* SMALL PURPLE BUTTONS IN SERVICE GRID */
.purple-pill-small {
background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
color: var(--white);
border: none;
padding: 10px 20px;
border-radius: 50px;
cursor: pointer;
font-size: 12px;
font-weight: 600;
box-shadow:
0 3px 10px rgba(91, 58, 140, 0.3),
inset 0 -2px 0 rgba(0,0,0,0.2);
transition: all 0.3s ease;
width: 100%;
}

.purple-pill-small:hover {
transform: translateY(-2px);
box-shadow:
0 5px 15px rgba(91, 58, 140, 0.4),
inset 0 -2px 0 rgba(0,0,0,0.3);
}

/* TESTIMONY SLIDESHOW - PREMIUM DARK STYLE */
.testimony-slideshow {
background: linear-gradient(135deg, var(--dark-purple) 0%, #1F1230 100%);
padding: 40px 20px;
margin: 10px 0;
position: relative;
overflow: hidden;
}

.testimony-slideshow::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 30c-11.046 0-20 8.954-20 20s8.954 20 20 20 20-8.954 20-20-8.954-20-20-20zm0 35c-8.284 0-15-6.716-15-15s6.716-15 15-15 15 6.716 15 15-6.716 15-15 15z' fill='%23ffffff' fill-opacity='0.02'/%3E%3C/svg%3E");
}

.slideshow-container {
max-width: 1000px;
margin: 0 auto;
position: relative;
height: 450px;
}

.slide {
display: none;
text-align: center;
}

.slide.active {
display: block;
animation: fadeIn 0.5s ease;
}

.slide img {
max-width: 100%;
max-height: 400px;
border-radius: 15px;
box-shadow: var(--shadow-xl);
}

.slide-nav {
text-align: center;
margin-top: 30px;
}

.dot {
height: 12px;
width: 12px;
margin: 0 6px;
background-color: rgba(255, 255, 255, 0.3);
border-radius: 50%;
display: inline-block;
cursor: pointer;
transition: all 0.3s ease;
}

.dot.active, .dot:hover {
background-color: var(--white);
transform: scale(1.2);
}

/* SHORTCUT BUTTONS SECTION - FLOATING CARDS */
.shortcut-buttons {
max-width: 1200px;
margin: 80px auto;
text-align: center;
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
padding: 0 20px;
}

.shortcut-buttons .purple-pill {
padding: 18px 35px;
font-size: 14px;
flex: 1;
min-width: 200px;
max-width: 250px;
}

/* PROFILE BLOCKS - MODERN CARDS */
.profile-blocks {
max-width: 1200px;
margin: 80px auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: stretch;
padding: 0 20px;
}

.director-block {
background: linear-gradient(135deg, var(--dark-purple), var(--primary-purple));
color: var(--white);
padding: 60px 40px;
text-align: center;
border-radius: 20px;
font-size: 18px;
font-weight: 600;
box-shadow: var(--shadow-xl);
position: relative;
overflow: hidden;
}

.director-block::after {
content: '';
position: absolute;
top: -50%;
right: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}
/* BEAUTIFUL ELEGANT DIRECTOR STYLING */
.director-content {
    position: relative;
    z-index: 1;
}

.director-title {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

/* BEAUTIFUL FADING GREEN LINE */
.director-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-green), transparent);
    margin: 0 auto 25px;
    border-radius: 2px;
    animation: dividerGlow 3s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

@keyframes dividerGlow {
    0%, 100% { 
        opacity: 1; 
        width: 60px;
    }
    50% { 
        opacity: 0.8; 
        width: 80px;
    }
}

/* ELEGANT COMPANY NAME FONT */
.director-company {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    letter-spacing: 0.5px;
}

/* GRADIENT BORDER EFFECT */
.director-block::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-green), var(--primary-purple), var(--accent-green), var(--primary-purple));
    border-radius: 20px;
    background-size: 400% 400%;
    animation: gradientShift 10s ease infinite;
    opacity: 0.3;
    z-index: 0;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ENHANCED DIRECTOR BLOCK STYLES */
.director-header {
    position: relative;
    margin-bottom: 20px;
}

.director-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-green), #059669);
    color: white;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    animation: subtlePulse 3s ease-in-out infinite;
}

@keyframes subtlePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.02); opacity: 0.95; }
}

.director-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.director-ensures {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.director-ensures::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
}

.ensures-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.ensures-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--accent-green), transparent);
    margin-left: 15px;
}

.ensures-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ensures-list li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-bottom: 16px;
    padding-left: 35px;
    position: relative;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.ensures-list li:hover {
    color: white;
    transform: translateX(5px);
}

.check-icon {
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--accent-green), #059669);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(16, 185, 129, 0.3);
}

.director-connect-btn {
    background: linear-gradient(135deg, var(--accent-green), #059669);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    width: 100%;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
}

.director-connect-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.director-connect-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5);
}

.director-connect-btn:hover::before {
    left: 100%;
}

/* Enhanced director name styling */
.director-name {
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700, var(--accent-green));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 17px;
    text-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .director-description {
        font-size: 14px;
        padding-left: 15px;
    }
    
    .ensures-list li {
        font-size: 13px;
    }
    
    .director-ensures {
        padding: 20px 15px;
    }
}
.upwork-block {
background: var(--white);
padding: 40px;
text-align: center;
border-radius: 20px;
box-shadow: var(--shadow-lg);
display: flex;
flex-direction: column;
justify-content: center;
}

.upwork-block p {
margin: 20px 0;
color: var(--text-dark);
font-weight: 600;
font-size: 16px;
}

/* WORKFLOW BLOCK - GRADIENT ACCENT */
.workflow-block {
background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
color: var(--white);
padding: 10px 20px;
margin: 80px 0;
text-align: center;
position: relative;
overflow: hidden;
}

.workflow-block::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.workflow-block p {
font-size: 28px;
font-weight: 700;
letter-spacing: -0.5px;
position: relative;
z-index: 1;
}

/* NEXT STEPS - CLEAN CORPORATE STYLE */
.next-steps {
max-width: 1200px;
margin: 80px auto 100px;
text-align: center;
background: var(--white);
padding: 60px 40px;
border-radius: 30px;
box-shadow: var(--shadow-xl);
}

.next-steps h2 {
font-size: 32px;
margin-bottom: 50px;
color: var(--text-dark);
font-weight: 700;
font-family: 'Poppins', sans-serif;
letter-spacing: -0.5px;
}

.next-steps-buttons {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
}

.next-steps-buttons .purple-pill {
padding: 18px 35px;
font-size: 14px;
min-width: 200px;
}

/* MODAL STYLES - MODERN OVERLAY */
.modal {
display: none;
position: fixed;
z-index: 2000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7);
backdrop-filter: blur(5px);
animation: fadeIn 0.3s ease;
}

.modal-content {
background: linear-gradient(135deg, var(--white) 0%, #FAFAFA 100%);
margin: 5% auto;
padding: 50px;
border-radius: 20px;
width: 600px;
max-width: 90%;
position: relative;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
animation: slideUp 0.4s ease;
}

@keyframes slideUp {
from {
transform: translateY(50px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}

.close {
position: absolute;
right: 25px;
top: 25px;
font-size: 32px;
cursor: pointer;
color: var(--text-medium);
transition: color 0.3s ease;
background: var(--white);
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: var(--shadow-md);
}

.close:hover {
color: var(--primary-purple);
transform: rotate(90deg);
}

/* FORM INPUTS - MODERN DESIGN */
.calculator-inputs label {
display: block;
margin-bottom: 20px;
color: var(--text-dark);
font-weight: 600;
font-size: 14px;
text-transform: uppercase;
letter-spacing: 0.5px;
}

.calculator-inputs input,
.calculator-inputs select,
.calculator-inputs textarea {
width: 100%;
padding: 12px 16px;
border: 2px solid #E5E7EB;
border-radius: 10px;
margin-top: 8px;
font-size: 15px;
transition: all 0.3s ease;
background: var(--white);
font-family: 'Inter', sans-serif;
}

.calculator-inputs input:focus,
.calculator-inputs select:focus,
.calculator-inputs textarea:focus {
outline: none;
border-color: var(--primary-purple);
box-shadow: 0 0 0 3px rgba(91, 58, 140, 0.1);
}

.calculator-inputs button {
background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
color: var(--white);
border: none;
padding: 15px 35px;
border-radius: 50px;
cursor: pointer;
margin-top: 25px;
width: 100%;
font-size: 16px;
font-weight: 600;
letter-spacing: 0.5px;
box-shadow:
0 4px 15px rgba(91, 58, 140, 0.4),
0 2px 4px rgba(0,0,0,0.1),
inset 0 -2px 0 rgba(0,0,0,0.2);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.calculator-inputs button:hover {
transform: translateY(-2px);
box-shadow:
0 6px 20px rgba(91, 58, 140, 0.5),
0 3px 6px rgba(0,0,0,0.15),
inset 0 -2px 0 rgba(0,0,0,0.3);
}

/* ROI RESULT DISPLAY - PREMIUM CARD */
#roi-result {
margin-top: 30px;
padding: 20px;
background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
border: 2px solid var(--accent-green);
border-radius: 15px;
text-align: center;
font-size: 18px;
display: none;
box-shadow: 0 4px 15px rgba(16, 185, 129, 0.15);
}

#roi-result.show {
display: block;
animation: slideUp 0.4s ease;
}

#roi-result h3 {
color: var(--text-dark);
margin-bottom: 20px;
font-size: 24px;
font-weight: 700;
}

#roi-result p {
margin: 10px 0;
color: var(--text-medium);
}

/* RESPONSIVE DESIGN - MOBILE OPTIMIZATION */
@media (max-width: 1024px) {
.availability-roi-bar {
margin: 20px 20px 40px;
padding: 30px 20px;
}

text
.service-grid {
    grid-template-columns: 1fr;
    padding: 30px 20px;
}

.profile-blocks {
    grid-template-columns: 1fr;
    gap: 30px;
}
}

@media (max-width: 768px) {
.main-header h1 {
font-size: 36px;
padding: 0 20px;
}

text
.availability-roi-bar {
    flex-direction: column;
    gap: 30px;
    margin-top: 20px;
}

.top-action-buttons {
    position: relative;
    flex-direction: column;
    width: 100%;
    padding: 20px;
    align-items: center;
    top: 0;
    right: 0;
}

.top-action-buttons button {
    width: 100%;
    max-width: 300px;
}

.free-trial-block {
    padding: 20px 20px;
    margin: 40px 20px;
}

.free-trial-block h2 {
    font-size: 24px;
}

.service-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 20px 20px;
}

.service-column {
    padding: 15px;
}

.profile-blocks {
    grid-template-columns: 1fr;
    margin: 40px 20px;
}

.shortcut-buttons,
.next-steps-buttons {
    flex-direction: column;
    align-items: center;
}

.shortcut-buttons .purple-pill,
.next-steps-buttons .purple-pill {
    width: 100%;
    max-width: 300px;
}

.workflow-block p {
    font-size: 20px;
    padding: 0 20px;
}

.testimony-slideshow {
    padding: 60px 20px;
}

.slideshow-container {
    height: auto;
}

.slide img {
    max-height: 300px;
}

.modal-content {
    margin: 10% auto;
    padding: 30px;
    width: 95%;
}
}

@media (max-width: 480px) {
.main-header {
padding: 40px 20px 60px;
}

text
.main-header h1 {
    font-size: 28px;
}

.free-trial-block h2 {
    font-size: 20px;
}

.counter-number {
    font-size: 24px;
}

.next-steps h2 {
    font-size: 24px;
}
}

/* SMOOTH SCROLLING */
html {
scroll-behavior: smooth;
}

/* LOADING ANIMATIONS */
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

/* SELECTION COLORS */
::selection {
background-color: var(--primary-purple);
color: var(--white);
}

::-moz-selection {
background-color: var(--primary-purple);
color: var(--white);
}

/* SCROLLBAR STYLING */
::-webkit-scrollbar {
width: 12px;
}

::-webkit-scrollbar-track {
background: var(--corporate-gray);
}

::-webkit-scrollbar-thumb {
background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
background: var(--dark-purple);
}

/* HOVER EFFECTS FOR ALL INTERACTIVE ELEMENTS */
button {
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
cursor: pointer;
position: relative;
overflow: hidden;
}

button:active {
transform: scale(0.98);
}

/* UTILITY CLASSES */
.hidden {
display: none !important;
}

.visible {
display: block !important;
}

.text-center {
text-align: center;
}

.mt-20 {
margin-top: 20px;
}

.mb-20 {
margin-bottom: 20px;
}

/* PREMIUM HOVER EFFECTS */
a {
color: var(--primary-purple);
text-decoration: none;
transition: color 0.3s ease;
}

a:hover {
color: var(--dark-purple);
text-decoration: underline;
}

/* FOCUS STYLES FOR ACCESSIBILITY */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
outline: 3px solid rgba(91, 58, 140, 0.3);
outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
.top-action-buttons,
.testimony-slideshow,
.next-steps-buttons,
.modal {
display: none !important;
}

text
body {
    background: white;
}

.main-header {
    background: none;
    color: black;
    padding: 20px;
}

.main-header h1 {
    color: black;
}
}

/* ANIMATION DELAYS FOR STAGGERED EFFECTS */
.service-column:nth-child(1) { animation-delay: 0.1s; }
.service-column:nth-child(2) { animation-delay: 0.2s; }
.service-column:nth-child(3) { animation-delay: 0.3s; }

/* SPECIAL STATES */
.disabled {
opacity: 0.5;
cursor: not-allowed !important;
pointer-events: none;
}

.loading {
position: relative;
}

.loading::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 20px;
height: 20px;
margin: -10px 0 0 -10px;
border: 2px solid var(--white);
border-top-color: transparent;
border-radius: 50%;
animation: spin 0.8s linear infinite;
}

@keyframes spin {
to { transform: rotate(360deg); }
}

/* ENHANCED CARD SHADOWS ON HOVER */
.service-column:hover,
.availability-roi-bar:hover,
.free-trial-block:hover,
.next-steps:hover {
box-shadow:
0 20px 40px rgba(91, 58, 140, 0.15),
0 15px 25px rgba(0, 0, 0, 0.1);
}

/* FINAL POLISH - ENSURE CONSISTENT SPACING */
section {
padding: 40px 20px;
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Poppins', sans-serif;
font-weight: 700;
letter-spacing: -0.5px;
}

p {
line-height: 1.7;
}

/* ENSURE ALL BUTTONS HAVE 3D EFFECT /
button:not(.disabled) {
box-shadow:
0 4px 15px rgba(91, 58, 140, 0.3),
0 2px 4px rgba(0,0,0,0.1),
inset 0 -2px 0 rgba(0,0,0,0.2);
}
/ ENHANCED WORKFLOW DIAGRAM */
.workflow-block {
background: linear-gradient(135deg, #F7F8FA 0%, #E5E7EB 100%);
padding: 80px 20px;
margin: 80px 0;
}

.workflow-container {
max-width: 1400px;
margin: 0 auto;
}

.workflow-title {
font-family: 'Poppins', sans-serif;
font-size: 36px;
font-weight: 700;
color: var(--dark-purple);
text-align: center;
margin-bottom: 10px;
}

.workflow-subtitle {
font-size: 18px;
color: var(--text-medium);
text-align: center;
margin-bottom: 60px;
}

.workflow-diagram {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: flex-start;
gap: 30px;
padding: 40px 20px;
background: white;
border-radius: 20px;
box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* WORKFLOW STEPS */
.workflow-step {
background: white;
border: 2px solid #E5E7EB;
border-radius: 15px;
padding: 25px;
width: 280px;
min-height: 180px;
position: relative;
transition: all 0.3s ease;
box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.workflow-step:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(91, 58, 140, 0.2);
border-color: var(--light-purple);
}

.workflow-step.highlight {
background: linear-gradient(135deg, #F0F4FF, #F8F9FF);
border-color: var(--primary-purple);
}

.workflow-step.success {
background: linear-gradient(135deg, #E8F5E9, #F0FDF4);
border-color: var(--accent-green);
}

.step-number {
position: absolute;
top: -15px;
left: 20px;
background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
color: white;
width: 35px;
height: 35px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 16px;
box-shadow: 0 4px 10px rgba(91, 58, 140, 0.3);
}

.workflow-step.highlight .step-number {
background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
}

.workflow-step.success .step-number {
background: linear-gradient(135deg, var(--accent-green), #059669);
}

.step-content h3 {
color: var(--dark-purple);
font-size: 18px;
margin-bottom: 15px;
margin-top: 10px;
font-weight: 600;
}

.step-content ul {
list-style: none;
margin: 0;
padding: 0;
}

.step-content li {
color: var(--text-medium);
font-size: 13px;
margin-bottom: 8px;
padding-left: 20px;
position: relative;
line-height: 1.5;
}

.step-content li:before {
content: "•";
position: absolute;
left: 5px;
color: var(--primary-purple);
font-weight: bold;
}

/* WORKFLOW ARROWS */
.workflow-arrow {
color: var(--primary-purple);
font-size: 30px;
font-weight: bold;
display: flex;
align-items: center;
animation: pulse 2s infinite;
}

@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}

/* DECISION POINTS */
.workflow-decision {
display: flex;
flex-direction: column;
align-items: center;
width: 280px;
margin: 20px 0;
}

.decision-diamond {
width: 180px;
height: 100px;
background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
transform: rotate(0deg);
display: flex;
align-items: center;
justify-content: center;
border-radius: 20px;
position: relative;
box-shadow: 0 8px 25px rgba(91, 58, 140, 0.3);
}

.decision-diamond span {
color: white;
font-weight: 600;
font-size: 14px;
text-align: center;
padding: 10px;
}

.decision-paths {
display: flex;
gap: 20px;
margin-top: 15px;
}

.path-yes, .path-no {
padding: 8px 15px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
}

.path-yes {
background: linear-gradient(135deg, #10B981, #059669);
color: white;
}

.path-no {
background: linear-gradient(135deg, #F59E0B, #D97706);
color: white;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
.workflow-diagram {
flex-direction: column;
align-items: center;
}

text
.workflow-arrow {
    transform: rotate(90deg);
    margin: -10px 0;
}
}

@media (max-width: 768px) {
.workflow-step, .workflow-decision {
width: 100%;
max-width: 350px;
}

text
.workflow-title {
    font-size: 28px;
}
}

/* ENHANCED CORPORATE FOOTER */
.site-footer {
    background: linear-gradient(135deg, #1a0f2e 0%, #2D1B69 50%, #1a0f2e 100%);
    padding: 60px 20px 40px;
    margin-top: 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Animated glow line at top */
.footer-glow-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--accent-green), 
        var(--primary-purple), 
        var(--accent-green), 
        transparent);
    animation: glowMove 6s linear infinite;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

@keyframes glowMove {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Background pattern */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 50%, rgba(123, 92, 163, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 50%, rgba(16, 185, 129, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(91, 58, 140, 0.1) 0%, transparent 60%);
    animation: floatPattern 20s ease-in-out infinite;
}

@keyframes floatPattern {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.footer-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

/* Brand logo/text */
.footer-logo {
    margin-bottom: 25px;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-green), #059669, var(--light-purple));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
    letter-spacing: 1px;
}

/* Decorative divider */
.footer-divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
    margin: 25px auto;
    position: relative;
}

.footer-divider::before,
.footer-divider::after {
    content: '◆';
    position: absolute;
    color: var(--accent-green);
    font-size: 10px;
    top: -6px;
}

.footer-divider::before {
    left: -15px;
}

.footer-divider::after {
    right: -15px;
}

/* Main credit text */
.footer-credit {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* Highlight name */
.footer-highlight {
    font-weight: 700;
    font-size: 17px;
    background: linear-gradient(135deg, #FFD700, var(--accent-green));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(16, 185, 129, 0.4);
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-highlight:hover {
    transform: translateY(-2px);
    text-shadow: 0 4px 20px rgba(16, 185, 129, 0.6);
}

/* Separator */
.footer-separator {
    color: var(--primary-purple);
    font-weight: 300;
    font-size: 20px;
    margin: 0 15px;
    opacity: 0.6;
    animation: pulseSeparator 3s ease-in-out infinite;
}

@keyframes pulseSeparator {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Tech text */
.footer-tech {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-style: normal;  /* Changed from italic to normal */
    letter-spacing: 0.5px;
    position: relative;
}

/* Remove or comment out the ::before rule entirely */
/* 
.footer-tech::before {
    content: '✨';
    margin-right: 8px;
    animation: sparkle 2s ease-in-out infinite;
}
*/

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

/* Year */
.footer-year {
    margin-top: 30px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
    font-weight: 300;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .footer-brand {
        font-size: 28px;
    }
    
    .footer-credit {
        font-size: 14px;
        flex-direction: column;
        gap: 5px;
    }
    
    .footer-separator {
        display: none;
    }
    
    .site-footer {
        padding: 40px 20px 30px;
    }
}