/**
 * Washington Home Improvements - Animated Tool Showcase
 * Blueprint construction paper vibes with floating animated tools
 */

/* ========================================
   BLUEPRINT ANIMATED BACKGROUND
   ======================================== */

/* Remove default main padding for tool showcase page */
main:has(.tool-showcase) {
    padding: 0;
    margin: 0;
}

/* Hide any rogue titles that appear before the tool showcase */
main > h1:first-child,
main > .site-title,
.page-title,
.entry-title:not(.service-title) {
    display: none !important;
}

.tool-showcase {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #1a2332;
    overflow: hidden;
}

/* Blueprint grid pattern */
.blueprint-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(52, 152, 219, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(52, 152, 219, 0.15) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: blueprintScroll 40s linear infinite;
    z-index: 1;
}

@keyframes blueprintScroll {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

/* Animated blueprint elements */
.blueprint-compass {
    position: fixed;
    top: 50px;
    right: 50px;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(52, 152, 219, 0.3);
    border-radius: 50%;
    z-index: 2;
    animation: rotate 20s linear infinite;
}

.blueprint-compass::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 80px;
    background: rgba(52, 152, 219, 0.5);
}

.blueprint-compass::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    width: 2px;
    height: 80px;
    background: rgba(52, 152, 219, 0.5);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Blueprint measurement lines */
.blueprint-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.measure-line {
    position: absolute;
    background: rgba(52, 152, 219, 0.2);
    animation: fadeInOut 4s ease-in-out infinite;
}

.measure-line.horizontal {
    width: 100%;
    height: 1px;
}

.measure-line.vertical {
    width: 1px;
    height: 100%;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.5; }
}

/* ========================================
   TOOL SECTION CONTAINER
   ======================================== */

.tool-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    z-index: 10;
    overflow-x: hidden; /* Prevent tools from escaping section bounds horizontally */
    overflow-y: visible; /* Allow vertical scrolling on mobile */
}

.tool-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

/* Alternate layout for odd sections */
.tool-section:nth-child(even) .tool-container {
    direction: rtl;
}

.tool-section:nth-child(even) .service-info {
    direction: ltr;
}

/* ========================================
   TOOL DISPLAY WITH ANIMATIONS
   ======================================== */

.tool-display {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate; /* Create new stacking context */
}

/* Tool base image */
.tool-base {
    position: absolute;
    max-width: 500px;
    max-height: 500px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
    z-index: 2;
}

/* Animated parts (spinning, rotating, etc.) */
.tool-animated-part {
    position: absolute;
    z-index: 3;
}

/* HVAC - Spinning fan (adjusted slightly down) */
.hvac .tool-animated-part {
    max-width: 280px;
    position: relative;
    top: 15px;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Chainsaw - Spinning chain with vibration */
.chainsaw .tool-base {
    animation: chainsawVibrate 0.15s ease-in-out infinite;
}

.chainsaw .tool-animated-part {
    max-width: 300px;
    animation: chainSpin 0.8s linear infinite;
}

@keyframes chainSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes chainsawVibrate {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-2px) translateY(1px); }
    50% { transform: translateX(2px) translateY(-1px); }
    75% { transform: translateX(-1px) translateY(2px); }
}

/* Excavator - Scooping motion */
.excavator .tool-base {
    animation: scoop 4s ease-in-out infinite;
    transform-origin: center bottom;
    max-width: 600px; /* Larger to push closer to edge */
    right: -50px; /* Push toward right edge */
    left: auto;
}

@keyframes scoop {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(8deg); }
}

/* Hammer - Swinging motion (natural orientation) */
.hammer .tool-base {
    animation: hammerSwing 2s ease-in-out infinite;
    transform-origin: bottom center;
}

@keyframes hammerSwing {
    0%, 100% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
}

/* Wrench - Wiggling/tightening motion (realistic wrench movement) */
.wrench .tool-base {
    animation: wrenchWiggle 1.5s ease-in-out infinite;
    transform-origin: center center;
}

@keyframes wrenchWiggle {
    0%, 100% { transform: rotate(-8deg); }
    25% { transform: rotate(8deg); }
    50% { transform: rotate(-8deg); }
    75% { transform: rotate(8deg); }
}

/* Hide the separate jaw part (not needed) */
.wrench .tool-animated-part {
    display: none !important;
    visibility: hidden;
}

/* Circular Saw - Fast spinning blade */
.saw .tool-animated-part {
    max-width: 180px;
    animation: sawSpin 1s linear infinite;
}

@keyframes sawSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ========================================
   PARTICLE EFFECTS
   ======================================== */

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 4;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
}

/* HVAC - Blue air flow particles */
.hvac .particle {
    width: 8px;
    height: 8px;
    background: rgba(52, 152, 219, 0.8);
    animation: airFlow 2s ease-out infinite;
}

@keyframes airFlow {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        transform: translate(100px, -80px) scale(0.5);
        opacity: 0;
    }
}

/* Chainsaw - Brown sawdust particles */
.chainsaw .particle {
    width: 5px;
    height: 5px;
    background: rgba(139, 90, 43, 0.9);
    border-radius: 50%;
    animation: sawdustFly 1.2s ease-out infinite;
}

@keyframes sawdustFly {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx), var(--ty)) scale(0.3);
        opacity: 0;
    }
}

/* Weed Eater - Green grass clippings flying upward */
.weedeater .particle {
    width: 5px;
    height: 5px;
    background: rgba(124, 179, 66, 0.9);
    border-radius: 50%;
    animation: grassFly 1.5s ease-out infinite;
}

@keyframes grassFly {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx, 0), calc(var(--ty, -100px) - 50px)) scale(0.2);
        opacity: 0;
    }
}

/* Front Loader - Brown dirt particles falling */
.frontloader .particle {
    width: 6px;
    height: 6px;
    background: rgba(139, 69, 19, 0.85);
    border-radius: 50%;
    animation: dirtFall 2s ease-out infinite;
}

@keyframes dirtFall {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx, 30px), var(--ty, 120px));
        opacity: 0;
    }
}

/* Hammer - Impact burst */
.hammer .particle {
    width: 6px;
    height: 6px;
    background: rgba(255, 145, 0, 0.9);
    animation: burst 0.8s ease-out infinite;
}

@keyframes burst {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx), var(--ty)) scale(0.3);
        opacity: 0;
    }
}

/* Wrench - Orange metallic sparks */
.wrench .particle {
    width: 5px;
    height: 5px;
    background: rgba(255, 145, 0, 0.9);
    box-shadow: 0 0 8px rgba(255, 145, 0, 0.6);
    animation: wrenchSpark 1.2s ease-out infinite;
}

@keyframes wrenchSpark {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx), var(--ty)) scale(0.2);
        opacity: 0;
    }
}

/* Saw - Yellow sparks */
.saw .particle {
    width: 4px;
    height: 4px;
    background: rgba(255, 200, 0, 0.9);
    animation: spark 1s ease-out infinite;
}

@keyframes spark {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx), var(--ty)) scale(0.2);
        opacity: 0;
    }
}

/* ========================================
   SERVICE INFO
   ======================================== */

.service-info {
    position: relative;
    color: var(--color-white);
    z-index: 10;
}

.service-category {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    background: rgba(52, 152, 219, 0.2);
    border: 2px solid rgba(52, 152, 219, 0.5);
    color: #3498db;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-md);
    backdrop-filter: blur(10px);
}

.service-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    color: var(--color-white);
    text-transform: uppercase;
}

.service-title .highlight {
    color: var(--color-yellow);
    display: block;
}

.service-subtitle {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-lg);
}

.service-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-xl);
    max-width: 500px;
}

/* Blueprint specs overlay */
.tool-specs {
    position: relative;
    padding: var(--spacing-md);
    border: 1px solid rgba(52, 152, 219, 0.3);
    background: rgba(26, 35, 50, 0.5);
    backdrop-filter: blur(10px);
    margin-top: var(--spacing-lg);
}

.tool-specs::before {
    content: 'SPECIFICATIONS';
    position: absolute;
    top: -12px;
    left: var(--spacing-md);
    background: #1a2332;
    padding: 0 var(--spacing-sm);
    color: #3498db;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: var(--spacing-sm);
}

.spec-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid rgba(52, 152, 219, 0.1);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: #3498db;
}

.spec-value {
    font-family: 'Courier New', monospace;
}

/* CTA Button */
.service-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--color-yellow);
    color: var(--color-grey);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    border: 3px solid var(--color-yellow);
    position: relative;
    overflow: hidden;
}

.service-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-grey);
    transition: left 0.3s ease;
    z-index: -1;
}

.service-cta:hover {
    color: var(--color-yellow);
}

.service-cta:hover::before {
    left: 0;
}

/* ========================================
   SCROLL PARALLAX EFFECTS
   ======================================== */

.tool-display[data-parallax] {
    will-change: transform;
}

/* ========================================
   MOBILE OPTIMIZATIONS
   ======================================== */

@media (max-width: 968px) {
    .tool-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }

    .tool-section {
        min-height: auto;
        padding: 60px 0;
        overflow: visible;
    }

    .tool-section:nth-child(even) .tool-container {
        direction: ltr;
    }

    .tool-display {
        height: 400px;
    }

    .tool-base {
        max-width: 350px;
        max-height: 350px;
    }

    .service-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .service-description {
        max-width: 100%;
    }

    /* HVAC fan - smaller size for mobile */
    .hvac .tool-animated-part {
        max-width: 200px;
        position: relative;
        top: 15px;
    }

    /* Simplify animations on mobile */
    .tool-base,
    .tool-animated-part {
        animation-duration: 4s !important;
    }

    .particles {
        /* Particles now enabled on mobile - looks cooler! */
    }

    .blueprint-compass {
        width: 80px;
        height: 80px;
        top: 20px;
        right: 20px;
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    .tool-base,
    .tool-animated-part,
    .particle,
    .blueprint-bg,
    .blueprint-compass {
        animation: none !important;
    }
}

/* ========================================
   LOADING STATE
   ======================================== */

.tool-showcase.loading {
    opacity: 0;
}

.tool-showcase.loaded {
    opacity: 1;
    transition: opacity 0.6s ease;
}
/**
 * Washington Home Improvements - Homepage New Sections
 * SEO Content, Power CTA, and Excavator Animation
 */

/* ========================================
   SEO CONTENT SECTION
   ======================================== */

.seo-content-section {
    background: #ffffff;
    padding: var(--space-3xl) 0;
}

.seo-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.seo-content-main {
    margin-bottom: var(--space-2xl);
}

.seo-content-main .section-heading {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    color: #1a2332;
    margin-bottom: var(--space-lg);
    line-height: 1.2;
}

.seo-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a5568;
}

.seo-text p {
    margin-bottom: var(--space-lg);
}

.seo-text strong {
    color: #1a2332;
    font-weight: 700;
}

.seo-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
}

.seo-block {
    background: #f8f9fa;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border-left: 4px solid #ff9100;
}

.seo-block h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: var(--space-md);
}

.seo-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: var(--space-md);
}

.seo-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.seo-list li {
    padding: var(--space-sm) 0;
    padding-left: var(--space-md);
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
}

.seo-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #ff9100;
    font-weight: 700;
}

.seo-list li strong {
    color: #1a2332;
    font-weight: 700;
}

.seo-list-inline {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    list-style: none;
    padding: 0;
    margin: var(--space-md) 0;
}

.seo-list-inline li {
    background: white;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a2332;
    border: 2px solid #87CEEB;
}

.seo-note {
    margin-top: var(--space-lg);
    padding: var(--space-md);
    background: white;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    color: #ff9100;
    text-align: center;
}

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

.power-cta-section {
    background: white;
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.power-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.05) 0%, rgba(255, 145, 0, 0.05) 100%);
    pointer-events: none;
}

.power-cta-wrapper {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.power-cta-content {
    background: white;
    padding: var(--space-3xl);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid #87CEEB;
}

.power-cta-heading {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: #1a2332;
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.power-cta-subtext {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: #4a5568;
    margin-bottom: var(--space-2xl);
    font-weight: 500;
}

.power-cta-buttons {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    align-items: center;
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.btn-power {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-lg) var(--space-2xl);
    border-radius: var(--radius-lg);
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.btn-power::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-power:hover::before {
    width: 300px;
    height: 300px;
}

.btn-power-call {
    background: linear-gradient(135deg, #ff9100 0%, #ff7c00 100%);
    color: white;
    border: 3px solid #ff9100;
}

.btn-power-call:hover {
    background: linear-gradient(135deg, #ff7c00 0%, #ff6600 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 145, 0, 0.4);
}

.btn-power-quote {
    background: white;
    color: #1a2332;
    border: 3px solid #87CEEB;
}

.btn-power-quote:hover {
    background: #87CEEB;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(135, 206, 235, 0.4);
}

.btn-power-icon {
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

.btn-power-text {
    position: relative;
    z-index: 1;
}

.power-cta-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
    padding-top: var(--space-xl);
    border-top: 2px solid rgba(135, 206, 235, 0.3);
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.trust-badge-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #ff9100 0%, #ff7c00 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.trust-badge-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a2332;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   EXCAVATOR ANIMATION - DRIVE IN FROM LEFT
   ======================================== */

/* For Tool Showcase Template */
.excavator-drive-in {
    opacity: 0;
    transform: translateX(-300px);
    animation: driveInExcavatorLarge 2s ease-out forwards;
    animation-delay: 0.8s;
}

@keyframes driveInExcavatorLarge {
    0% {
        opacity: 0;
        transform: translateX(-300px);
    }
    60% {
        opacity: 1;
        transform: translateX(15px);
    }
    80% {
        transform: translateX(-8px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hover bounce for tool showcase */
.excavator-animated:hover .excavator-drive-in {
    animation: excavatorBounce 0.6s ease-in-out;
}

/* For Service Cards (Homepage) */

.service-card-excavator .excavator-icon {
    position: relative;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    overflow: visible;
}

.excavator-image {
    width: 80px;
    height: auto;
    opacity: 0;
    transform: translateX(-200px);
    animation: driveInExcavator 1.5s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes driveInExcavator {
    0% {
        opacity: 0;
        transform: translateX(-200px);
    }
    60% {
        opacity: 1;
        transform: translateX(10px);
    }
    80% {
        transform: translateX(-5px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Trigger animation on scroll */
.service-card-excavator[data-scroll-visible="true"] .excavator-image {
    animation: driveInExcavator 1.5s ease-out forwards;
}

/* Hover effect - excavator bounces */
.service-card-excavator:hover .excavator-image {
    animation: excavatorBounce 0.6s ease-in-out;
}

@keyframes excavatorBounce {
    0%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-8px);
    }
    50% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(-4px);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 968px) {
    .seo-content-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .power-cta-content {
        padding: var(--space-2xl);
    }

    .power-cta-buttons {
        flex-direction: column;
        gap: var(--space-md);
    }

    .btn-power {
        width: 100%;
        max-width: 400px;
    }

    .power-cta-badges {
        flex-direction: column;
        gap: var(--space-md);
    }
}

@media (max-width: 640px) {
    .seo-content-main .section-heading {
        font-size: 1.5rem;
    }

    .seo-text {
        font-size: 1rem;
    }

    .seo-block {
        padding: var(--space-lg);
    }

    .power-cta-heading {
        font-size: 1.75rem;
    }

    .power-cta-subtext {
        font-size: 1rem;
    }

    .btn-power {
        padding: var(--space-md) var(--space-lg);
        font-size: 1rem;
    }

    .btn-power-icon {
        font-size: 1.25rem;
    }

    .trust-badge-icon {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }

    .trust-badge-text {
        font-size: 0.85rem;
    }

    .excavator-image {
        width: 60px;
    }
}
