/* ===================================
   CSS RESET & BASE STYLES
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #0f3d2e;
    --color-accent: #1e6f50;
    --color-light-bg: #dff2ed;
    --color-text: #1a1a1a;
    --color-text-light: #4a5568;
    --color-white: #ffffff;
    --color-overlay: rgba(15, 61, 46, 0.75);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.section-light {
    background-color: var(--color-light-bg);
}

.section-service {
    background: linear-gradient(160deg, #0b2118 0%, #0f2e23 55%, #0b1f18 100%);
    color: var(--color-white);
}

.section-service .service-detail-title,
.section-service h2,
.section-service h3 {
    color: var(--color-white);
}

.section-service .service-detail-text,
.section-service p,
.section-service li {
    color: rgba(255, 255, 255, 0.9);
}

.section-service .service-detail-features h3 {
    color: var(--color-white);
}

.section-service .feature-list li strong {
    color: var(--color-white);
}

.section-service .feature-list li p {
    color: rgba(255, 255, 255, 0.85);
}

.section-outcomes {
    background: url('assets/Expected-Outcomes.png') center/cover no-repeat;
}

.section-outcomes .section-title {
    color: var(--color-white);
}

.section-financials {
    background: url('assets/Automate-Financials.png') center/cover no-repeat;
}

.section-financials .section-title {
    color: var(--color-white);
}

.section-why-custom {
    background: url('assets/Why-Custom.png') center/cover no-repeat;
}

.section-why-custom .section-title {
    color: var(--color-white);
}

.section-common-use {
    background: url('assets/Common-use.png') center/cover no-repeat;
}

.section-common-use .section-title {
    color: var(--color-white);
}

.section-what-we-deliver {
    background: linear-gradient(135deg, rgba(15, 61, 46, 0.82) 0%, rgba(30, 111, 80, 0.82) 100%), url('assets/What-we-deliver.png') center/cover no-repeat;
}

.section-what-we-deliver .section-title {
    color: var(--color-white);
}

.section-dashboard-types {
    background: linear-gradient(135deg, rgba(15, 61, 46, 0.82) 0%, rgba(30, 111, 80, 0.82) 100%), url('assets/Dashboard.png') center/cover no-repeat !important;
}

.section-dashboard-types .section-title {
    color: var(--color-white);
}

.section-cloud-approaches {
    background: linear-gradient(135deg, rgba(15, 61, 46, 0.82) 0%, rgba(30, 111, 80, 0.82) 100%), url('assets/Cloud.png') center/cover no-repeat;
}

.section-cloud-approaches .section-title {
    color: var(--color-white);
}

.section-compliance-frameworks {
    background: linear-gradient(135deg, rgba(15, 61, 46, 0.82) 0%, rgba(30, 111, 80, 0.82) 100%), url('assets/Compliance.png') center/cover no-repeat;
}

.section-compliance-frameworks .section-title {
    color: var(--color-white);
}

.section-common-applications {
    background: linear-gradient(135deg, rgba(15, 61, 46, 0.82) 0%, rgba(30, 111, 80, 0.82) 100%), url('assets/application.png') center/cover no-repeat;
}

.section-common-applications .section-title {
    color: var(--color-white);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.section-title-light {
    color: var(--color-white);
}

.section-dark {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* ===================================
   NAVIGATION
   =================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;

  /* keep your visual intent */
  background-color: transparent;
  padding: 1.5rem 0;

  /* the important part */
  transform: translateY(0);
  will-change: transform;

  /* explicit transitions (don’t rely on var(--transition) for this) */
  transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

/* when you want it hidden */
.navbar.hide {
  transform: translateY(-110%);
}


.navbar.scrolled {
  background-color: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}


.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: -0.5px;
    text-decoration: none;
    transition: var(--transition);
}

.logo-link:hover {
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-white);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--color-white);
    transition: var(--transition);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('assets/Background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: var(--color-white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-overlay) 0%, rgba(30, 111, 80, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 2rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -2px;
    line-height: 1.1;
}

.hero-since {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
    color: var(--color-light-bg);
}

.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    opacity: 0.95;
    color: var(--accent-color);
}

.hero-tagline {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-weight: 300;
    opacity: 0.85;
}

.hero-text {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

/* ===================================
   PROBLEM STATEMENT SECTION
   =================================== */

.problem-statement {
    background: linear-gradient(160deg, #0b1f18 0%, #102a21 55%, #0f1c18 100%);
    color: var(--color-white);
}

.problem-statement .section-title {
    color: var(--color-white);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.problem-card {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: var(--transition);
}

.problem-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.problem-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--color-accent);
}

.problem-icon svg {
    width: 100%;
    height: 100%;
}

.problem-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.4;
}

.problem-statement-text {
    text-align: center;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.82);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 900px) {
    .services-grid-cards {
        grid-template-columns: 1fr;
    }
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card-new {
    background-color: rgba(15, 61, 46, 0.72);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 2rem;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.18);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-link:hover .service-card-new {
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
    transform: translateY(-4px);
}

.service-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--color-white);
}

.service-icon svg {
    width: 22px;
    height: 22px;
}

.service-card-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1rem;
    line-height: 1.35;
}

.service-card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin: 0;
    padding: 0 0 0 1.6rem;
}

.service-card-list li {
    padding-left: 1.2rem;
    position: relative;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-card-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    font-size: 1.1rem;
}

/* ===================================
   OUTCOMES SECTION
   =================================== */

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.outcome-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
}

.outcome-item svg {
    width: 48px;
    height: 48px;
    color: var(--color-accent);
    margin-bottom: 1rem;
}


.outcome-item p {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-primary);
    line-height: 1.5;
}

.outcomes-statement {
    text-align: center;
    font-size: clamp(1.5rem, 2.6vw, 2.1rem);
    color: rgba(255, 255, 255, 0.96);
    font-weight: 700;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.4;
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: var(--transition);
}

.step:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.step-icon svg {
    width: 35px;
    height: 35px;
}

.step:hover .step-icon {
    background-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.step-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.step-connector {
    display: none;
}

.problem-icon,
.step-icon {
    display: none;
}

/* ===================================
   WHY US SECTION
   =================================== */

.why-us {
    background: linear-gradient(160deg, #0b1f18 0%, #102a21 55%, #0f1c18 100%);
}

.why-us .section-title {
    color: var(--color-white);
    text-align: left;
}

.why-us-content {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 3rem;
    align-items: center;
}

.why-us-text {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.why-us-intro {
    text-align: left;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.82);
    max-width: none;
    margin: 0;
    line-height: 1.7;
}

.why-us-list {
    list-style: none;
    max-width: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.why-us-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    color: var(--color-white);
    padding: 0.5rem 0;
    font-size: 1.15rem;
}

.why-us-list .why-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    color: var(--accent-color);
    stroke-width: 2;
    display: none;
}

.why-us-list .why-image {
    width: 24px;
    height: 24px;
    min-width: 24px;
    object-fit: contain;
    display: inline-block;
}

.why-us-media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-us-media img {
    width: min(100%, 420px);
    max-height: 320px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

@media (max-width: 900px) {
    .why-us-content {
        grid-template-columns: 1fr;
    }

    .why-us .section-title {
        text-align: center;
    }

    .why-us-intro {
        text-align: center;
    }

    .why-us-list li {
        justify-content: center;
    }
}

.cta.section-dark {
    background: linear-gradient(135deg, rgba(15, 61, 46, 0.88) 0%, rgba(30, 111, 80, 0.88) 100%), url('assets/Ready-to-Build.png') center/cover no-repeat;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-contact {
    margin-bottom: 2.5rem;
    font-size: 1.125rem;
}

.cta-contact p {
    margin-bottom: 0.5rem;
}

.cta-contact a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.cta-contact a:hover {
    color: var(--color-light-bg);
}

.cta-content {
    position: relative;
    z-index: 10;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 3rem 0 1.5rem;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.footer-website {
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.footer-website a {
    color: var(--color-white);
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition);
    font-weight: 500;
}

.footer-website a:hover {
    opacity: 1;
    color: var(--color-light-bg);
}

.footer-nav h4,
.footer-contact h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav ul li {
    margin-bottom: 0.5rem;
}

.footer-nav a,
.footer-contact a {
    color: var(--color-white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-nav a:hover,
.footer-contact a:hover {
    opacity: 1;
    color: var(--color-light-bg);
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.animate-fade-up.delay-1 {
    animation-delay: 0.2s;
}

.animate-fade-up.delay-2 {
    animation-delay: 0.4s;
}

.animate-fade-up.delay-3 {
    animation-delay: 0.6s;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1 {
    transition-delay: 0.15s;
}

.animate-on-scroll.delay-2 {
    transition-delay: 0.3s;
}

.animate-on-scroll.delay-3 {
    transition-delay: 0.45s;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 968px) {
    .section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .approach-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .step-connector {
        display: none;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .migration-process {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: var(--color-primary);
        width: 100%;
        padding: 2rem;
        gap: 1.5rem;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .problem-grid,
    .services-grid,
    .outcomes-grid,
    .services-grid-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-hero {
        padding: 6rem 0 4rem;
    }

    .service-hero-title {
        font-size: 2rem;
    }

    .service-hero-subtitle {
        font-size: 1.125rem;
    }

    .benefits-grid,
    .use-cases-grid,
    .tech-stack,
    .integration-grid,
    .cloud-platforms,
    .compliance-grid,
    .security-features,
    .use-cases-list {
        grid-template-columns: 1fr;
    }

    .roi-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .migration-step {
        flex-direction: column;
        text-align: center;
    }

    .step-number-alt {
        margin: 0 auto;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .service-card-new,
    .problem-card {
        padding: 1.5rem;
    }

    .service-hero {
        padding: 5rem 0 3rem;
    }

    .roi-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* ===================================
   ACCESSIBILITY
   =================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 3px;
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
    .navbar,
    .hero-buttons,
    .btn,
    .cta {
        display: none;
    }

    body {
        color: #000;
        background: #fff;
    }
}

/* ===================================
   SERVICE PAGE STYLES
   =================================== */

.service-hero {
    background: linear-gradient(135deg, rgba(15, 61, 46, 0.95) 0%, rgba(30, 111, 80, 0.95) 100%), url('assets/Custom-Built-Solutions.png') center/cover no-repeat;
    color: var(--color-white);
    padding: 8rem 0 5rem;
    margin-top: 0;
    text-align: center;
}

.service-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.service-hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    opacity: 0.95;
    line-height: 1.6;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.service-detail-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.service-detail-text {
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.service-detail-features h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-list li strong {
    display: block;
    color: var(--color-primary);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
}

.feature-list li p {
    color: var(--color-text-light);
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.benefit-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.benefit-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--color-white);
    line-height: 1.6;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
}

.process-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-white);
}

.process-step p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.tech-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tech-category {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.tech-category:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.tech-category h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.tech-category p {
    color: var(--color-white);
    line-height: 1.6;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.use-case-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.use-case-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.use-case-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.use-case-card p {
    color: var(--color-white);
    line-height: 1.6;
}

.roi-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    font-size: 1rem;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.integration-item {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.integration-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.integration-item h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.integration-item p {
    color: var(--color-white);
    line-height: 1.6;
}

.cloud-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.platform-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.platform-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.platform-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.platform-card p {
    color: var(--color-white);
    line-height: 1.6;
}

.migration-process {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.migration-step {
    display: flex;
    align-items: start;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.migration-step:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.step-number-alt {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.migration-step h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.migration-step p {
    color: var(--color-white);
    line-height: 1.6;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.compliance-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.compliance-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.compliance-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.compliance-card p {
    color: var(--color-white);
    line-height: 1.6;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.security-feature {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.security-feature:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.security-feature h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.security-feature p {
    color: var(--color-white);
    line-height: 1.6;
}

.use-cases-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.use-case-item {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.use-case-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.use-case-item h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.use-case-item p {
    color: var(--color-white);
    line-height: 1.6;
}
