/*
Theme Name: Blessed Talks Theme
Theme URI: https://blessedtalks.com
Author: Blessed Talks
Author URI: https://growthlife.in
Description: A clean, lightweight, Elementor-compatible WordPress theme with blue and white design. Minimal, fast, and fully responsive.
Version: 2.0.0
Requires at least: 5.0
Tested up to: 6.8
Requires PHP: 7.2
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: blessedtalks
Tags: blog, portfolio, custom-background, custom-colors, custom-logo, custom-menu, featured-images, full-width-template, one-column, responsive-layout, rtl-language-support, theme-options, threaded-comments, translation-ready, block-styles, wide-blocks, accessibility-ready, elementor
*/

/* ==========================================================================
   GROWTHFLOW - CSS CUSTOM PROPERTIES (VARIABLES)
   ========================================================================== */

:root {
    /* Brand Colors - matching Blessed Talks screenshots */
    --gf-primary:         #2D2DE0;
    --gf-primary-dark:    #1a1aB8;
    --gf-primary-light:   #EEF2FF;
    --gf-primary-mid:     #C7D2FE;
    --gf-accent:          #3333CC;
    --gf-accent-hover:    #2222AA;

    /* Neutral Colors */
    --gf-white:           #FFFFFF;
    --gf-bg-page:         #F0F4FF;
    --gf-bg-section:      #F8F9FF;
    --gf-bg-soft:         #EEF2FF;
    --gf-border:          #E2E8F0;
    --gf-border-light:    #F1F5F9;

    /* Text Colors */
    --gf-text-dark:       #1E1B4B;
    --gf-text-body:       #374151;
    --gf-text-muted:      #6B7280;
    --gf-text-light:      #9CA3AF;

    /* Typography */
    --gf-font-heading:    'Plus Jakarta Sans', 'Montserrat', sans-serif;
    --gf-font-body:       'Inter', sans-serif;
    --gf-font-accent:     'Caveat', cursive;

    /* Spacing */
    --gf-radius-sm:       6px;
    --gf-radius-md:       12px;
    --gf-radius-lg:       20px;
    --gf-radius-full:     9999px;

    /* Shadows - very light for performance */
    --gf-shadow-sm:       0 1px 3px rgba(45, 45, 224, 0.08);
    --gf-shadow-md:       0 4px 16px rgba(45, 45, 224, 0.10);
    --gf-shadow-card:     0 2px 12px rgba(45, 45, 224, 0.07);

    /* Accents */
    --gf-gold:            #E2A93B;
    --gf-gradient:        linear-gradient(135deg, #2D2DE0 0%, #4F46E5 100%);

    /* Transitions */
    --gf-transition:      0.2s ease;
    --gf-transition-slow: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--gf-font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gf-text-body);
    background-color: var(--gf-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--gf-primary);
    text-decoration: none;
    transition: color var(--gf-transition);
}

a:hover {
    color: var(--gf-accent-hover);
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

p {
    margin: 0 0 1rem;
}

p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   TYPOGRAPHY - HEADINGS (Montserrat)
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--gf-font-heading);
    color: var(--gf-text-dark);
    line-height: 1.3;
    font-weight: 700;
    margin: 0 0 1rem;
}

h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 600;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
}

h5 {
    font-size: 1rem;
    font-weight: 600;
}

h6 {
    font-size: 0.875rem;
    font-weight: 600;
}

/* Section label (small uppercase text above headings) */
.gf-section-label {
    display: inline-block;
    font-family: var(--gf-font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gf-primary);
    margin-bottom: 0.75rem;
}

/* ==========================================================================
   LAYOUT HELPERS
   ========================================================================== */

.gf-container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.gf-section {
    padding: 72px 0;
}

.gf-section--sm {
    padding: 48px 0;
}

.gf-section--lg {
    padding: 96px 0;
}

.gf-section--bg-white   { background-color: var(--gf-white); }
.gf-section--bg-light   { background-color: var(--gf-bg-section); }
.gf-section--bg-soft    { background-color: var(--gf-bg-soft); }
.gf-section--bg-page    { background-color: var(--gf-bg-page); }
.gf-section--bg-primary { background-color: var(--gf-primary); }
.gf-section--bg-dark    { background-color: var(--gf-text-dark); }

.gf-text-center { text-align: center; }
.gf-text-left   { text-align: left; }
.gf-text-right  { text-align: right; }

.gf-grid {
    display: grid;
    gap: 24px;
}

.gf-grid--2 { grid-template-columns: repeat(2, 1fr); }
.gf-grid--3 { grid-template-columns: repeat(3, 1fr); }
.gf-grid--4 { grid-template-columns: repeat(4, 1fr); }

.gf-flex {
    display: flex;
    align-items: center;
}

.gf-flex--between {
    justify-content: space-between;
}

.gf-flex--center {
    justify-content: center;
}

.gf-flex--gap-sm { gap: 12px; }
.gf-flex--gap-md { gap: 24px; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.gf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--gf-font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1;
    border-radius: var(--gf-radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--gf-transition);
    text-decoration: none;
    white-space: nowrap;
}

.gf-btn--primary {
    background-color: var(--gf-primary);
    color: var(--gf-white);
    border-color: var(--gf-primary);
}

.gf-btn--primary:hover {
    background-color: var(--gf-primary-dark);
    border-color: var(--gf-primary-dark);
    color: var(--gf-white);
    transform: translateY(-1px);
    box-shadow: var(--gf-shadow-md);
}

.gf-btn--outline {
    background-color: transparent;
    color: var(--gf-primary);
    border-color: var(--gf-border);
}

.gf-btn--outline:hover {
    border-color: var(--gf-primary);
    background-color: var(--gf-primary-light);
    color: var(--gf-primary);
}

.gf-btn--outline-white {
    background-color: transparent;
    color: var(--gf-white);
    border-color: rgba(255,255,255,0.4);
}

.gf-btn--outline-white:hover {
    background-color: rgba(255,255,255,0.15);
    color: var(--gf-white);
    border-color: rgba(255,255,255,0.7);
}

.gf-btn--white {
    background-color: var(--gf-white);
    color: var(--gf-primary);
    border-color: var(--gf-white);
}

.gf-btn--white:hover {
    background-color: var(--gf-primary-light);
    color: var(--gf-primary-dark);
}

.gf-btn--sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.gf-btn--lg {
    padding: 18px 36px;
    font-size: 1rem;
}

.gf-btn--light {
    background-color: var(--gf-primary-light);
    color: var(--gf-primary);
    border-color: var(--gf-primary-mid);
}

.gf-btn--light:hover {
    background-color: var(--gf-primary-mid);
    color: var(--gf-primary-dark);
}

/* ==========================================================================
   CARDS
   ========================================================================== */

.gf-card {
    background: var(--gf-white);
    border: 1px solid var(--gf-border);
    border-radius: var(--gf-radius-md);
    padding: 28px;
    transition: box-shadow var(--gf-transition), transform var(--gf-transition);
}

.gf-card:hover {
    box-shadow: var(--gf-shadow-md);
    transform: translateY(-2px);
}

.gf-card--flat {
    box-shadow: none;
}

.gf-card--flat:hover {
    transform: none;
    box-shadow: var(--gf-shadow-sm);
}

.gf-card--soft {
    background: var(--gf-bg-soft);
    border-color: var(--gf-primary-mid);
}

.gf-card__icon {
    width: 48px;
    height: 48px;
    background: var(--gf-primary-light);
    border-radius: var(--gf-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--gf-primary);
    font-size: 1.25rem;
}

.gf-card__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gf-primary);
    background: var(--gf-primary-light);
    padding: 4px 12px;
    border-radius: var(--gf-radius-full);
    margin-bottom: 12px;
}

.gf-card__tag--muted {
    color: var(--gf-text-muted);
    background: var(--gf-bg-section);
}

.gf-card__arrow {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 16px;
    color: var(--gf-primary);
    font-size: 1.1rem;
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */

.gf-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--gf-border-light);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.gf-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 24px;
}

/* Logo */
.gf-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.gf-logo__circle {
    width: 38px;
    height: 38px;
    background: var(--gf-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gf-white);
    font-family: var(--gf-font-heading);
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

.gf-logo__text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.gf-logo__name {
    font-family: var(--gf-font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gf-text-dark);
}

.gf-logo__tagline {
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--gf-text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Nav menu */
.gf-nav__menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.gf-nav__menu li a {
    display: block;
    padding: 8px 14px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gf-text-body);
    border-radius: var(--gf-radius-sm);
    transition: all var(--gf-transition);
    text-decoration: none;
}

.gf-nav__menu li a:hover,
.gf-nav__menu li.current-menu-item > a,
.gf-nav__menu li.current_page_item > a {
    color: var(--gf-primary);
    background: var(--gf-primary-light);
}

/* Dropdown */
.gf-nav__menu .menu-item-has-children {
    position: relative;
}

.gf-nav__menu .sub-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 200px;
    background: var(--gf-white);
    border: 1px solid var(--gf-border);
    border-radius: var(--gf-radius-md);
    box-shadow: var(--gf-shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--gf-transition);
    z-index: 100;
    padding: 8px;
}

.gf-nav__menu .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.gf-nav__menu .sub-menu li a {
    padding: 9px 14px;
    font-size: 0.875rem;
    border-radius: var(--gf-radius-sm);
}

/* Mobile hamburger */
.gf-nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: 1px solid var(--gf-border);
    border-radius: var(--gf-radius-sm);
    cursor: pointer;
    padding: 8px;
}

.gf-nav__toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gf-text-dark);
    border-radius: 2px;
    transition: all var(--gf-transition);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.gf-hero {
    background-color: var(--gf-bg-page);
    padding: 80px 0 64px;
    overflow: hidden;
}

.gf-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.gf-hero__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--gf-primary);
    background: var(--gf-primary-light);
    padding: 5px 14px;
    border-radius: var(--gf-radius-full);
    margin-bottom: 20px;
}

.gf-hero h1 {
    margin-bottom: 16px;
    color: var(--gf-text-dark);
}

.gf-hero h1 .highlight {
    color: var(--gf-primary);
}

.gf-hero__desc {
    font-size: 1rem;
    color: var(--gf-text-muted);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 480px;
}

.gf-hero__buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.gf-hero__image {
    position: relative;
}

.gf-hero__image-wrap {
    position: relative;
    border-radius: var(--gf-radius-lg);
    overflow: hidden;
    background: var(--gf-primary-mid);
    aspect-ratio: 4/5;
}

.gf-hero__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--gf-radius-lg);
}

.gf-hero__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gf-white);
    border: 1px solid var(--gf-border);
    border-radius: var(--gf-radius-sm);
    padding: 8px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gf-text-dark);
    box-shadow: var(--gf-shadow-sm);
    display: flex;
    align-items: center;
    gap: 6px;
}

.gf-hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gf-primary);
    border-radius: 50%;
}

.gf-hero__founder-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--gf-white);
    border: 1px solid var(--gf-border);
    border-radius: var(--gf-radius-sm);
    padding: 10px 16px;
    box-shadow: var(--gf-shadow-sm);
}

.gf-hero__founder-tag .label {
    font-size: 0.65rem;
    color: var(--gf-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.gf-hero__founder-tag .name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gf-text-dark);
    font-family: var(--gf-font-heading);
}

/* ==========================================================================
   STATS STRIP
   ========================================================================== */

.gf-stats {
    background: var(--gf-white);
    border-top: 1px solid var(--gf-border-light);
    border-bottom: 1px solid var(--gf-border-light);
    padding: 32px 0;
}

.gf-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.gf-stats__item {
    text-align: center;
    padding: 8px 24px;
    border-right: 1px solid var(--gf-border-light);
}

.gf-stats__item:last-child {
    border-right: none;
}

.gf-stats__number {
    font-family: var(--gf-font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--gf-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.gf-stats__label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gf-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ==========================================================================
   OFFERINGS / PRICING CARDS
   ========================================================================== */

.gf-offering-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.gf-offering-card {
    background: var(--gf-white);
    border: 1px solid var(--gf-border);
    border-radius: var(--gf-radius-md);
    padding: 32px 28px;
    position: relative;
    transition: box-shadow var(--gf-transition), transform var(--gf-transition);
}

.gf-offering-card:hover {
    box-shadow: var(--gf-shadow-md);
    transform: translateY(-3px);
}

.gf-offering-card__badge {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: var(--gf-radius-full);
    background: var(--gf-primary-light);
    color: var(--gf-primary);
}

.gf-offering-card__badge--muted {
    background: var(--gf-bg-section);
    color: var(--gf-text-muted);
}

.gf-offering-card__icon {
    width: 48px;
    height: 48px;
    background: var(--gf-primary-light);
    border-radius: var(--gf-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--gf-primary);
}

.gf-offering-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--gf-text-dark);
}

.gf-offering-card p {
    font-size: 0.9rem;
    color: var(--gf-text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.gf-offering-card__price {
    font-family: var(--gf-font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--gf-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.gf-offering-card__price-sub {
    font-size: 0.8rem;
    color: var(--gf-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
}

.gf-offering-card__features {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gf-offering-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--gf-text-body);
}

.gf-offering-card__features li::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    min-width: 16px;
    background: var(--gf-primary-light);
    border-radius: 50%;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%232D2DE0' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.gf-offering-card .gf-btn {
    width: 100%;
    justify-content: center;
}

/* ==========================================================================
   QUOTE / TESTIMONIAL STRIP
   ========================================================================== */

.gf-quote-strip {
    background: var(--gf-bg-soft);
    padding: 72px 0;
    text-align: center;
}

.gf-quote-strip__icon {
    font-size: 3rem;
    color: var(--gf-primary-mid);
    line-height: 1;
    margin-bottom: 24px;
    font-family: Georgia, serif;
}

.gf-quote-strip blockquote {
    margin: 0;
    font-family: var(--gf-font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.875rem);
    font-weight: 600;
    color: var(--gf-primary);
    line-height: 1.4;
    max-width: 820px;
    margin: 0 auto 20px;
}

.gf-quote-strip__author {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gf-text-muted);
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.gf-testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gf-testi-card {
    background: var(--gf-white);
    border: 1px solid var(--gf-border);
    border-radius: var(--gf-radius-md);
    padding: 24px;
}

.gf-testi-card__stars {
    color: #F59E0B;
    font-size: 0.875rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.gf-testi-card blockquote {
    margin: 0 0 16px;
    font-size: 0.9rem;
    color: var(--gf-text-body);
    line-height: 1.75;
    font-style: italic;
}

.gf-testi-card__author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gf-testi-card__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gf-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--gf-font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--gf-primary);
    flex-shrink: 0;
}

.gf-testi-card__name {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--gf-text-dark);
}

.gf-testi-card__role {
    font-size: 0.75rem;
    color: var(--gf-text-muted);
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */

.gf-cta {
    background: var(--gf-primary);
    border-radius: var(--gf-radius-lg);
    padding: 64px 48px;
    text-align: center;
    margin: 0 24px 72px;
}

.gf-cta h2 {
    color: var(--gf-white);
    margin-bottom: 14px;
}

.gf-cta p {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   FAQ / ACCORDION
   ========================================================================== */

.gf-faq {
    max-width: 720px;
    margin: 0 auto;
}

.gf-faq__item {
    background: var(--gf-white);
    border: 1px solid var(--gf-border);
    border-radius: var(--gf-radius-md);
    margin-bottom: 12px;
    overflow: hidden;
}

.gf-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--gf-text-dark);
    transition: color var(--gf-transition);
    user-select: none;
    gap: 16px;
}

.gf-faq__question:hover {
    color: var(--gf-primary);
}

.gf-faq__icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1.5px solid var(--gf-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gf-text-muted);
    transition: all var(--gf-transition);
    font-size: 0.875rem;
}

.gf-faq__item.is-open .gf-faq__icon {
    background: var(--gf-primary-light);
    border-color: var(--gf-primary-mid);
    color: var(--gf-primary);
    transform: rotate(45deg);
}

.gf-faq__answer {
    display: none;
    padding: 0 24px 20px;
    font-size: 0.9rem;
    color: var(--gf-text-muted);
    line-height: 1.75;
}

.gf-faq__item.is-open .gf-faq__answer {
    display: block;
}

.gf-faq__item.is-open .gf-faq__question {
    color: var(--gf-primary);
    padding-bottom: 12px;
}

/* ==========================================================================
   CONTACT FORM
   ========================================================================== */

.gf-contact-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    align-items: start;
}

.gf-form-card {
    background: var(--gf-white);
    border: 1px solid var(--gf-border);
    border-radius: var(--gf-radius-md);
    padding: 36px;
}

.gf-form-card h2 {
    margin-bottom: 6px;
    font-size: 1.5rem;
}

.gf-form-card > p {
    color: var(--gf-text-muted);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

.gf-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.gf-form-group {
    margin-bottom: 20px;
}

.gf-form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gf-text-dark);
    margin-bottom: 8px;
}

.gf-form-group input,
.gf-form-group select,
.gf-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--gf-font-body);
    font-size: 0.9rem;
    color: var(--gf-text-dark);
    background: var(--gf-white);
    border: 1px solid var(--gf-border);
    border-radius: var(--gf-radius-full);
    transition: border-color var(--gf-transition), box-shadow var(--gf-transition);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.gf-form-group textarea {
    border-radius: var(--gf-radius-md);
    min-height: 130px;
    resize: vertical;
}

.gf-form-group input:focus,
.gf-form-group select:focus,
.gf-form-group textarea:focus {
    border-color: var(--gf-primary);
    box-shadow: 0 0 0 3px rgba(45, 45, 224, 0.08);
}

.gf-form-group input::placeholder,
.gf-form-group textarea::placeholder {
    color: var(--gf-text-light);
}

.gf-contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.gf-contact-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--gf-white);
    border: 1px solid var(--gf-border);
    border-radius: var(--gf-radius-md);
    padding: 18px 20px;
}

.gf-contact-info-card__icon {
    width: 44px;
    height: 44px;
    background: var(--gf-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gf-primary);
    flex-shrink: 0;
    font-size: 1.1rem;
}

.gf-contact-info-card__label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gf-text-muted);
    margin-bottom: 2px;
}

.gf-contact-info-card__value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gf-primary);
}

.gf-social-card {
    background: var(--gf-bg-soft);
    border: 1px solid var(--gf-primary-mid);
    border-radius: var(--gf-radius-md);
    padding: 20px;
}

.gf-social-card__label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gf-text-muted);
    margin-bottom: 14px;
}

.gf-social-icons {
    display: flex;
    gap: 10px;
}

.gf-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gf-white);
    border: 1px solid var(--gf-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gf-primary);
    font-size: 0.875rem;
    text-decoration: none;
    transition: all var(--gf-transition);
}

.gf-social-icon:hover {
    background: var(--gf-primary);
    color: var(--gf-white);
    border-color: var(--gf-primary);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.gf-footer {
    background: var(--gf-white);
    border-top: 1px solid var(--gf-border-light);
    padding: 56px 0 0;
}

.gf-footer__grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

.gf-footer__brand p {
    font-size: 0.875rem;
    color: var(--gf-text-muted);
    line-height: 1.8;
    margin-top: 14px;
    max-width: 280px;
}

.gf-footer__brand .gf-logo {
    margin-bottom: 0;
}

.gf-footer__col-title {
    font-family: var(--gf-font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gf-text-dark);
    margin-bottom: 16px;
}

.gf-footer__col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gf-footer__col ul li a {
    font-size: 0.875rem;
    color: var(--gf-text-muted);
    text-decoration: none;
    transition: color var(--gf-transition);
}

.gf-footer__col ul li a:hover {
    color: var(--gf-primary);
}

.gf-footer__col ul li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--gf-text-muted);
}

.gf-footer__bottom {
    border-top: 1px solid var(--gf-border-light);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.gf-footer__bottom p {
    font-size: 0.8125rem;
    color: var(--gf-text-light);
    margin: 0;
}

.gf-footer__bottom-links {
    display: flex;
    gap: 20px;
}

.gf-footer__bottom-links a {
    font-size: 0.8125rem;
    color: var(--gf-text-light);
    text-decoration: none;
    transition: color var(--gf-transition);
}

.gf-footer__bottom-links a:hover {
    color: var(--gf-primary);
}

/* ==========================================================================
   PAGE HEADER / BANNER
   ========================================================================== */

.gf-page-header {
    background: var(--gf-bg-page);
    padding: 64px 0 56px;
    text-align: center;
}

.gf-page-header h1 {
    margin-bottom: 12px;
}

.gf-page-header h1 .highlight {
    color: var(--gf-primary);
}

.gf-page-header p {
    font-size: 1rem;
    color: var(--gf-text-muted);
    max-width: 560px;
    margin: 0 auto;
}

/* ==========================================================================
   CONTENT AREA (Blog, Pages)
   ========================================================================== */

.gf-content {
    padding: 72px 0;
}

.gf-content-wrap {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

.gf-content-wrap--full {
    grid-template-columns: 1fr;
}

.gf-entry h1,
.gf-entry h2,
.gf-entry h3,
.gf-entry h4 {
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
}

.gf-entry p {
    margin-bottom: 1.25rem;
    color: var(--gf-text-body);
    font-size: 1rem;
    line-height: 1.8;
}

.gf-entry ul,
.gf-entry ol {
    margin: 0 0 1.25rem 1.5rem;
    padding: 0;
    list-style: initial;
}

.gf-entry ul li,
.gf-entry ol li {
    margin-bottom: 0.5rem;
    color: var(--gf-text-body);
    line-height: 1.7;
}

.gf-entry ol {
    list-style: decimal;
}

.gf-entry blockquote {
    margin: 1.5rem 0;
    padding: 20px 24px;
    border-left: 4px solid var(--gf-primary);
    background: var(--gf-primary-light);
    border-radius: 0 var(--gf-radius-sm) var(--gf-radius-sm) 0;
}

.gf-entry blockquote p {
    margin: 0;
    font-size: 1rem;
    color: var(--gf-primary);
    font-style: italic;
}

.gf-entry a {
    color: var(--gf-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.gf-entry table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.gf-entry table th,
.gf-entry table td {
    padding: 10px 14px;
    border: 1px solid var(--gf-border);
    text-align: left;
}

.gf-entry table th {
    background: var(--gf-bg-soft);
    font-weight: 600;
    color: var(--gf-text-dark);
}

/* Sidebar */
.gf-sidebar__widget {
    background: var(--gf-white);
    border: 1px solid var(--gf-border);
    border-radius: var(--gf-radius-md);
    padding: 24px;
    margin-bottom: 24px;
}

.gf-sidebar__widget-title {
    font-family: var(--gf-font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gf-text-dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gf-border-light);
}

/* Blog Grid */
.gf-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gf-post-card {
    background: var(--gf-white);
    border: 1px solid var(--gf-border);
    border-radius: var(--gf-radius-md);
    overflow: hidden;
    transition: box-shadow var(--gf-transition), transform var(--gf-transition);
}

.gf-post-card:hover {
    box-shadow: var(--gf-shadow-md);
    transform: translateY(-3px);
}

.gf-post-card__thumb {
    aspect-ratio: 16/9;
    background: var(--gf-bg-soft);
    overflow: hidden;
}

.gf-post-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gf-post-card:hover .gf-post-card__thumb img {
    transform: scale(1.03);
}

.gf-post-card__body {
    padding: 20px;
}

.gf-post-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    color: var(--gf-text-muted);
    margin-bottom: 10px;
}

.gf-post-card__cat {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gf-primary);
    background: var(--gf-primary-light);
    padding: 3px 10px;
    border-radius: var(--gf-radius-full);
    text-decoration: none;
}

.gf-post-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.gf-post-card h3 a {
    color: var(--gf-text-dark);
    text-decoration: none;
    transition: color var(--gf-transition);
}

.gf-post-card h3 a:hover {
    color: var(--gf-primary);
}

.gf-post-card p {
    font-size: 0.875rem;
    color: var(--gf-text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gf-post-card__footer {
    padding: 14px 20px;
    border-top: 1px solid var(--gf-border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.gf-mt-0  { margin-top: 0; }
.gf-mb-0  { margin-bottom: 0; }
.gf-mt-sm { margin-top: 12px; }
.gf-mb-sm { margin-bottom: 12px; }
.gf-mt-md { margin-top: 24px; }
.gf-mb-md { margin-bottom: 24px; }
.gf-mt-lg { margin-top: 48px; }
.gf-mb-lg { margin-bottom: 48px; }

.gf-text-primary { color: var(--gf-primary); }
.gf-text-muted   { color: var(--gf-text-muted); }
.gf-text-dark    { color: var(--gf-text-dark); }

.gf-fw-400 { font-weight: 400; }
.gf-fw-500 { font-weight: 500; }
.gf-fw-600 { font-weight: 600; }
.gf-fw-700 { font-weight: 700; }

.gf-divider {
    height: 1px;
    background: var(--gf-border-light);
    margin: 0;
    border: none;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--gf-primary);
    color: var(--gf-white);
    padding: 8px 16px;
    z-index: 9999;
    border-radius: 0 0 var(--gf-radius-sm) 0;
    font-size: 0.875rem;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

/* Screen reader only */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   ELEMENTOR COMPATIBILITY
   ========================================================================== */

.elementor-section,
.elementor-inner-section {
    width: 100%;
}

.elementor-widget-text-editor p {
    color: var(--gf-text-body);
}

.elementor-widget-heading h1,
.elementor-widget-heading h2,
.elementor-widget-heading h3 {
    font-family: var(--gf-font-heading);
}

/* Elementor button overrides */
.elementor-button {
    font-family: var(--gf-font-body);
    border-radius: var(--gf-radius-full);
}

/* No conflict with Elementor grid */
.elementor .gf-container {
    padding: 0;
}

/* ==========================================================================
   WOOCOMMERCE COMPATIBILITY
   ========================================================================== */

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce #payment #place_order {
    background: var(--gf-primary);
    color: var(--gf-white);
    border-radius: var(--gf-radius-full);
    font-family: var(--gf-font-body);
    font-weight: 600;
    border: none;
    padding: 12px 24px;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover {
    background: var(--gf-primary-dark);
    color: var(--gf-white);
}

/* ==========================================================================
   WORDPRESS BLOCK EDITOR (Gutenberg)
   ========================================================================== */

.wp-block-image img {
    border-radius: var(--gf-radius-md);
}

.wp-block-quote {
    border-left: 4px solid var(--gf-primary);
    padding-left: 20px;
    background: var(--gf-primary-light);
    border-radius: 0 var(--gf-radius-sm) var(--gf-radius-sm) 0;
    padding: 16px 20px;
    margin: 1.5rem 0;
}

.wp-block-quote p {
    color: var(--gf-primary);
    font-style: italic;
}

.wp-block-button__link {
    background: var(--gf-primary);
    border-radius: var(--gf-radius-full);
    font-family: var(--gf-font-body);
    font-weight: 600;
}

.wp-block-button__link:hover {
    background: var(--gf-primary-dark);
}

/* ==========================================================================
   RESPONSIVE - TABLET (max-width: 1024px)
   ========================================================================== */

@media (max-width: 1024px) {
    .gf-offering-cards {
        grid-template-columns: 1fr 1fr;
    }

    .gf-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .gf-blog-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gf-content-wrap {
        grid-template-columns: 1fr 280px;
    }

    .gf-contact-layout {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   RESPONSIVE - MOBILE (max-width: 768px)
   ========================================================================== */

@media (max-width: 768px) {
    .gf-hero {
        padding: 48px 0 40px;
    }

    .gf-hero__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .gf-hero__image {
        order: -1;
        max-width: 320px;
        margin: 0 auto;
    }

    .gf-hero__desc {
        max-width: 100%;
    }

    .gf-stats__grid {
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .gf-stats__item {
        border-bottom: 1px solid var(--gf-border-light);
    }

    .gf-stats__item:nth-child(2n) {
        border-right: none;
    }

    .gf-stats__item:nth-child(3),
    .gf-stats__item:nth-child(4) {
        border-bottom: none;
    }

    .gf-offering-cards {
        grid-template-columns: 1fr;
    }

    .gf-testi-grid {
        grid-template-columns: 1fr;
    }

    .gf-footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .gf-footer__brand p {
        max-width: 100%;
    }

    .gf-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .gf-blog-grid {
        grid-template-columns: 1fr;
    }

    .gf-content-wrap {
        grid-template-columns: 1fr;
    }

    .gf-cta {
        padding: 40px 24px;
        margin: 0 16px 48px;
    }

    .gf-section {
        padding: 48px 0;
    }

    .gf-form-row {
        grid-template-columns: 1fr;
    }

    .gf-grid--2,
    .gf-grid--3,
    .gf-grid--4 {
        grid-template-columns: 1fr;
    }

    .gf-nav__menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--gf-white);
        border-bottom: 1px solid var(--gf-border);
        padding: 16px;
        flex-direction: column;
        align-items: stretch;
        z-index: 999;
        box-shadow: var(--gf-shadow-md);
    }

    .gf-nav__menu.is-open {
        display: flex;
    }

    .gf-nav__menu li a {
        padding: 12px 16px;
        font-size: 1rem;
    }

    .gf-nav__menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding-left: 16px;
        background: var(--gf-bg-section);
        border-radius: var(--gf-radius-sm);
        margin-top: 4px;
        margin-bottom: 4px;
    }

    .gf-nav__toggle {
        display: flex;
    }

    .gf-header__cta {
        display: none;
    }
}

@media (max-width: 480px) {
    .gf-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.375rem;
    }

    .gf-hero__buttons {
        flex-direction: column;
    }

    .gf-hero__buttons .gf-btn {
        width: 100%;
        justify-content: center;
    }

    .gf-quote-strip blockquote {
        font-size: 1.125rem;
    }

    .gf-form-card {
        padding: 24px;
    }

    .gf-offering-card {
        padding: 24px 20px;
    }
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */

@media print {
    .gf-header,
    .gf-footer,
    .gf-nav__toggle,
    .gf-cta {
        display: none;
    }

    body {
        color: #000;
        background: #fff;
    }

    a {
        color: #000;
        text-decoration: underline;
    }
}

/* ==========================================================================
   ABOUT PAGE STYLES
   ========================================================================== */

.gf-page-about {
    max-width: 860px;
    margin: 0 auto;
}

.gf-about-intro,
.gf-about-values,
.gf-about-journey {
    margin-bottom: 48px;
    padding: 36px;
    background: var(--gf-white);
    border: 1px solid var(--gf-border);
    border-radius: var(--gf-radius-md);
}

.gf-about-intro h2,
.gf-about-values h2,
.gf-about-journey h2 {
    font-size: 1.375rem;
    color: var(--gf-text-dark);
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gf-primary-light);
}

.gf-about-journey ul {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.gf-about-journey ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gf-primary);
    background: var(--gf-primary-light);
    padding: 10px 16px;
    border-radius: var(--gf-radius-sm);
}

.gf-about-journey ul li::before {
    content: '✓';
    font-weight: 700;
}

/* ==========================================================================
   PRICING PAGE STYLES
   ========================================================================== */

.gf-pricing-page {
    padding: 0;
}

/* ==========================================================================
   ADMIN DASHBOARD STYLES
   ========================================================================== */

.growthflow-admin-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    text-decoration: none;
    display: block;
    transition: box-shadow 0.2s;
}

.growthflow-admin-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .gf-about-journey ul {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   V2.0 — FULL-WIDTH LAYOUT, RESPONSIVE UTILITIES & LOVABLE-REFERENCE POLISH
   ========================================================================== */

/* Elementor pages render truly full width */
.gf-elementor-page {
    width: 100%;
    overflow-x: clip;
}

/* Inner wrapper used inside full-width Elementor bands (Advanced → CSS Classes: gf-inner) */
.gf-inner {
    width: 100% !important;
    max-width: 1240px;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Header actions group */
.gf-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.gf-header__cta {
    padding: 10px 22px;
    font-size: 0.85rem;
    border-radius: var(--gf-radius-full);
    white-space: nowrap;
}

/* Footer additions */
.gf-footer__tagline-line {
    font-family: var(--gf-font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--gf-primary);
    margin: 14px 0 10px;
    line-height: 1.5;
}

.gf-footer__social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.gf-footer__social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gf-primary-light);
    border: 1px solid var(--gf-primary-mid);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gf-primary);
    transition: all var(--gf-transition-slow);
}

.gf-footer__social-link:hover {
    background: var(--gf-primary);
    color: var(--gf-white);
    transform: translateY(-2px);
}

.gf-footer__note {
    font-size: 0.78rem;
    color: var(--gf-text-light);
}

/* Script / handwritten accent (daily quote) */
.gf-script {
    font-family: var(--gf-font-accent);
}

/* Smooth hover lift for cards */
.gf-lift {
    transition: transform var(--gf-transition-slow), box-shadow var(--gf-transition-slow), border-color var(--gf-transition-slow);
}

.gf-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 34px rgba(45, 45, 224, 0.12);
    border-color: var(--gf-primary-mid) !important;
}

/* Gold hover accent (Lovable reference detail) */
.gf-gold-hover {
    transition: color var(--gf-transition-slow);
}

.gf-gold-hover:hover {
    color: var(--gf-gold);
}

/* ---------- Responsive utility grids (used by non-Elementor fallback content) ---------- */

.gf-band {
    padding: 88px 24px;
}

.gf-band--tight {
    padding: 56px 24px;
}

.gf-grid {
    display: grid;
    gap: 24px;
}

.gf-grid--2 { grid-template-columns: repeat(2, 1fr); }
.gf-grid--3 { grid-template-columns: repeat(3, 1fr); }
.gf-grid--4 { grid-template-columns: repeat(4, 1fr); }
.gf-grid--5 { grid-template-columns: repeat(5, 1fr); }

.gf-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.gf-contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    align-items: start;
}

@media (max-width: 1024px) {
    .gf-band { padding: 64px 24px; }
    .gf-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .gf-grid--5 { grid-template-columns: repeat(2, 1fr); }
    .gf-grid--3 { grid-template-columns: repeat(2, 1fr); }
    .gf-hero-grid { gap: 40px; }
}

@media (max-width: 768px) {
    .gf-band { padding: 48px 16px; }
    .gf-band--tight { padding: 40px 16px; }
    .gf-hero-grid,
    .gf-contact-grid,
    .gf-grid--2,
    .gf-grid--3,
    .gf-grid--5 { grid-template-columns: 1fr; }
    .gf-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .gf-header__cta { display: none; }
}

@media (max-width: 480px) {
    .gf-grid--4 { grid-template-columns: 1fr 1fr; gap: 14px; }
}

/* Keep Elementor's own containers unconstrained inside our wrapper */
.gf-elementor-page .e-con,
.gf-elementor-page .elementor-section {
    max-width: none;
}

/* Selection + focus polish */
::selection {
    background: var(--gf-primary-mid);
    color: var(--gf-text-dark);
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--gf-primary);
    outline-offset: 2px;
    border-radius: 4px;
}