/* HERO SECTION */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--bg)
}

.hero-bg {
    position: absolute;
    inset: 0
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(211, 47, 47, .12);
    border: 1px solid rgba(211, 47, 47, .25);
    color: var(--red2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 28px;
    animation: fadeDown .6s ease
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--red3);
    border-radius: 50%;
    animation: pulse 2s infinite
}

.slide {
    display: none;
    animation: fadeIn .6s ease
}

.slide.active {
    display: block
}

.slide h1 {
    font-size: clamp(2.2rem, 8vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.slide h1 .accent {
    color: var(--red2)
}

.slide p {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px
}


.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap
}

.stat {
    display: flex;
    flex-direction: column
}

.stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--red2)
}

.stat-label {
    font-size: .8rem;
    color: var(--text-muted);
    font-weight: 500
}

/* SLIDESHOW CONTROLS */
.slide-dots {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 40px
}

.dot-btn {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: all .3s
}

.dot-btn.active {
    background: var(--red);
    width: 28px;
    border-radius: 5px
}

.progress-bar {
    height: 2px;
    background: var(--border);
    border-radius: 2px;
    margin-top: 8px;
    overflow: hidden
}

.progress-fill {
    height: 100%;
    background: var(--red);
    border-radius: 2px;
    width: 0;
    transition: width linear
}

/* HERO GRAPHIC */
.hero-graphic {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

.graphic-main {
    width: 100%;
    max-width: 460px;
    position: relative
}

.graphic-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(211, 47, 47, .25), var(--bg));
    border: 1px solid rgba(211, 47, 47, .3);
    margin: auto;
    position: relative;
    animation: float 6s ease-in-out infinite
}

.graphic-circle::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 1px solid rgba(211, 47, 47, .1);
    animation: spin 20s linear infinite
}

.graphic-circle::after {
    content: '';
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    border: 1px dashed rgba(211, 47, 47, .07);
    animation: spin 30s linear infinite reverse
}

.graphic-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(211, 47, 47, .7)
}

.floating-tag {
    position: absolute;
    background: var(--glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    padding: 10px 16px;
    border-radius: 10px;
    font-size: .82rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: float 4s ease-in-out infinite
}

.floating-tag:nth-child(2) {
    top: 10%;
    left: 0;
    animation-delay: 0s
}

.floating-tag:nth-child(3) {
    bottom: 15%;
    right: 0;
    animation-delay: 1.5s
}

.floating-tag:nth-child(4) {
    top: 55%;
    left: -10%;
    animation-delay: 3s
}

.tag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red3)
}

/* ABOUT SECTION */
#about {
    background: var(--bg2);
    position: relative;
    overflow: hidden
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.about-image {
    position: relative
}

.about-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden
}

.about-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(211, 47, 47, .2), transparent 70%)
}

.about-card-icon {
    font-size: 3rem;
    color: var(--red2);
    margin-bottom: 16px
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px
}

.about-card p {
    color: var(--text-muted);
    font-size: .95rem
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px
}

.about-stat {
    background: rgba(211, 47, 47, .08);
    border: 1px solid rgba(211, 47, 47, .15);
    border-radius: 10px;
    padding: 16px;
    text-align: center
}

.about-stat .num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--red2)
}

.about-stat .lbl {
    font-size: .78rem;
    color: var(--text-muted);
    font-weight: 500
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.8
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .9rem;
    color: var(--text-muted)
}

.feature-item i {
    color: var(--red2);
    width: 20px
}

/* SERVICES SECTION GRID */
#services {
    background: var(--bg);
    position: relative;
    overflow: hidden
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px
}

.service-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all .3s;
    position: relative;
    overflow: hidden;
    cursor: pointer
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--red2));
    transform: scaleX(0);
    transition: transform .3s
}

.service-card:hover::before {
    transform: scaleX(1)
}

.service-card:hover {
    border-color: rgba(211, 47, 47, .35);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .4)
}

@media (max-width: 768px) {
    .service-card {
        padding: 24px;
    }
}

.service-icon {
    width: 52px;
    height: 52px;
    background: rgba(211, 47, 47, .12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--red2);
    margin-bottom: 18px;
    transition: all .3s
}

.service-card:hover .service-icon {
    background: rgba(211, 47, 47, .25);
    color: var(--brand3);
    transform: scale(1.08)
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    transition: color .3s;
}

.service-card:hover h3 {
    color: var(--brand2);
}

.service-card p {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.6
}


/* PORTFOLIO SECTION */
#portfolio {
    background: var(--bg2);
    position: relative;
    overflow: hidden
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 50px
}

.portfolio-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all .3s
}

.portfolio-card:hover {
    border-color: rgba(211, 47, 47, .35);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .4)
}

@media (max-width: 576px) {
    .portfolio-img {
        height: 180px;
    }

    .portfolio-content {
        padding: 20px;
    }
}

.portfolio-img {
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.portfolio-img-bg {
    position: absolute;
    inset: 0;
    transition: transform .4s
}

.portfolio-card:hover .portfolio-img-bg {
    transform: scale(1.05)
}

.portfolio-icon {
    position: relative;
    z-index: 1;
    font-size: 3.5rem;
    color: rgba(255, 255, 255, .15)
}

.portfolio-content {
    padding: 24px
}

.portfolio-tag {
    display: inline-block;
    background: rgba(211, 47, 47, .15);
    color: var(--red2);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 600;
    margin-bottom: 10px
}

.portfolio-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px
}

.portfolio-card p {
    font-size: .85rem;
    color: var(--text-muted)
}

.portfolio-metric {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(211, 47, 47, .1);
    border: 1px solid rgba(211, 47, 47, .2);
    color: var(--red2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: .78rem;
    font-weight: 600;
    margin-top: 12px
}

/* TESTIMONIALS SECTION */
#testimonials {
    background: var(--bg);
    position: relative;
    overflow: hidden
}

.tcarousel {
    position: relative;
    margin-top: 50px;
    overflow: hidden
}

.ttrack-wrap {
    overflow: hidden;
    border-radius: 16px
}

.ttrack {
    display: flex;
    transition: transform .6s cubic-bezier(.4, 0, .2, 1)
}

.testimonial-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    flex: 0 0 calc(33.333% - 16px);
    min-width: calc(33.333% - 16px);
    margin-right: 24px;
    box-sizing: border-box
}

@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 12px);
        min-width: calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 100%;
        min-width: 100%;
        margin-right: 0;
        padding: 24px;
    }
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 5rem;
    color: rgba(211, 47, 47, .12);
    font-family: Georgia, serif;
    line-height: 1
}

.stars {
    color: #f59e0b;
    font-size: .85rem;
    margin-bottom: 14px
}

.testimonial-card p {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 20px
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--bg3));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0
}

.author-name {
    font-weight: 600;
    font-size: .9rem
}

.author-role {
    font-size: .78rem;
    color: var(--text-muted)
}

.trusted-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

@media (min-width: 768px) {
    .trusted-inner {
        flex-direction: row;
        justify-content: space-between;
    }
}

.trusted-label {
    font-size: .75rem;
    height: 40px;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid var(--border);
    color: var(--text-muted);
}

.tcarousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 28px
}

.tcarousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid var(--border);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s;
    font-size: .9rem
}

.tcarousel-btn:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff
}

.tdots {
    display: flex;
    gap: 8px;
    align-items: center
}

.tdot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: all .3s;
    padding: 0
}

.tdot.active {
    background: var(--red);
    width: 22px;
    border-radius: 4px
}

/* CONTACT SECTION */
#contact {
    background: var(--bg2);
    position: relative;
    overflow: hidden
}

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

.contact-info h2 {
    font-size: clamp(1.8rem, 5vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

@media (max-width: 992px) {
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-info {
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }

    .social-row {
        justify-content: center;
    }
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.8
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(211, 47, 47, .12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red2);
    font-size: 1rem;
    flex-shrink: 0
}

.contact-detail label {
    display: block !important;
    font-size: .78rem;
    color: var(--text-dim);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 4px;
}

.contact-detail a,
.contact-detail p {
    font-size: .95rem;
    font-weight: 500;
    color: var(--text)
}

.social-row {
    display: flex;
    gap: 12px;
    margin-top: 32px
}

.soc-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--glass);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: .95rem;
    transition: all .3s
}

.soc-btn:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    transform: translateY(-3px)
}

/* FORM STYLING */
.contact-form-wrap {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px
}

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

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 24px;
    }
}

.form-group {
    margin-bottom: 18px
}

.form-group label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .4px
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 14px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: .9rem;
    transition: border-color .3s;
    outline: none
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray2)
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--red)
}

.form-group select option {
    background: var(--bg3);
    color: var(--text)
}

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

/* NEWSLETTER */
.newsletter-wrap {
    margin-top: 28px;
    background: rgba(211, 47, 47, .08);
    border: 1px solid rgba(211, 47, 47, .2);
    border-radius: 12px;
    padding: 22px
}

.newsletter-wrap h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px
}

.newsletter-wrap p {
    font-size: .82rem;
    color: var(--gray);
    margin-bottom: 14px
}

.newsletter-row {
    display: flex;
    gap: 8px
}

.newsletter-row input {
    flex: 1;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 11px 14px;
    color: var(--text);
    font-family: inherit;
    font-size: .88rem;
    outline: none
}

.newsletter-row input::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.newsletter-row input:focus {
    border-color: var(--red)
}

.newsletter-row button {
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 11px 20px;
    font-weight: 600;
    font-size: .88rem;
    cursor: pointer;
    transition: background .3s;
    white-space: nowrap
}

.newsletter-row button:hover {
    background: var(--red2)
}

/* --- RESPONSIVE OVERRIDES --- */

/* 1. LARGE TABLETS / SMALL LAPTOPS (1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .about-inner {
        gap: 40px;
    }

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

    .testimonial-card {
        flex: 0 0 calc(50% - 12px);
        min-width: calc(50% - 12px);
    }
}

/* 2. TABLETS (992px) */
@media (max-width: 992px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 120px;
        gap: 40px;
    }

    .hero-graphic {
        display: none;
    }

    .slide p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions,
    .hero-stats,
    .slide-dots {
        justify-content: center;
    }

    .about-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

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

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-info {
        text-align: center;
    }

    .contact-item,
    .social-row {
        justify-content: center;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }
}

/* 3. MOBILE LANDSCAPE / LARGE PHONES (768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

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

    .service-card {
        padding: 24px;
    }

    .testimonial-card {
        flex: 0 0 100%;
        min-width: 100%;
        margin-right: 0;
        padding: 24px;
    }

    .trusted-inner {
        flex-direction: column;
        gap: 24px;
    }

    .trusted-logos {
        gap: 20px;
        justify-content: center;
    }
}

/* 4. MOBILE PORTRAIT (576px) */
@media (max-width: 576px) {
    .hero-stats {
        gap: 24px;
        flex-direction: column;
        align-items: center;
    }

    .about-features {
        grid-template-columns: 1fr;
        text-align: left;
    }

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

    .portfolio-img {
        height: 180px;
    }

    .portfolio-content {
        padding: 20px;
    }

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

    .contact-form-wrap {
        padding: 24px;
    }

    .newsletter-row {
        flex-direction: column;
    }
}

/* SERVICE FINDER WIZARD */
#service-finder {
    background: var(--bg2);
    padding-top: 60px;
    padding-bottom: 60px;
}

.finder-card {
    background: var(--glass);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.finder-header {
    text-align: center;
    margin-bottom: 40px;
}

.finder-wizard {
    max-width: 900px;
    margin: 0 auto;
}

.finder-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    gap: 15px;
}

.progress-step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg3);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.progress-step.active {
    background: var(--red2);
    border-color: var(--red2);
    color: #fff;
    box-shadow: 0 0 15px rgba(211, 47, 47, 0.4);
}

.progress-step.complete {
    background: #10b981;
    border-color: #10b981;
    color: #fff;
}

.progress-line {
    height: 2px;
    flex-grow: 1;
    max-width: 100px;
    background: var(--border);
    transition: all 0.3s ease;
}

.progress-line.active {
    background: var(--red2);
}

.finder-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.finder-step.active {
    display: block;
}

.finder-step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.option-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-card:hover {
    background: rgba(211, 47, 47, 0.05);
    border-color: rgba(211, 47, 47, 0.3);
    transform: translateY(-5px);
}

.option-card.selected {
    background: rgba(211, 47, 47, 0.1);
    border-color: var(--red2);
    box-shadow: 0 0 20px rgba(211, 47, 47, 0.15);
}

.option-icon {
    font-size: 2rem;
    color: var(--red2);
    margin-bottom: 16px;
}

.option-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.option-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.finder-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.result-content {
    text-align: center;
    padding: 20px 0;
}

.result-icon {
    width: 80px;
    height: 80px;
    background: rgba(211, 47, 47, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--red2);
    margin: 0 auto 24px;
}

.pulse-red {
    animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(211, 47, 47, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(211, 47, 47, 0);
    }
}

.result-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .finder-card {
        padding: 30px 20px;
    }

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