<!-- 
  GRIP & FLOW DIGITAL - SHARED CSS STYLES
  
  INSTRUCTIONS:
  1. In HubSpot, go to Design Manager
  2. Find your theme's CSS file (or create a new CSS file)
  3. Copy and paste this entire CSS block
  4. Save and publish
  
  This CSS will be used by all the modules below.
-->

<style>
/* ===== GRIP & FLOW DIGITAL - BRAND VARIABLES ===== */
:root {
    --gfd-purple: #8B3A8B;
    --gfd-purple-dark: #6B2A6B;
    --gfd-purple-light: #AB5AAB;
    --gfd-orange: #FF8C00;
    --gfd-orange-dark: #E67D00;
    --gfd-gold: #FFB547;
    --gfd-white: #FFFFFF;
    --gfd-gray-light: #F5F5F5;
    --gfd-gray-medium: #E0E0E0;
    --gfd-gray-dark: #333333;
    --gfd-text-dark: #2C2C2C;
}

/* ===== CONTAINER ===== */
.gfd-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* ===== BUTTONS ===== */
.gfd-btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.gfd-btn-primary {
    background: var(--gfd-orange);
    color: var(--gfd-white);
}

.gfd-btn-primary:hover {
    background: var(--gfd-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.3);
    text-decoration: none;
    color: var(--gfd-white);
}

.gfd-btn-secondary {
    background: transparent;
    color: var(--gfd-purple);
    border: 2px solid var(--gfd-purple);
}

.gfd-btn-secondary:hover {
    background: var(--gfd-purple);
    color: var(--gfd-white);
    text-decoration: none;
}

.gfd-btn-white {
    background: var(--gfd-white);
    color: var(--gfd-orange);
    border: none;
}

.gfd-btn-white:hover {
    background: var(--gfd-gray-light);
    transform: translateY(-2px);
    text-decoration: none;
    color: var(--gfd-orange);
}

/* ===== TYPOGRAPHY ===== */
.gfd-heading-xl {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

.gfd-heading-lg {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.gfd-heading-md {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.4;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .gfd-heading-xl {
        font-size: 2rem;
    }
    
    .gfd-heading-lg {
        font-size: 1.8rem;
    }
    
    .gfd-heading-md {
        font-size: 1.5rem;
    }
    
    .gfd-section {
        padding: 50px 0;
    }
    
    .gfd-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}
</style>