:root {
    --primary-color: #2563eb;
    --secondary-color: #f8fafc;
    --accent-color: #059669;
    --text-dark: #1e293b;
    --gray-100: #f3f4f6;
    --gray-600: #6b7280;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Hero Section - Bootstrap Compatible */
.hero-section-container {
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
}
.hero-section {
    
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
#itsgeoff {
    background-repeat: no-repeat;
} 

.hero-robot {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Geoff Avatar & Robot Styling */
.geoff-avatar {
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Cards */
.card {
    background: var(--white);
    border: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.15);
}

/* Section Titles - Clean without underlines */
.section-title {
    position: relative;
    padding-bottom: 1rem;
}

/* Remove the old underline styling completely */
.section-title::after {
    display: none;
}

/* Pricing Badge */
.badge-custom {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    position: relative;
}

/* Pricing Card Special Effects */
.border-primary {
    border: 2px solid var(--primary-color) !important;
    position: relative;
}

.border-primary::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 0.75rem;
    z-index: -1;
    opacity: 0.1;
}

/* Footer Robot */
.footer-robot {
    animation: float 6s ease-in-out infinite;
    transition: transform 0.3s ease;
}

footer a {color: #fff;} 
.footer-robot:hover {
    transform: scale(1.1);
}

/* Tool Highlight Section - Geoff Blue Instead of Orange */
.tool-highlight {
    background: linear-gradient(135deg, var(--primary-color), #1d4ed8);
    color: white;
}

#meet-geoff {
    background-repeat: no-repeat;
    background-position: -24% bottom;
    padding-bottom: 14% !important;
    background-size: 48%;
}
/* Icon Box */
.icon-box {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

/* Metric Card - Keep Green Accent */
.metric-card {
    background: linear-gradient(135deg, var(--accent-color), #10b981);
    color: white;
    border-radius: 1rem;
}

/* Method Card */
.method-card {
    background: var(--secondary-color);
    border-left: 4px solid var(--primary-color);
}

/* Utility Classes */
.stats-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .stats-number {
        font-size: 2rem;
    }
}