* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #3b82f6;
    --secondary-blue: #60a5fa;
    --light-blue: #dbeafe;
    --dark-blue: #1e40af;
    --rose: #3b82f6;
    --rose-light: #eff6ff;
    --rose-bg: #dbeafe;
    --navy: #1e293b;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --gray: #64748b;
    --gradient: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    --rose-gradient: #eff6ff;
}

/* Global Responsive Fixes */
html {
    overflow-x: hidden;
    width: 100%;
}

body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    color: var(--navy);
    background: var(--white);
    padding-top: 162px;
    /* For desktop with fixed header + breadcrumb */
}

/* Adjust body padding when breadcrumb is hidden on mobile */
@media (max-width: 968px) {
    body {
        padding-top: 70px;
        /* Only account for mobile header */
    }
}

@media (max-width: 640px) {
    body {
        padding-top: 65px;
        /* Smaller padding for small mobile screens */
    }
}

img {
    max-width: 100%;
    height: auto;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.header.scrolled {
    box-shadow: 0 6px 40px rgba(0, 0, 0, 0.12);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo img {
    height: 80px;
    width: auto;
    transition: all 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 45px;
    align-items: center;
}

.nav-menu a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-blue);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-icon-btn {
    background: var(--light-blue);
    border: none;
    color: var(--primary-blue);
    padding: 12px;
    border-radius: 12px;
    cursor: pointer;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.search-icon-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: scale(1.1);
}

.btn-contact {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    transition: all 0.3s;
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    filter: brightness(1.1);
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger-menu span {
    width: 28px;
    height: 3px;
    background: var(--navy);
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 3px;
}

@media (max-width: 968px) {
    .hamburger-menu {
        display: flex;
    }

    .nav-menu,
    .nav-actions .btn-contact {
        display: none;
    }

    .logo img {
        height: 60px;
    }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(30, 41, 59, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 100px 30px;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    left: 0;
}

.mobile-menu-list {
    list-style: none;
}

.mobile-menu-list a {
    color: white;
    font-size: 28px;
    font-weight: 700;
    text-decoration: none;
    display: block;
    padding: 15px 0;
    transition: 0.3s;
}

.mobile-menu-list a:hover {
    color: var(--primary-blue);
    padding-left: 10px;
}

/* Search Modal Styles */
.search-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.search-modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
}

.search-modal-content {
    background: var(--white);
    width: 90%;
    max-width: 900px;
    border-radius: 20px;
    padding: 40px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideDown 0.3s ease;
}

.search-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.search-modal-header h2 {
    font-size: 28px;
    color: var(--navy);
}

.close-search-modal {
    background: none;
    border: none;
    font-size: 32px;
    color: var(--gray);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.close-search-modal:hover {
    color: var(--primary-blue);
}

.modal-search-bar {
    position: relative;
    margin-bottom: 40px;
}

.modal-search-bar input {
    width: 100%;
    padding: 18px 60px 18px 25px;
    border: 2px solid var(--light-blue);
    border-radius: 50px;
    font-size: 18px;
    transition: border-color 0.3s;
}

.modal-search-bar input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.modal-search-bar button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.category-item {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.category-item:hover {
    background: var(--light-blue);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

.category-item h4 {
    color: var(--navy);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-item p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.5;
}

.category-item.hidden {
    display: none;
}

.no-results {
    text-align: center;
    padding: 40px;
    color: var(--gray);
    display: none;
}

.no-results.show {
    display: block;
}

.no-results i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Breadcrumb */
.breadcrumb {
    background: #f8f9fa;
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

/* Hide breadcrumb on mobile/tablet */
@media (max-width: 968px) {
    .breadcrumb {
        display: none;
    }
}

.service-link:hover {
    transform: translateY(-2px);
    filter: brightness(0.95);
    text-decoration: none !important;
}

.breadcrumb-container .active {
    pointer-events: none;
}

/* Hero Section */
.service-hero {
    background: var(--rose-gradient);
    padding: 120px 0;
    color: var(--navy);
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.service-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.service-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-hero-text h1 {
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: capitalize;
    color: var(--navy);
}

.service-hero-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.95;
}

.service-image-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    background: white;
    transition: all 0.5s ease;
}

.service-image-wrapper img {
    width: 100%;
    display: block;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-image-wrapper:hover img {
    transform: scale(1.1);
}

/* Representative Boxes Section */
.rep-boxes-section {
    padding: 100px 0;
    background: white;
}

.rep-boxes-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.rep-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.rep-card {
    background: var(--white);
    border-radius: 20px;
    padding: 60px 40px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.rep-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.rep-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15);
    border-color: var(--light-blue);
}

.rep-card:hover::before {
    transform: scaleX(1);
}

.rep-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 35px;
    color: var(--primary-blue);
    transition: 0.3s;
}

.rep-card:hover .rep-icon {
    transform: scale(1.1) rotate(-5deg);
}

.rep-card h3 {
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rep-card p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .rep-grid {
        grid-template-columns: 1fr;
    }

    .service-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-image-wrapper {
        margin-top: 40px;
    }

    .service-hero-text h1 {
        font-size: 32px;
    }

    .rep-boxes-section {
        padding: 60px 0;
    }
}

/* Footer */
.footer {
    background: var(--navy);
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 25px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
}

.footer-links a:hover {
    color: white;
    padding-left: 8px;
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 14px;
}

/* Added Sections Styles */
.tasks-section {
    padding: 100px 0;
    position: relative;
}

.tasks-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tasks-header {
    text-align: center;
    margin-bottom: 60px;
}

.tasks-header h2 {
    font-size: 42px;
    color: #1e293b;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

.tasks-header p {
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
}

.tasks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.task-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px 30px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid #cbd5e1;
    text-align: left;
}

.task-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
}

.task-icon {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    background: #dbeafe;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #3b82f6;
    transition: all 0.3s;
}

.task-card:hover .task-icon {
    background: #3b82f6;
    color: white;
    transform: scale(1.1);
}

.task-info {
    flex: 1;
    min-width: 0;
}

.task-card h4 {
    font-size: 18px;
    color: #000000;
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.3;
}

.task-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

.info-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.info-image {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.info-image img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.info-image:hover img {
    transform: scale(1.05);
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    font-size: 16px;
    color: #000000;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    line-height: 1.5;
    font-weight: 600;
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 50px;
    border: 1px solid #fef3c7;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.check-list li:hover {
    transform: translateX(10px);
    border-color: #f59e0b;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.12);
}

.check-list li i {
    color: #f59e0b;
    font-size: 18px;
    flex-shrink: 0;
}

/* Hero Button Updates */
.btn-rose-solid {
    background: #3b82f6;
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
    font-size: 15px;
}

.btn-rose-solid:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
    background: #2563eb;
    color: white;
}

.btn-rose-outline {
    background: transparent;
    color: #3b82f6;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #3b82f6;
    transition: all 0.3s ease;
    font-size: 15px;
}

.btn-rose-outline:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-3px);
}

/* Focus Bar System */
.focus-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.focus-row {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.focus-icon {
    font-size: 45px;
    color: #d1d5db;
    transition: all 0.3s;
    flex-shrink: 0;
}

.focus-bar {
    display: flex;
    background: transparent;
    width: 100%;
    border-radius: 4px;
    overflow: visible;
    align-items: stretch;
    min-height: 80px;
    box-shadow: none;
    border: none;
}

.focus-label {
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 20px;
    min-width: 250px;
    width: 250px;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}

.focus-text {
    padding: 20px 30px;
    display: flex;
    align-items: center;
    color: #334155;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    flex: 1;
    background: #f1f5f9;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Left Side Label */
.focus-row.label-left .focus-label {
    clip-path: polygon(0% 0%, 85% 0%, 100% 50%, 85% 100%, 0% 100%);
    margin-right: -25px;
}

/* Right Side Label */
.focus-row.label-right {
    flex-direction: row-reverse;
}

.focus-row.label-right .focus-label {
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 15% 100%, 0% 50%);
    margin-left: -25px;
}

.focus-row:hover .focus-icon {
    color: var(--rose);
    transform: scale(1.1) rotate(15deg);
}

/* Our Results Section */
.result-section {
    padding: 100px 0;
    background: #f8fafc;
}

.result-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.result-header {
    text-align: center;
    margin-bottom: 60px;
}

.result-header h2 {
    font-size: 42px;
    color: #1e293b;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

.result-header p {
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.result-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #cbd5e1;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.08);
    border-color: #fef3c7;
}

.result-icon {
    flex-shrink: 0;
    font-size: 28px;
    color: var(--rose);
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.result-card:hover .result-icon {
    transform: scale(1.1);
}

.result-card p {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

/* Centering rules for odd items in grids */
@media (min-width: 1025px) {

    /* Results grid: if 10th item, put in column 2 */
    .result-grid .result-card:last-child:nth-child(3n+1) {
        grid-column: 2;
    }

    /* Results grid: if 11th items, put in columns 1 and 2 but centered is hard with grid, 
               so we focus on the specific cases. For 10 items, column 2 is center. */
}

@media (min-width: 769px) {

    /* Software grid: if 9th item, center it */
    .software-plan-container .plan-item:last-child:nth-child(odd) {
        grid-column: 1 / span 2;
        justify-self: center;
        width: calc(50% - 13px);
    }
}


/* Software Plan Grid Styles - GLOBAL */
.software-plan-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 50px;
}

.plan-item {
    display: flex;
    align-items: stretch;
    min-height: 100px;
    position: relative;
}

.plan-item.left {
    flex-direction: row;
}

.plan-item.right {
    flex-direction: row-reverse;
}

.plan-text {
    background: #ffffff;
    flex: 1;
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    border-radius: 4px;
    border: 1px solid #cbd5e1;
}

.plan-text h4 {
    margin: 0 0 5px 0;
    color: var(--navy);
    font-size: 18px;
    font-weight: 800;
}

.plan-text p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
}

.plan-icon-box {
    width: 100px;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.plan-icon-box img {
    max-width: 85px;
    max-height: 65px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.plan-item:hover .plan-icon-box img {
    transform: scale(1.1);
}

/* Left side: Arrow points LEFT into text */
.plan-item.left .plan-icon-box {
    background: #fb7185;
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 15% 100%, 0% 50%);
    margin-left: -20px;
}

/* Right side: Arrow points RIGHT into text */
.plan-item.right .plan-icon-box {
    background: #e11d48;
    clip-path: polygon(0% 0%, 85% 0%, 100% 50%, 85% 100%, 0% 100%);
    margin-right: -20px;
}

@media (max-width: 1024px) {
    .result-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    .service-hero-content {
        gap: 30px;
    }

    .service-hero-text h1 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 100px 0 60px;
    }

    .service-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .info-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .service-hero-text h1 {
        font-size: 32px;
    }

    .service-cta-buttons {
        justify-content: center;
        flex-direction: column;
    }

    .btn-rose-solid,
    .btn-rose-outline {
        width: 100%;
        justify-content: center;
    }

    .service-image-wrapper {
        margin-top: 40px;
    }

    .tasks-header h2,
    .result-header h2 {
        font-size: 32px;
    }

    .tasks-grid,
    .result-grid,
    .rep-grid,
    .footer-content,
    .software-plan-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        gap: 30px;
    }

    .focus-row,
    .focus-row.label-right {
        flex-direction: column;
        gap: 15px;
    }

    .focus-bar {
        flex-direction: column;
    }

    .focus-label {
        clip-path: none !important;
        margin: 0 !important;
        width: 100%;
        border-radius: 4px 4px 0 0;
        padding: 15px;
    }

    .focus-text {
        text-align: center;
        padding: 15px;
    }

    .plan-item.right {
        flex-direction: row;
    }

    .plan-item.right .plan-icon-box {
        clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 15% 100%, 0% 50%);
        margin-left: -20px;
        margin-right: 0;
        background: #fb7185;
    }
}

@media (max-width: 480px) {
    .service-hero-text h1 {
        font-size: 28px;
    }

    .tasks-section,
    .result-section,
    .rep-boxes-section {
        padding: 60px 0;
    }

    .task-card {
        padding: 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .task-icon {
        margin-bottom: 15px;
    }
}

/* Scroll Reveal Animation */
.reveal-on-scroll {
    opacity: 0 !important;
    transform: translateY(30px) !important;
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.reveal-on-scroll.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}