<!-- 
  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.
-->
.gfd-hero {
    background-image: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(139, 58, 139, 0.4) 50%, rgba(0, 0, 0, 0.3) 100%),
        url('https://243485664.fs1.hubspotusercontent-na2.net/hubfs/243485664/Social%20media%20desk.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--gfd-white);
    padding: 140px 0 120px;
    text-align: left;
    position: relative;
}

.gfd-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    z-index: 1;
}

.gfd-hero .gfd-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.gfd-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.gfd-hero .subtitle {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.gfd-hero p {
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 0 40px;
    line-height: 1.7;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.gfd-hero .gfd-btn-primary {
    font-size: 1.2rem;
    padding: 18px 45px;
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.gfd-hero .gfd-btn-primary:hover {
    box-shadow: 0 12px 35px rgba(255, 140, 0, 0.7);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .gfd-hero {
        padding: 80px 0 70px;
        text-align: center;
    }
    
    .gfd-hero::before {
        background: rgba(0, 0, 0, 0.5);
    }
    
    .gfd-hero .gfd-container {
        max-width: 100%;
    }
    
    .gfd-hero h1 {
        font-size: 2.2rem;
    }

    .gfd-hero .subtitle {
        font-size: 1.3rem;
    }
    
    .gfd-hero p {
        font-size: 1.05rem;
    }
    
    .gfd-hero .gfd-btn-primary {
        font-size: 1.05rem;
        padding: 16px 35px;
    }
}
<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>