/* ========================================
   SECTION HEADERS (shared)
   ======================================== */

.section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.section-header p {
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-md);
}

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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 100px;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* --- Aurora Orbs --- */
.hero__aurora {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    will-change: transform, opacity;
}

.hero__orb--1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(24, 224, 255, 0.12) 0%, transparent 70%);
    top: -10%;
    right: -5%;
    filter: blur(80px);
    opacity: 0;
}

.hero__orb--2 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(122, 30, 108, 0.14) 0%, transparent 70%);
    bottom: -5%;
    left: -8%;
    filter: blur(90px);
    opacity: 0;
}

.hero__orb--3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(24, 224, 255, 0.06) 0%, rgba(122, 30, 108, 0.06) 50%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(100px);
    opacity: 0;
}

.hero__bg-noise {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-noise.webp');
    background-repeat: repeat;
    opacity: 0.03;
}

.hero__bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(24, 224, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(24, 224, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero__container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero__content {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero__badge {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--accent-primary);
    background-color: rgba(24, 224, 255, 0.08);
    border: 1px solid rgba(24, 224, 255, 0.2);
    border-radius: 100px;
    padding: 0.375rem 1rem;
    margin-bottom: var(--space-xl);
    letter-spacing: 0.04em;
}

.hero__title {
    margin-bottom: var(--space-lg);
}

/* --- Hero Banner Image --- */
.hero__banner {
    position: relative;
    margin-bottom: var(--space-xl);
    border-radius: var(--radius-lg);
    opacity: 0;
    transform: translateY(12px);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.6s ease;
    cursor: default;
}

.hero__banner:hover {
    transform: translateY(-6px);
}

.hero__banner-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    transition: filter 0.6s ease, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.85) saturate(1.1);
    margin-left: auto;
    margin-right: auto;
}

.hero__banner:hover .hero__banner-img {
    filter: brightness(1) saturate(1.25);
    transform: scale(1.015);
}

/* Ambient glow spots — static position, pulsing opacity */
.hero__banner-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
    opacity: 0;
}

.hero__banner-glow--1 {
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(24, 224, 255, 0.45) 0%, transparent 70%);
    top: 15%;
    left: 10%;
    filter: blur(25px);
    animation: bannerPulse1 4s ease-in-out infinite;
}

.hero__banner-glow--2 {
    width: 110px;
    height: 110px;
    background: radial-gradient(circle, rgba(122, 30, 108, 0.4) 0%, transparent 70%);
    bottom: 20%;
    right: 12%;
    filter: blur(20px);
    animation: bannerPulse2 5s ease-in-out 1.5s infinite;
}

.hero__banner-glow--3 {
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(24, 224, 255, 0.3) 0%, transparent 70%);
    top: 50%;
    right: 35%;
    filter: blur(18px);
    animation: bannerPulse3 6s ease-in-out 3s infinite;
}

@keyframes bannerPulse1 {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.85; }
}

@keyframes bannerPulse2 {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.75; }
}

@keyframes bannerPulse3 {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.65; }
}

/* Neon border glow — always on, slow pulse */
.hero__banner::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(24, 224, 255, 0.25);
    box-shadow:
        inset 0 0 25px rgba(24, 224, 255, 0.05),
        0 0 20px rgba(24, 224, 255, 0.08),
        0 0 40px rgba(24, 224, 255, 0.04);
    pointer-events: none;
    z-index: 3;
    animation: neonBorderPulse 5s ease-in-out infinite;
}

@keyframes neonBorderPulse {
    0%, 100% {
        border-color: rgba(24, 224, 255, 0.2);
        box-shadow:
            inset 0 0 25px rgba(24, 224, 255, 0.04),
            0 0 15px rgba(24, 224, 255, 0.06),
            0 0 35px rgba(24, 224, 255, 0.03);
    }
    50% {
        border-color: rgba(24, 224, 255, 0.5);
        box-shadow:
            inset 0 0 35px rgba(24, 224, 255, 0.08),
            0 0 30px rgba(24, 224, 255, 0.12),
            0 0 60px rgba(24, 224, 255, 0.06);
    }
}

.hero__banner:hover::after {
    border-color: rgba(24, 224, 255, 0.6);
    box-shadow:
        inset 0 0 40px rgba(24, 224, 255, 0.1),
        0 0 40px rgba(24, 224, 255, 0.18),
        0 0 80px rgba(24, 224, 255, 0.08);
    animation-play-state: paused;
    transition: border-color 0.6s ease, box-shadow 0.6s ease;
}

/* Bottom fade into dark background */
.hero__banner::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, var(--bg-primary) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

@media (prefers-reduced-motion: reduce) {
    .hero__banner-glow--1,
    .hero__banner-glow--2,
    .hero__banner-glow--3 {
        animation: none;
        opacity: 0.3;
    }
    .hero__banner::after {
        animation: none;
        border-color: rgba(24, 224, 255, 0.2);
    }
    .hero__banner,
    .hero__banner-img {
        transition: none;
    }
    .hero__banner:hover {
        transform: none;
    }
    .hero__banner:hover .hero__banner-img {
        transform: none;
    }
}

.hero__subtitle {
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

.hero__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-muted);
    font-size: var(--text-sm);
}

/* ========================================
   SERVICES
   ======================================== */

.services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.services__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(24, 224, 255, 0.06);
    border: 1px solid rgba(24, 224, 255, 0.12);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.services__card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
}

.services__card p {
    font-size: var(--text-base);
    margin-bottom: var(--space-lg);
}

.services__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.services__list li {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    padding-left: var(--space-lg);
    position: relative;
}

.services__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-primary);
    opacity: 0.6;
}

/* ========================================
   PRICING
   ======================================== */

.pricing__range {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-4xl);
}

.pricing__range-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    padding: var(--space-3xl);
    text-align: center;
    max-width: 560px;
    width: 100%;
}

.pricing__range-label {
    color: var(--text-muted);
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: var(--space-md);
}

.pricing__range-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.pricing__range-note {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    margin-bottom: var(--space-2xl);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.pricing__includes h3 {
    text-align: center;
    font-size: var(--text-xl);
    margin-bottom: var(--space-2xl);
}

.pricing__includes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    max-width: 800px;
    margin: 0 auto;
}

.pricing__includes-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-secondary);
    font-size: var(--text-sm);
}

/* ========================================
   HOSTING
   ======================================== */

.hosting__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    align-items: start;
}

.hosting__card {
    position: relative;
    display: flex;
    flex-direction: column;
}

.hosting__card--featured {
    border-color: var(--accent-primary);
    box-shadow: 0 0 30px rgba(24, 224, 255, 0.08);
}

.hosting__card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-primary);
    color: var(--bg-primary);
    font-family: 'Space Grotesk', sans-serif;
    font-size: var(--text-sm);
    font-weight: 600;
    padding: 0.25rem 1rem;
    border-radius: 100px;
    white-space: nowrap;
}

.hosting__card-header {
    margin-bottom: var(--space-md);
}

.hosting__card-header h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-xs);
}

.hosting__price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.hosting__amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--text-primary);
}

.hosting__period {
    color: var(--text-muted);
    font-size: var(--text-sm);
}

.hosting__description {
    font-size: var(--text-sm);
    margin-bottom: var(--space-lg);
}

.hosting__features {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
    flex-grow: 1;
}

.hosting__features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-secondary);
    font-size: var(--text-sm);
}

.hosting__features li svg {
    flex-shrink: 0;
}

/* ========================================
   PORTFOLIO
   ======================================== */

.portfolio__featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.portfolio__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-default);
    background-color: var(--bg-surface);
}

.portfolio__image img {
    width: 100%;
    height: auto;
    display: block;
}

.portfolio__type {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: var(--space-md);
}

.portfolio__details h3 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-md);
}

.portfolio__details p {
    margin-bottom: var(--space-xl);
}

.portfolio__tech {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.portfolio__tag {
    background-color: rgba(24, 224, 255, 0.06);
    border: 1px solid rgba(24, 224, 255, 0.15);
    color: var(--accent-primary);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
}

.portfolio__highlights {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
}

.portfolio__highlight {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-secondary);
    font-size: var(--text-sm);
}

.portfolio__highlight svg {
    flex-shrink: 0;
}

.portfolio__more {
    text-align: center;
    margin-top: var(--space-3xl);
}

.portfolio__more-text {
    color: var(--text-muted);
    font-size: var(--text-sm);
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   PROCESS
   ======================================== */

.process__timeline {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
}

.process__timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--accent-primary), var(--border-default));
    opacity: 0.3;
}

.process__step {
    display: flex;
    gap: var(--space-2xl);
    padding-bottom: var(--space-3xl);
    position: relative;
}

.process__step:last-child {
    padding-bottom: 0;
}

.process__number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--accent-primary);
    background-color: var(--bg-primary);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--accent-primary);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.process__content h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
    padding-top: var(--space-sm);
}

.process__content p {
    font-size: var(--text-base);
}

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

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

.faq__item {
    border-bottom: 1px solid var(--border-default);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-xl) 0;
    cursor: pointer;
    text-align: left;
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
    font-size: var(--text-lg);
    font-weight: 600;
    background: none;
    border: none;
    transition: color var(--transition-base);
}

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

.faq__icon {
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.faq__item.is-open .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq__item.is-open .faq__answer {
    max-height: 300px;
    padding-bottom: var(--space-xl);
}

.faq__answer p {
    font-size: var(--text-base);
    color: var(--text-secondary);
}

/* ========================================
   FINAL CTA
   ======================================== */

.final-cta__content {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.final-cta__content h2 {
    margin-bottom: var(--space-lg);
}

.final-cta__content p {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-2xl);
}

.final-cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* ========================================
   MICRO TOOLS PORTFOLIO
   ======================================== */

.micro-tools__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.micro-tools__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(24, 224, 255, 0.06);
    border: 1px solid rgba(24, 224, 255, 0.12);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.micro-tools__card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
}

.micro-tools__card p {
    font-size: var(--text-base);
    margin-bottom: var(--space-lg);
}

.micro-tools__tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.micro-tools__cta {
    text-align: center;
    margin-top: var(--space-3xl);
}

/* ========================================
   ABOUT
   ======================================== */

.about__grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3xl);
    max-width: 800px;
    margin: 0 auto;
}

.about__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-default);
    background-color: var(--bg-surface);
    width: 100%;
}

.about__image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about__content {
    text-align: center;
}

.about__content h2 {
    margin-bottom: var(--space-lg);
}

.about__lead {
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

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

.about__content p:last-of-type {
    margin-bottom: var(--space-2xl);
}

.about__values {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    text-align: left;
}

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

.about__value svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.about__value strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: var(--text-base);
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.about__value span {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    line-height: 1.6;
}

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

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.contact__info h2 {
    margin-bottom: var(--space-md);
}

.contact__info p {
    margin-bottom: var(--space-2xl);
}

.contact__direct {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact__direct-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-secondary);
    font-size: var(--text-base);
    transition: color var(--transition-base);
}

.contact__direct-item:hover {
    color: var(--accent-primary);
}

.contact__meeting-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-size: var(--text-base);
    font-family: inherit;
}

/* Contact Form */
.contact__form-wrapper {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
}

.contact__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.form-group .required {
    color: var(--accent-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: var(--text-base);
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

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

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(24, 224, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact__submit {
    width: 100%;
}

.form-feedback {
    padding: var(--space-md);
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    margin-bottom: var(--space-lg);
}

.form-feedback--success {
    background-color: rgba(24, 224, 255, 0.08);
    border: 1px solid rgba(24, 224, 255, 0.2);
    color: var(--accent-primary);
}

.form-feedback--error {
    background-color: rgba(198, 40, 40, 0.08);
    border: 1px solid rgba(198, 40, 40, 0.2);
    color: var(--danger);
}

/* ========================================
   RESPONSIVE - ALL SECTIONS
   ======================================== */

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: var(--space-3xl);
    }

    .hero__container {
        position: relative;
    }

    .hero__orb--1 {
        width: 350px;
        height: 350px;
    }

    .hero__orb--2 {
        width: 280px;
        height: 280px;
    }

    .hero__orb--3 {
        width: 220px;
        height: 220px;
    }

    .hero__content {
        text-align: left;
    }

    .hero__subtitle {
        margin-left: 0;
        margin-right: 0;
    }

    .hero__actions {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .hero__banner {
        margin-bottom: var(--space-md);
        border-radius: var(--radius-md);
    }

    .hero__banner-img {
        border-radius: var(--radius-md);
    }

    .hero__banner::after,
    .hero__banner::before {
        border-radius: var(--radius-md);
    }

    .hero__banner::before {
        border-radius: 0 0 var(--radius-md) var(--radius-md);
    }

    .hero__banner-glow--1 {
        width: 70px;
        height: 70px;
        filter: blur(18px);
    }

    .hero__banner-glow--2 {
        width: 55px;
        height: 55px;
        filter: blur(15px);
    }

    .hero__banner-glow--3 {
        width: 45px;
        height: 45px;
        filter: blur(14px);
    }

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

    .hero__trust {
        flex-direction: column;
        gap: var(--space-sm);
        justify-content: flex-start;
        align-items: flex-start;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .pricing__includes-grid {
        grid-template-columns: 1fr;
    }

    .hosting__grid {
        grid-template-columns: 1fr;
    }

    .portfolio__featured {
        grid-template-columns: 1fr;
    }

    .portfolio__image {
        order: -1;
    }

    .process__timeline::before {
        display: none;
    }

    .process__step {
        flex-direction: column;
        gap: var(--space-md);
    }

    .contact__grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .micro-tools__grid {
        grid-template-columns: 1fr;
    }

    .about__grid {
        gap: var(--space-2xl);
    }

    .about__content {
        text-align: left;
    }
}

