/*
 * Webfinity Studio - Homepage & Component Styles
 *
 * Covers: hero visual, floating badges, CTA section, page hero,
 * why-us card numbers, page content typography, and forms.
 *
 * @package Webfinity
 * @version 1.2.0
 */

/* ============================================================
   HERO - LAYOUT & VISUAL
   ============================================================ */
.wf-hero__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--wf-space-2xl);
    align-items: center;
}

/* Hero Orbs - ambient gradient blobs */
.wf-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    pointer-events: none;
}

.wf-hero__orb--1 {
    width: 600px;
    height: 600px;
    top: -15%;
    right: -5%;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.12) 0%, transparent 70%);
    animation: wf-float 20s ease-in-out infinite;
}

.wf-hero__orb--2 {
    width: 400px;
    height: 400px;
    bottom: -10%;
    left: -5%;
    background: radial-gradient(circle, rgba(200, 64, 233, 0.1) 0%, transparent 70%);
    animation: wf-float 25s ease-in-out infinite reverse;
}

.wf-hero__orb--3 {
    width: 300px;
    height: 300px;
    top: 40%;
    left: 40%;
    background: radial-gradient(circle, rgba(123, 45, 142, 0.08) 0%, transparent 70%);
    animation: wf-float 18s ease-in-out infinite 3s;
}

/* Grid overlay for depth */
.wf-hero__grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 100%);
    pointer-events: none;
}

/* Trust indicators below hero CTA */
.wf-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--wf-space-lg);
    margin-top: var(--wf-space-xl);
}

.wf-hero__trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--wf-text-sm);
    color: var(--wf-text-secondary);
    font-weight: 500;
}

.wf-hero__trust-item svg {
    color: var(--wf-cyan);
    flex-shrink: 0;
}

/* Hero Badge dot */
.wf-hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--wf-cyan);
    animation: wf-pulse 2s ease-in-out infinite;
}

@keyframes wf-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

/* ============================================================
   HERO - BROWSER MOCKUP VISUAL
   ============================================================ */
.wf-hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wf-hero__visual-card {
    width: 100%;
    max-width: 480px;
    background: var(--wf-white);
    border-radius: var(--wf-radius-lg);
    box-shadow: var(--wf-shadow-xl);
    overflow: hidden;
    border: var(--wf-border-subtle);
}

.wf-hero__visual-browser {
    display: flex;
    align-items: center;
    gap: var(--wf-space-sm);
    padding: 0.75rem 1rem;
    background: var(--wf-grey-100);
    border-bottom: var(--wf-border-subtle);
}

.wf-hero__browser-dots {
    display: flex;
    gap: 6px;
}

.wf-hero__browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.wf-hero__browser-dots span:nth-child(1) { background: #ff5f57; }
.wf-hero__browser-dots span:nth-child(2) { background: #febc2e; }
.wf-hero__browser-dots span:nth-child(3) { background: #28c840; }

.wf-hero__browser-bar {
    flex: 1;
    height: 24px;
    background: var(--wf-white);
    border-radius: var(--wf-radius-sm);
    border: var(--wf-border-subtle);
}

.wf-hero__visual-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Skeleton loading lines */
.wf-hero__visual-skeleton {
    border-radius: var(--wf-radius-sm);
    animation: wf-shimmer 2s ease-in-out infinite;
}

.wf-hero__visual-skeleton--header {
    width: 100%;
    height: 120px;
    background: var(--wf-gradient-subtle);
    border-radius: var(--wf-radius-md);
    margin-bottom: 0.5rem;
}

.wf-hero__visual-skeleton--title {
    width: 65%;
    height: 20px;
    background: linear-gradient(90deg, var(--wf-grey-200) 0%, var(--wf-grey-100) 50%, var(--wf-grey-200) 100%);
    background-size: 200% 100%;
}

.wf-hero__visual-skeleton--text {
    width: 90%;
    height: 12px;
    background: linear-gradient(90deg, var(--wf-grey-200) 0%, var(--wf-grey-100) 50%, var(--wf-grey-200) 100%);
    background-size: 200% 100%;
}

.wf-hero__visual-skeleton--short {
    width: 60%;
}

.wf-hero__visual-skeleton--btn {
    width: 40%;
    height: 32px;
    background: var(--wf-gradient);
    opacity: 0.3;
    border-radius: var(--wf-radius-full);
    margin-top: 0.5rem;
}

@keyframes wf-shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Floating badges */
.wf-hero__float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: var(--wf-white);
    border-radius: var(--wf-radius-md);
    box-shadow: var(--wf-shadow-lg);
    font-size: var(--wf-text-xs);
    font-weight: 600;
    color: var(--wf-text-primary);
    white-space: nowrap;
    border: var(--wf-border-subtle);
}

.wf-hero__float-badge svg {
    color: var(--wf-cyan);
}

.wf-hero__float-badge--1 {
    top: 15%;
    right: -5%;
    animation: wf-badge-float 6s ease-in-out infinite;
}

.wf-hero__float-badge--2 {
    bottom: 15%;
    left: -5%;
    animation: wf-badge-float 6s ease-in-out infinite 2s;
}

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

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.wf-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: var(--wf-space-lg);
}

.wf-service-card {
    background: var(--wf-white);
    border: var(--wf-border-subtle);
    border-radius: var(--wf-radius-lg);
    padding: clamp(1.75rem, 1.5rem + 1vw, 2.5rem);
    transition: all var(--wf-transition-base);
    position: relative;
    overflow: hidden;
}

.wf-service-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--wf-gradient);
    opacity: 0;
    transition: opacity var(--wf-transition-base);
}

.wf-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--wf-shadow-lg);
    border-color: rgba(0, 180, 216, 0.12);
}

.wf-service-card:hover .wf-service-card__accent {
    opacity: 1;
}

.wf-service-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--wf-radius-md);
    margin-bottom: 1.25rem;
}

.wf-service-card__icon--cyan  { background: rgba(0, 180, 216, 0.08); color: var(--wf-cyan); }
.wf-service-card__icon--purple { background: rgba(123, 45, 142, 0.08); color: var(--wf-purple); }
.wf-service-card__icon--magenta { background: rgba(200, 64, 233, 0.08); color: var(--wf-magenta); }
.wf-service-card__icon--blue   { background: rgba(0, 119, 182, 0.08); color: var(--wf-blue); }

.wf-service-card__title {
    font-family: var(--wf-font-heading);
    font-size: var(--wf-text-xl);
    font-weight: 700;
    color: var(--wf-text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.wf-service-card__text {
    font-size: var(--wf-text-sm);
    color: var(--wf-text-secondary);
    line-height: 1.75;
    margin: 0;
}

/* ============================================================
   WHY US CARDS
   ============================================================ */
.wf-section--why {
    background: var(--wf-white);
}

.wf-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: var(--wf-space-lg);
}

.wf-why-card {
    background: var(--wf-bg-secondary);
    border: var(--wf-border-subtle);
    border-radius: var(--wf-radius-lg);
    padding: clamp(1.75rem, 1.5rem + 1vw, 2.5rem);
    transition: all var(--wf-transition-base);
    display: flex;
    flex-direction: column;
}

.wf-why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--wf-shadow-md);
    border-color: rgba(0, 180, 216, 0.12);
}

.wf-why-card__number {
    font-family: var(--wf-font-heading);
    font-size: clamp(2rem, 1.75rem + 1.5vw, 3rem);
    font-weight: 800;
    color: var(--wf-text-primary);
    opacity: 0.35;
    line-height: 1;
    margin-bottom: 1rem;
}

.wf-why-card__content { flex: 1; }

.wf-why-card__title {
    font-family: var(--wf-font-heading);
    font-size: var(--wf-text-xl);
    font-weight: 700;
    color: var(--wf-text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.wf-why-card__text {
    font-size: var(--wf-text-sm);
    color: var(--wf-text-secondary);
    line-height: 1.75;
    margin: 0;
}

/* ============================================================
   PROCESS / HOW IT WORKS
   ============================================================ */
.wf-process {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 960px;
    margin: 0 auto;
}

.wf-process__step {
    flex: 1;
    text-align: center;
    padding: 0 var(--wf-space-md);
}

.wf-process__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--wf-radius-full);
    background: var(--wf-white);
    border: 2px solid var(--wf-grey-200);
    margin: 0 auto 1.25rem;
    color: var(--wf-blue);
    transition: all var(--wf-transition-base);
}

.wf-process__step:hover .wf-process__icon {
    border-color: var(--wf-cyan);
    box-shadow: var(--wf-shadow-glow);
    color: var(--wf-cyan);
}

.wf-process__title {
    font-family: var(--wf-font-heading);
    font-size: var(--wf-text-base);
    font-weight: 700;
    color: var(--wf-text-primary);
    margin-bottom: 0.5rem;
}

.wf-process__text {
    font-size: var(--wf-text-sm);
    color: var(--wf-text-secondary);
    line-height: 1.7;
    margin: 0;
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
}

.wf-process__connector {
    width: 60px;
    height: 2px;
    background: var(--wf-grey-200);
    margin-top: 30px;
    flex-shrink: 0;
}

/* ============================================================
   CTA BAND - FULL WIDTH DARK SECTION
   ============================================================ */
.wf-cta-band {
    background: var(--wf-bg-dark);
    padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
    position: relative;
    overflow: hidden;
}

.wf-cta-band__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.wf-cta-band__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.wf-cta-band__orb--1 {
    width: 500px;
    height: 500px;
    top: -40%;
    right: -10%;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, transparent 70%);
}

.wf-cta-band__orb--2 {
    width: 400px;
    height: 400px;
    bottom: -40%;
    left: -10%;
    background: radial-gradient(circle, rgba(200, 64, 233, 0.1) 0%, transparent 70%);
}

.wf-cta-band__content {
    position: relative;
    z-index: 1;
    max-width: 620px;
    margin: 0 auto;
}

.wf-cta-band__title {
    font-family: var(--wf-font-heading);
    font-size: var(--wf-text-4xl);
    font-weight: 800;
    color: var(--wf-white);
    margin-bottom: var(--wf-space-md);
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.wf-cta-band__text {
    font-size: var(--wf-text-lg);
    color: var(--wf-grey-400);
    margin-bottom: var(--wf-space-xl);
    line-height: 1.7;
}

.wf-cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--wf-space-md);
}

.wf-cta-band__phone {
    color: var(--wf-grey-300);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--wf-radius-full);
    padding: 0.875rem 1.75rem;
}

.wf-cta-band__phone:hover {
    color: var(--wf-white);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

/* ============================================================
   SECTION DIVIDER
   ============================================================ */
.wf-section-divider {
    width: 100%;
    height: 1px;
    background: var(--wf-border-light);
}

/* ============================================================
   PAGE HERO (for inner pages)
   ============================================================ */
.wf-page-hero {
    padding-top: calc(100px + var(--wf-space-3xl));
    padding-bottom: var(--wf-space-2xl);
    background: var(--wf-bg-secondary);
    position: relative;
    overflow: hidden;
}

.wf-page-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(0, 180, 216, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.wf-page-hero__title {
    font-size: var(--wf-text-4xl);
    max-width: 640px;
}

.wf-page-hero__subtitle {
    font-size: var(--wf-text-lg);
    color: var(--wf-text-secondary);
    margin-top: var(--wf-space-md);
    max-width: 540px;
}

/* ============================================================
   ABOUT PAGE HERO
   ============================================================ */
.wf-about-hero {
    position: relative;
    padding-top: calc(100px + var(--wf-space-2xl));
    padding-bottom: var(--wf-space-2xl);
    overflow: hidden;
    background: var(--wf-bg-primary);
}

.wf-about-hero__content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}

.wf-about-hero__title {
    font-family: var(--wf-font-heading);
    font-size: var(--wf-text-5xl);
    font-weight: 800;
    color: var(--wf-text-primary);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: var(--wf-space-md);
}

.wf-about-hero__subtitle {
    font-size: var(--wf-text-lg);
    color: var(--wf-text-secondary);
    max-width: 600px;
    margin: 0 auto var(--wf-space-lg);
    line-height: 1.75;
}

.wf-about-hero__trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--wf-space-lg);
    margin-top: var(--wf-space-lg);
}

/* ============================================================
   ABOUT STORY SECTION
   ============================================================ */
.wf-about-story-section {
    background: var(--wf-bg-primary);
}

.wf-about-story__wrap {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: clamp(2rem, 2rem + 3vw, 5rem);
    align-items: start;
}

.wf-about-story__identity {
    position: sticky;
    top: calc(72px + var(--wf-space-lg));
}

.wf-about-story__avatar {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: var(--wf-space-md);
}

.wf-about-story__initials {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: var(--wf-radius-full);
    background: var(--wf-gradient);
    font-family: var(--wf-font-heading);
    font-size: var(--wf-text-2xl);
    font-weight: 800;
    color: var(--wf-white);
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
}

.wf-about-story__avatar-glow {
    position: absolute;
    inset: -8px;
    border-radius: var(--wf-radius-full);
    background: var(--wf-gradient);
    opacity: 0.15;
    filter: blur(12px);
    z-index: 0;
}

.wf-about-story__name-block {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.wf-about-story__name {
    font-family: var(--wf-font-heading);
    font-size: var(--wf-text-2xl);
    font-weight: 800;
    color: var(--wf-text-primary);
    margin: 0;
    line-height: 1.2;
}

.wf-about-story__role {
    font-size: var(--wf-text-sm);
    color: var(--wf-text-secondary);
    font-weight: 500;
    margin: 0;
}

.wf-about-story__exp {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--wf-text-sm);
    color: var(--wf-text-secondary);
    font-weight: 500;
    margin-top: 0.25rem;
}

.wf-about-story__exp svg {
    color: var(--wf-cyan);
    flex-shrink: 0;
}

.wf-about-story__exp--highlight {
    color: var(--wf-blue);
    font-weight: 700;
}

.wf-about-story__exp--highlight svg {
    color: var(--wf-blue);
}

.wf-about-story__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: var(--wf-space-md);
}

.wf-about-story__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.75rem;
    background: var(--wf-gradient-subtle);
    border: 1px solid rgba(0, 180, 216, 0.15);
    border-radius: var(--wf-radius-full);
    font-size: var(--wf-text-xs);
    font-weight: 600;
    color: var(--wf-blue);
}

.wf-about-story__text {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 1.25rem + 1.5vw, 2.5rem);
}

.wf-about-story__block h3.wf-about-story__block-title {
    font-family: var(--wf-font-heading);
    font-size: var(--wf-text-xl);
    font-weight: 700;
    color: var(--wf-text-primary);
    margin-bottom: var(--wf-space-sm);
    line-height: 1.3;
}

.wf-about-story__block p {
    font-size: var(--wf-text-base);
    color: var(--wf-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--wf-space-sm);
}

.wf-about-story__block p:last-child {
    margin-bottom: 0;
}

/* UK callout highlight */
.wf-about-story__uk-callout {
    display: flex;
    align-items: flex-start;
    gap: var(--wf-space-md);
    padding: var(--wf-space-md) var(--wf-space-lg);
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.06) 0%, rgba(0, 180, 216, 0.06) 100%);
    border: 1px solid rgba(0, 119, 182, 0.2);
    border-radius: var(--wf-radius-lg);
    margin-top: var(--wf-space-sm);
}

.wf-about-story__uk-callout svg {
    color: var(--wf-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.wf-about-story__uk-callout strong {
    display: block;
    font-size: var(--wf-text-base);
    font-weight: 700;
    color: var(--wf-blue);
    margin-bottom: 0.25rem;
}

.wf-about-story__uk-callout span {
    font-size: var(--wf-text-sm);
    color: var(--wf-text-secondary);
    line-height: 1.6;
}

/* ============================================================
   ABOUT VALUES SECTION
   ============================================================ */
.wf-about-values__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: var(--wf-space-lg);
}

.wf-about-value-card {
    background: var(--wf-white);
    border: var(--wf-border-subtle);
    border-radius: var(--wf-radius-lg);
    padding: clamp(1.5rem, 1.25rem + 1vw, 2.25rem);
    transition: all var(--wf-transition-base);
}

.wf-about-value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--wf-shadow-lg);
    border-color: rgba(0, 180, 216, 0.15);
}

.wf-about-value-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--wf-radius-md);
    margin-bottom: var(--wf-space-md);
}

.wf-about-value-card__icon--cyan    { background: rgba(0, 180, 216, 0.08); color: var(--wf-cyan); }
.wf-about-value-card__icon--purple  { background: rgba(123, 45, 142, 0.08); color: var(--wf-purple); }
.wf-about-value-card__icon--magenta { background: rgba(200, 64, 233, 0.08); color: var(--wf-magenta); }
.wf-about-value-card__icon--blue    { background: rgba(0, 119, 182, 0.08); color: var(--wf-blue); }

.wf-about-value-card__title {
    font-family: var(--wf-font-heading);
    font-size: var(--wf-text-lg);
    font-weight: 700;
    color: var(--wf-text-primary);
    margin-bottom: 0.625rem;
    line-height: 1.3;
}

.wf-about-value-card__text {
    font-size: var(--wf-text-sm);
    color: var(--wf-text-secondary);
    line-height: 1.75;
    margin: 0;
}

/* ============================================================
   ABOUT PROMISE SECTION
   ============================================================ */
.wf-about-promise-section {
    background: var(--wf-bg-primary);
}

.wf-about-promise__wrap {
    max-width: 860px;
    margin: 0 auto;
}

.wf-about-promise__header {
    text-align: center;
    margin-bottom: var(--wf-space-2xl);
}

.wf-about-promise__header .wf-section-header__label {
    display: inline-block;
    font-size: var(--wf-text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: var(--wf-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--wf-space-sm);
}

.wf-about-promise__header .wf-section-header__title {
    margin-bottom: 0;
}

.wf-about-promise__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
    gap: var(--wf-space-md);
}

.wf-about-promise__item {
    display: flex;
    align-items: flex-start;
    gap: var(--wf-space-md);
    padding: var(--wf-space-lg);
    background: var(--wf-bg-secondary);
    border: var(--wf-border-subtle);
    border-radius: var(--wf-radius-lg);
    transition: all var(--wf-transition-base);
}

.wf-about-promise__item:hover {
    transform: translateY(-2px);
    box-shadow: var(--wf-shadow-md);
    border-color: rgba(0, 180, 216, 0.12);
}

.wf-about-promise__icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--wf-radius-md);
    background: rgba(239, 68, 68, 0.06);
    color: #ef4444;
}

.wf-about-promise__item h4 {
    font-family: var(--wf-font-heading);
    font-size: var(--wf-text-base);
    font-weight: 700;
    color: var(--wf-text-primary);
    margin-bottom: 0.375rem;
    line-height: 1.3;
}

.wf-about-promise__item p {
    font-size: var(--wf-text-sm);
    color: var(--wf-text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   CONSULTATION PAGE HERO
   ============================================================ */
.wf-consult-hero {
    position: relative;
    padding-top: calc(100px + var(--wf-space-2xl));
    padding-bottom: var(--wf-space-2xl);
    overflow: hidden;
    background: var(--wf-bg-primary);
}

.wf-consult-hero__content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}

.wf-consult-hero__title {
    font-family: var(--wf-font-heading);
    font-size: var(--wf-text-5xl);
    font-weight: 800;
    color: var(--wf-text-primary);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: var(--wf-space-md);
}

.wf-consult-hero__subtitle {
    font-size: var(--wf-text-lg);
    color: var(--wf-text-secondary);
    max-width: 640px;
    margin: 0 auto var(--wf-space-lg);
    line-height: 1.75;
}

.wf-consult-hero__trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--wf-space-md);
    margin-top: var(--wf-space-lg);
}

/* ============================================================
   CONSULTATION CARDS GRID
   ============================================================ */
.wf-consult-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--wf-space-lg);
    align-items: start;
}

@media (max-width: 1100px) {
    .wf-consult-grid {
        grid-template-columns: 1fr;
        max-width: 580px;
        margin-left: auto;
        margin-right: auto;
    }
}

.wf-consult-card {
    background: var(--wf-white);
    border: var(--wf-border-subtle);
    border-radius: var(--wf-radius-xl);
    padding: clamp(1.75rem, 1.5rem + 1vw, 2.5rem);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: var(--wf-space-md);
    transition: all var(--wf-transition-base);
    box-shadow: var(--wf-shadow-sm);
}

.wf-consult-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--wf-shadow-xl);
    border-color: rgba(0, 180, 216, 0.15);
}

.wf-consult-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--wf-gradient);
    opacity: 0;
    transition: opacity var(--wf-transition-base);
}

.wf-consult-card:hover .wf-consult-card__accent {
    opacity: 1;
}

.wf-consult-card--featured {
    border-color: rgba(123, 45, 142, 0.2);
    box-shadow: var(--wf-shadow-md), 0 0 0 1px rgba(123, 45, 142, 0.1);
}

.wf-consult-card--featured .wf-consult-card__accent {
    opacity: 1;
}

.wf-consult-card__popular-wrap {
    position: absolute;
    top: 16px;
    right: 16px;
}

.wf-consult-card__popular {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    background: var(--wf-gradient);
    color: var(--wf-white);
    border-radius: var(--wf-radius-full);
    font-size: var(--wf-text-xs);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.wf-consult-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wf-consult-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--wf-radius-md);
}

.wf-consult-card__icon--cyan    { background: rgba(0, 180, 216, 0.08); color: var(--wf-cyan); }
.wf-consult-card__icon--purple  { background: rgba(123, 45, 142, 0.08); color: var(--wf-purple); }
.wf-consult-card__icon--magenta { background: rgba(200, 64, 233, 0.08); color: var(--wf-magenta); }

.wf-consult-card__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 1rem;
    border-radius: var(--wf-radius-full);
    font-size: var(--wf-text-sm);
    font-weight: 700;
}

.wf-consult-card__badge--free {
    background: rgba(16, 185, 129, 0.08);
    color: var(--wf-success);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.wf-consult-card__badge--paid {
    background: var(--wf-gradient-subtle);
    color: var(--wf-purple);
    border: 1px solid rgba(123, 45, 142, 0.15);
}

.wf-consult-card__title {
    font-family: var(--wf-font-heading);
    font-size: var(--wf-text-xl);
    font-weight: 700;
    color: var(--wf-text-primary);
    margin: 0;
    line-height: 1.3;
}

.wf-consult-card__desc {
    font-size: var(--wf-text-sm);
    color: var(--wf-text-secondary);
    line-height: 1.8;
    margin: 0;
}

.wf-consult-card__includes {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.wf-consult-card__includes li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: var(--wf-text-sm);
    color: var(--wf-text-secondary);
    line-height: 1.5;
}

.wf-consult-card__includes li svg {
    color: var(--wf-cyan);
    flex-shrink: 0;
}

.wf-consult-card__price {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    padding-top: var(--wf-space-sm);
    border-top: var(--wf-border-light);
    margin-top: auto;
}

.wf-consult-card__price-amount {
    font-family: var(--wf-font-heading);
    font-size: var(--wf-text-3xl);
    font-weight: 800;
    color: var(--wf-text-primary);
    line-height: 1;
}

.wf-consult-card__price-note {
    font-size: var(--wf-text-xs);
    color: var(--wf-text-tertiary);
    font-weight: 500;
}

.wf-consult-card__btn {
    width: 100%;
    justify-content: center;
}

.wf-consult-card__deduction-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--wf-text-xs);
    color: var(--wf-text-tertiary);
    font-style: italic;
    margin: 0;
    padding-top: 0;
}

.wf-consult-card__deduction-note svg {
    flex-shrink: 0;
    color: var(--wf-grey-400);
}

/* ============================================================
   CONSULTATION REASSURANCE BAND
   ============================================================ */
.wf-consult-reassurance {
    background: var(--wf-bg-secondary);
    padding: var(--wf-space-2xl) 0;
    border-top: var(--wf-border-light);
    border-bottom: var(--wf-border-light);
}

.wf-consult-reassurance__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--wf-space-lg);
}

.wf-consult-reassurance__item {
    display: flex;
    align-items: flex-start;
    gap: var(--wf-space-md);
}

.wf-consult-reassurance__item svg {
    color: var(--wf-cyan);
    flex-shrink: 0;
    margin-top: 2px;
}

.wf-consult-reassurance__item h4 {
    font-family: var(--wf-font-heading);
    font-size: var(--wf-text-base);
    font-weight: 700;
    color: var(--wf-text-primary);
    margin-bottom: 0.375rem;
    line-height: 1.3;
}

.wf-consult-reassurance__item p {
    font-size: var(--wf-text-sm);
    color: var(--wf-text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   CONSULTATION FORM SECTION
   ============================================================ */
.wf-consult-form-section {
    background: var(--wf-bg-primary);
}

.wf-consult-form-wrap {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: var(--wf-space-2xl);
    align-items: start;
    max-width: 960px;
    margin: 0 auto;
}

.wf-consult-form__reassure {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--wf-space-sm);
}

.wf-consult-form__reassure li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: var(--wf-text-sm);
    color: var(--wf-text-secondary);
    font-weight: 500;
}

.wf-consult-form__reassure li svg {
    color: var(--wf-cyan);
    flex-shrink: 0;
}

.wf-consult-form__or {
    display: flex;
    align-items: center;
    gap: var(--wf-space-sm);
    margin-top: var(--wf-space-lg);
    color: var(--wf-text-tertiary);
    font-size: var(--wf-text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.wf-consult-form__or::before,
.wf-consult-form__or::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--wf-grey-200);
}

.wf-consult-form__card {
    background: var(--wf-white);
    border: var(--wf-border-subtle);
    border-radius: var(--wf-radius-xl);
    padding: clamp(1.75rem, 1.5rem + 1vw, 2.5rem);
    box-shadow: var(--wf-shadow-md);
}

/* ============================================================
   PAGE CONTENT TYPOGRAPHY
   ============================================================ */
.wf-page-content h2 {
    font-size: var(--wf-text-3xl);
    margin-top: var(--wf-space-2xl);
    margin-bottom: var(--wf-space-md);
}

.wf-page-content h3 {
    font-size: var(--wf-text-2xl);
    margin-top: var(--wf-space-xl);
    margin-bottom: var(--wf-space-sm);
}

.wf-page-content h4 {
    font-size: var(--wf-text-xl);
    margin-top: var(--wf-space-lg);
    margin-bottom: var(--wf-space-sm);
}

.wf-page-content p { margin-bottom: var(--wf-space-md); }

.wf-page-content ul,
.wf-page-content ol {
    margin-bottom: var(--wf-space-md);
    padding-left: 1.5rem;
    color: var(--wf-text-secondary);
}

.wf-page-content li {
    margin-bottom: 0.5rem;
    line-height: 1.75;
}

.wf-page-content blockquote {
    border-left: 3px solid var(--wf-cyan);
    padding: var(--wf-space-md) var(--wf-space-lg);
    margin: var(--wf-space-lg) 0;
    background: var(--wf-gradient-subtle);
    border-radius: 0 var(--wf-radius-md) var(--wf-radius-md) 0;
    font-size: var(--wf-text-lg);
    font-style: italic;
    color: var(--wf-text-primary);
}

.wf-page-content img {
    border-radius: var(--wf-radius-md);
    margin: var(--wf-space-lg) 0;
}

.wf-page-content a {
    color: var(--wf-blue);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--wf-transition-fast);
}

.wf-page-content a:hover { color: var(--wf-purple); }

/* ============================================================
   FORMS
   ============================================================ */
.wf-form-group { margin-bottom: var(--wf-space-md); }

.wf-form-label {
    display: block;
    font-size: var(--wf-text-sm);
    font-weight: 600;
    color: var(--wf-text-primary);
    margin-bottom: 0.375rem;
}

.wf-form-input,
.wf-form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--wf-font-primary);
    font-size: var(--wf-text-base);
    color: var(--wf-text-primary);
    background: var(--wf-white);
    border: 2px solid var(--wf-grey-200);
    border-radius: var(--wf-radius-md);
    transition: all var(--wf-transition-fast);
    outline: none;
}

.wf-form-input:focus,
.wf-form-textarea:focus {
    border-color: var(--wf-cyan);
    box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.1);
}

.wf-form-textarea {
    min-height: 140px;
    resize: vertical;
}

/* ============================================================
   RESPONSIVE - TABLET
   ============================================================ */
@media (max-width: 1024px) {
    .wf-hero__layout {
        grid-template-columns: 1fr;
        gap: var(--wf-space-xl);
    }

    .wf-hero__visual { order: -1; }
    .wf-hero__visual-card { max-width: 400px; }
    .wf-hero__float-badge--1 { right: 5%; }
    .wf-hero__float-badge--2 { left: 5%; }

    .wf-hero__content { text-align: center; }
    .wf-hero__subtitle { margin-left: auto; margin-right: auto; }
    .wf-hero__actions { justify-content: center; }
    .wf-hero__trust { justify-content: center; }
    .wf-hero__badge { margin-left: auto; margin-right: auto; }

    .wf-about-story__wrap {
        grid-template-columns: 1fr;
        gap: var(--wf-space-xl);
    }

    .wf-about-story__identity {
        position: static;
        display: flex;
        align-items: center;
        gap: var(--wf-space-lg);
    }

    .wf-about-story__avatar {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .wf-consult-reassurance__grid {
        grid-template-columns: 1fr;
        gap: var(--wf-space-lg);
    }

    .wf-consult-form-wrap {
        grid-template-columns: 1fr;
    }

    .wf-page-hero__title { max-width: 100%; }
    .wf-page-hero__subtitle { max-width: 100%; }
}

/* ============================================================
   RESPONSIVE - MOBILE
   ============================================================ */
@media (max-width: 768px) {
    .wf-hero__trust {
        flex-direction: column;
        gap: var(--wf-space-sm);
        align-items: center;
    }

    .wf-hero__float-badge { display: none; }

    .wf-hero__visual-card { max-width: 100%; }

    .wf-about-hero {
        padding-top: calc(80px + var(--wf-space-lg));
        padding-bottom: var(--wf-space-lg);
    }

    .wf-about-hero__title {
        font-size: var(--wf-text-3xl);
    }

    .wf-about-hero__subtitle {
        font-size: var(--wf-text-base);
    }

    .wf-about-hero__trust {
        flex-direction: column;
        align-items: center;
        gap: var(--wf-space-sm);
    }

    .wf-about-story__identity {
        flex-direction: column;
        align-items: flex-start;
    }

    .wf-about-story__avatar {
        width: 80px;
        height: 80px;
    }

    .wf-about-story__initials {
        width: 80px;
        height: 80px;
        font-size: var(--wf-text-xl);
    }

    .wf-about-story__uk-callout {
        flex-direction: column;
        gap: var(--wf-space-sm);
    }

    .wf-about-promise__grid {
        grid-template-columns: 1fr;
    }

    .wf-about-values__grid {
        grid-template-columns: 1fr;
    }

    .wf-consult-hero {
        padding-top: calc(80px + var(--wf-space-lg));
        padding-bottom: var(--wf-space-lg);
    }

    .wf-consult-hero__title {
        font-size: var(--wf-text-3xl);
    }

    .wf-consult-hero__subtitle {
        font-size: var(--wf-text-base);
    }

    .wf-consult-hero__trust {
        flex-direction: column;
        align-items: center;
        gap: var(--wf-space-sm);
    }

    .wf-consult-grid {
        max-width: 100%;
    }

    .wf-page-hero {
        padding-top: calc(70px + var(--wf-space-xl));
        padding-bottom: var(--wf-space-lg);
    }

    .wf-page-hero__title { font-size: var(--wf-text-3xl); }
    .wf-page-hero__subtitle {
        font-size: var(--wf-text-base);
        margin-top: var(--wf-space-sm);
    }

    .wf-cta-band__title { font-size: var(--wf-text-3xl); }
    .wf-cta-band__text { font-size: var(--wf-text-base); }

    .wf-cta-band__actions {
        flex-direction: column;
        align-items: center;
    }

    .wf-cta-band__actions .wf-btn {
        width: 100%;
        max-width: 320px;
    }

    .wf-process {
        flex-direction: column;
        align-items: center;
        gap: var(--wf-space-lg);
    }

    .wf-process__connector {
        width: 2px;
        height: 40px;
        margin-top: 0;
    }

    .wf-process__step { padding: 0; }
    .wf-process__text { max-width: 100%; }

    .wf-section .wf-container--narrow {
        padding-left: var(--wf-gutter);
        padding-right: var(--wf-gutter);
    }

    .wf-page-content h2 {
        font-size: var(--wf-text-2xl);
        margin-top: var(--wf-space-xl);
    }

    .wf-page-content h3 { font-size: var(--wf-text-xl); }

    .wf-page-content blockquote {
        padding: var(--wf-space-sm) var(--wf-space-md);
        font-size: var(--wf-text-base);
    }
}

/* ============================================================
   RESPONSIVE - SMALL MOBILE
   ============================================================ */
@media (max-width: 480px) {
    .wf-cta-band { padding: 3rem 0; }

    .wf-hero__orb { display: none; }
    .wf-hero__grid-overlay { display: none; }

    .wf-cta-band__title { font-size: var(--wf-text-2xl); }

    .wf-about-hero {
        padding-top: calc(64px + var(--wf-space-lg));
    }

    .wf-about-hero__title {
        font-size: var(--wf-text-2xl);
        word-break: break-word;
    }

    .wf-consult-hero {
        padding-top: calc(64px + var(--wf-space-lg));
    }

    .wf-consult-hero__title {
        font-size: var(--wf-text-2xl);
        word-break: break-word;
    }

    .wf-page-hero {
        padding-top: calc(64px + var(--wf-space-lg));
    }

    .wf-page-hero__title {
        font-size: var(--wf-text-2xl);
        word-break: break-word;
    }

    .wf-about-promise__item {
        flex-direction: column;
        gap: var(--wf-space-sm);
    }
}
