* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1a1a2e;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.logo img {
    height: 42px;
    width: auto;
}

/* ===== HERO BANNER ===== */
.hero {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1628 0%, #1a237e 40%, #0d47a1 70%, #01579b 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(33, 150, 243, 0.08) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-30px);
    }
}

/* Animated particles/circles */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-particles span {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    animation: rise 12s infinite;
}

.hero-particles span:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 5%;
    animation-delay: 0s;
    animation-duration: 14s;
}

.hero-particles span:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 20%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.hero-particles span:nth-child(3) {
    width: 150px;
    height: 150px;
    bottom: 15%;
    left: 5%;
    animation-delay: 4s;
    animation-duration: 12s;
}

.hero-particles span:nth-child(4) {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 30%;
    animation-delay: 1s;
    animation-duration: 9s;
}

.hero-particles span:nth-child(5) {
    width: 250px;
    height: 250px;
    bottom: 30%;
    right: 35%;
    animation-delay: 3s;
    animation-duration: 16s;
}

@keyframes rise {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }

    50% {
        transform: translateY(-40px) scale(1.05);
        opacity: 0.7;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 40px 50px;
    width: 100%;
}

.hero-text {
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 8px 18px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(4px);
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #4fc3f7;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero h1 .highlight {
    background: linear-gradient(90deg, #4fc3f7, #81d4fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #4fc3f7, #0288d1);
    color: #ffffff;
    box-shadow: 0 8px 30px rgba(79, 195, 247, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(79, 195, 247, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 60px 40px;
    background: #f8fafc;
    position: relative;
}

.services-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #0288d1;
    margin-bottom: 16px;
}

.services-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 16px;
}

.services-header h2 .highlight {
    background: linear-gradient(135deg, #1a237e, #0288d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e8edf2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0288d1, #4fc3f7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(2, 136, 209, 0.12);
    border-color: rgba(2, 136, 209, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(2, 136, 209, 0.08), rgba(79, 195, 247, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 26px;
    height: 26px;
    stroke: #0288d1;
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
}

/* ===== MULTI CLOUD SECTION ===== */
.multicloud {
    padding: 60px 40px;
    background: linear-gradient(135deg, #f8f6ff 0%, #f0f7ff 50%, #faf5ff 100%);
    position: relative;
    overflow: hidden;
}

.multicloud::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(156, 39, 176, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.multicloud::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(33, 150, 243, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.multicloud-inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.multicloud-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.multicloud-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #7b2d8b;
    margin-bottom: 16px;
}

.multicloud-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 24px;
}

.multicloud-header h2 .highlight {
    background: linear-gradient(135deg, #7b2d8b, #1565c0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.multicloud-desc {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}

.multicloud-desc:last-of-type {
    margin-bottom: 0;
}

.multicloud-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.cloud-card {
    background: #ffffff;
    border: 1px solid rgba(123, 45, 139, 0.08);
    border-radius: 16px;
    padding: 32px 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 4px 20px rgba(123, 45, 139, 0.04);
}

.cloud-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    transition: height 0.3s ease;
}

.cloud-card--aws .cloud-card-accent {
    background: linear-gradient(90deg, #ff9900, #ffb84d);
}

.cloud-card--azure .cloud-card-accent {
    background: linear-gradient(90deg, #0078d4, #50a3f7);
}

.cloud-card--gcp .cloud-card-accent {
    background: linear-gradient(90deg, #4285f4, #34a853, #fbbc04, #ea4335);
}

.cloud-card--hybrid .cloud-card-accent {
    background: linear-gradient(90deg, #7b2d8b, #1565c0);
}

.cloud-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(123, 45, 139, 0.1);
    border-color: rgba(123, 45, 139, 0.15);
}

.cloud-card:hover .cloud-card-accent {
    height: 4px;
}

.cloud-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.cloud-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cloud-card-icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cloud-card-icon--aws {
    background: rgba(255, 153, 0, 0.1);
}

.cloud-card-icon--aws svg {
    stroke: #ff9900;
}

.cloud-card-icon--azure {
    background: rgba(0, 120, 212, 0.1);
}

.cloud-card-icon--azure svg {
    stroke: #0078d4;
}

.cloud-card-icon--gcp {
    background: rgba(66, 133, 244, 0.1);
}

.cloud-card-icon--gcp svg {
    stroke: #4285f4;
}

.cloud-card-icon--hybrid {
    background: rgba(123, 45, 139, 0.08);
}

.cloud-card-icon--hybrid svg {
    stroke: #7b2d8b;
}

.cloud-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
}

.cloud-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
}

/* ===== INDUSTRIES SECTION ===== */
.industries {
    padding: 60px 40px;
    background: linear-gradient(135deg, #f7f2ff 0%, #eef6ff 50%, #fff5fa 100%);
    position: relative;
    overflow: hidden;
}

.industries::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(123, 45, 139, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.industries-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.industries-header {
    text-align: center;
    margin-bottom: 50px;
}

.industries-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1565c0;
    margin-bottom: 16px;
}

.industries-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 18px;
}

.industries-header h2 .highlight {
    background: linear-gradient(135deg, #1565c0, #e91e7a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.industries-desc {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: #555;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.industry-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border: 1px solid rgba(123, 45, 139, 0.08);
    border-radius: 60px;
    padding: 14px 28px 14px 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
    cursor: default;
}

.industry-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(123, 45, 139, 0.1);
    border-color: rgba(123, 45, 139, 0.2);
    background: linear-gradient(135deg, #ffffff, #faf5ff);
}

.industry-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.08), rgba(123, 45, 139, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.industry-item:hover .industry-icon {
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.14), rgba(123, 45, 139, 0.16));
}

.industry-icon svg {
    width: 18px;
    height: 18px;
    stroke: #7b2d8b;
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.industry-item span {
    font-size: 0.92rem;
    font-weight: 500;
    color: #2a2a3e;
    white-space: nowrap;
}

/* ===== PILLARS SECTION ===== */
.pillars {
    padding: 60px 40px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.pillars::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(123, 45, 139, 0.15), rgba(21, 101, 192, 0.15), transparent);
}

.pillars-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.pillars-header {
    text-align: center;
    margin-bottom: 60px;
}

.pillars-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #7b2d8b;
    margin-bottom: 16px;
}

.pillars-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
}

.pillars-header h2 .highlight {
    background: linear-gradient(135deg, #7b2d8b, #e91e7a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pillars-row {
    display: flex;
    gap: 0;
}

.pillar {
    flex: 1;
    padding: 40px 24px;
    text-align: center;
    position: relative;
    border-right: 1px solid #f0eaf5;
    transition: all 0.4s ease;
}

.pillar:last-child {
    border-right: none;
}

.pillar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #1565c0, #7b2d8b, #e91e7a);
    border-radius: 3px;
    transition: width 0.4s ease;
}

.pillar:hover::after {
    width: 60%;
}

.pillar:hover {
    background: linear-gradient(180deg, rgba(123, 45, 139, 0.02), rgba(21, 101, 192, 0.03));
}

.pillar-top {
    margin-bottom: 24px;
}

.pillar-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.06), rgba(123, 45, 139, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.pillar:hover .pillar-icon-wrap {
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.12), rgba(123, 45, 139, 0.15));
    transform: scale(1.1);
}

.pillar-icon-wrap svg {
    width: 26px;
    height: 26px;
    stroke: #7b2d8b;
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pillar h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    line-height: 1.3;
}

.pillar p {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.7;
}

/* ===== PROCESS SECTION ===== */
.process {
    padding: 60px 40px;
    background: linear-gradient(180deg, #ffffff 0%, #f4f0ff 100%);
    position: relative;
}

.process-inner {
    max-width: 900px;
    margin: 0 auto;
}

.process-header {
    text-align: center;
    margin-bottom: 70px;
}

.process-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1565c0;
    margin-bottom: 16px;
}

.process-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
}

.process-header h2 .highlight {
    background: linear-gradient(135deg, #1565c0, #7b2d8b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-timeline {
    position: relative;
    padding-left: 60px;
}

.process-line {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #1565c0, #7b2d8b, #e91e7a);
    border-radius: 3px;
}

.process-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 28px;
    margin-bottom: 30px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step-marker {
    position: absolute;
    left: -60px;
    top: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #1565c0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(21, 101, 192, 0.15);
}

.process-step-marker span {
    font-size: 1rem;
    font-weight: 800;
    color: #1565c0;
    transition: color 0.3s ease;
}

.process-step:hover .process-step-marker {
    background: linear-gradient(135deg, #1565c0, #7b2d8b);
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(21, 101, 192, 0.3);
}

.process-step:hover .process-step-marker span {
    color: #ffffff;
}

.process-step-content {
    background: #ffffff;
    border-radius: 14px;
    padding: 28px 32px;
    border: 1px solid #ede7f6;
    box-shadow: 0 4px 20px rgba(123, 45, 139, 0.04);
    flex: 1;
    transition: all 0.3s ease;
}

.process-step:hover .process-step-content {
    box-shadow: 0 8px 30px rgba(21, 101, 192, 0.08);
    border-color: rgba(21, 101, 192, 0.15);
    transform: translateX(6px);
}

.process-step-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.process-step-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.75;
}

/* ===== WHY HINDCLOUD SECTION ===== */
.why-us {
    padding: 60px 40px;
    background: #ffffff;
    position: relative;
}

.why-us-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.why-us-left {
    position: sticky;
    top: 120px;
}

.why-us-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #e91e7a;
    margin-bottom: 16px;
}

.why-us-label::before {
    content: '';
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #e91e7a, #7b2d8b);
    border-radius: 2px;
}

.why-us-left h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
}

.why-us-left h2 .highlight {
    background: linear-gradient(135deg, #e91e7a, #7b2d8b, #1565c0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-us-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.why-us-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.why-us-item:first-child {
    padding-top: 0;
}

.why-us-item:last-child {
    border-bottom: none;
}

.why-us-item:hover {
    padding-left: 12px;
}

.why-us-number {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #e91e7a, #7b2d8b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    line-height: 1.2;
    min-width: 40px;
}

.why-us-item p {
    font-size: clamp(0.95rem, 1.5vw, 1.08rem);
    color: #444;
    line-height: 1.75;
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 60px 40px;
    background: #f9f9fc;
}

.cta-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.cta-box {
    position: relative;
    border-radius: 24px;
    padding: 70px 60px;
    background: linear-gradient(135deg, #1a1040 0%, #2a1565 30%, #1a237e 60%, #0d47a1 100%);
    overflow: hidden;
    text-align: center;
}

.cta-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
}

.cta-glow--1 {
    width: 300px;
    height: 300px;
    background: #e91e7a;
    top: -80px;
    right: -60px;
}

.cta-glow--2 {
    width: 250px;
    height: 250px;
    background: #4fc3f7;
    bottom: -80px;
    left: -60px;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-content h2 .highlight {
    background: linear-gradient(90deg, #4fc3f7, #81d4fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    max-width: 650px;
    margin: 0 auto 36px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    background: #ffffff;
    color: #1a237e;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.25);
}

.btn-cta-primary svg {
    width: 18px;
    height: 18px;
    fill: #1a237e;
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-cta-secondary svg {
    width: 18px;
    height: 18px;
    stroke: #ffffff;
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ===== FAQ SECTION ===== */
.faq {
    padding: 60px 40px;
    background: #ffffff;
    position: relative;
}

.faq-inner {
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1565c0;
    margin-bottom: 16px;
}

.faq-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #1a1a2e;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid #ede7f6;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item[open] {
    border-color: rgba(123, 45, 139, 0.2);
    box-shadow: 0 4px 20px rgba(123, 45, 139, 0.06);
}

.faq-question {
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 50px;
    transition: color 0.3s ease;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    font-weight: 300;
    color: #7b2d8b;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
    content: '−';
}

.faq-question:hover {
    color: #7b2d8b;
}

.faq-answer {
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
}

/* ===== FOOTER ===== */
.footer {
    background: #0f1729;
    padding: 50px 40px 0;
    color: #ffffff;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 14px;
    filter: brightness(0) invert(1);
}

.footer-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-item a:hover {
    color: #4fc3f7;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    fill: #4fc3f7;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    text-align: center;
}

.footer-copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .header {
        padding: 14px 24px;
    }

    .hero-content {
        padding: 100px 24px 60px;
    }

    .services {
        padding: 80px 24px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .multicloud {
        padding: 80px 24px;
    }

    .multicloud-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries {
        padding: 80px 24px;
    }

    .industry-item span {
        white-space: normal;
    }

    .pillars {
        padding: 80px 24px;
    }

    .pillars-row {
        flex-wrap: wrap;
    }

    .pillar {
        flex: 0 0 50%;
        border-bottom: 1px solid #f0eaf5;
        padding: 32px 20px;
    }

    .pillar:nth-child(2n) {
        border-right: none;
    }

    .pillar:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .process {
        padding: 80px 24px;
    }

    .process-timeline {
        padding-left: 50px;
    }

    .process-step-marker {
        left: -50px;
        width: 42px;
        height: 42px;
    }

    .why-us {
        padding: 80px 24px;
    }

    .why-us-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-us-left {
        position: static;
    }

    .cta {
        padding: 80px 24px;
    }

    .cta-box {
        padding: 50px 32px;
    }

    .faq {
        padding: 80px 24px;
    }

    .footer {
        padding: 40px 24px 0;
    }

    .footer-top {
        flex-direction: column;
        gap: 24px;
    }

    .footer-contact {
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 12px 20px;
    }

    .logo img {
        height: 36px;
    }

    .hero {
        min-height: 100svh;
    }

    .hero-content {
        padding: 90px 20px 50px;
    }

    .hero h1 {
        margin-bottom: 20px;
    }

    .hero p {
        margin-bottom: 32px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        justify-content: center;
        padding: 14px 28px;
    }

    .hero-particles span:nth-child(1) {
        width: 180px;
        height: 180px;
    }

    .hero-particles span:nth-child(2) {
        width: 120px;
        height: 120px;
    }

    .services {
        padding: 60px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-header {
        margin-bottom: 40px;
    }

    .multicloud {
        padding: 60px 20px;
    }

    .multicloud-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .multicloud-header {
        margin-bottom: 40px;
    }

    .industries {
        padding: 60px 20px;
    }

    .industries-grid {
        gap: 12px;
    }

    .industry-item {
        padding: 12px 20px 12px 14px;
    }

    .pillars {
        padding: 60px 20px;
    }

    .pillars-row {
        flex-direction: column;
    }

    .pillar {
        flex: none;
        border-right: none;
        border-bottom: 1px solid #f0eaf5;
        padding: 28px 16px;
    }

    .pillar:last-child {
        border-bottom: none;
    }

    .process {
        padding: 60px 20px;
    }

    .process-header {
        margin-bottom: 50px;
    }

    .process-timeline {
        padding-left: 44px;
    }

    .process-line {
        left: 18px;
    }

    .process-step-marker {
        left: -44px;
        width: 38px;
        height: 38px;
        border-width: 2px;
    }

    .process-step-marker span {
        font-size: 0.9rem;
    }

    .process-step {
        margin-bottom: 32px;
    }

    .process-step-content {
        padding: 22px 20px;
    }

    .why-us {
        padding: 60px 20px;
    }

    .why-us-item {
        gap: 16px;
        padding: 22px 0;
    }

    .why-us-number {
        font-size: 1.3rem;
        min-width: 32px;
    }

    .cta {
        padding: 60px 20px;
    }

    .cta-box {
        padding: 40px 24px;
        border-radius: 18px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    .faq {
        padding: 60px 20px;
    }

    .faq-question {
        padding: 16px 20px;
        padding-right: 44px;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 20px 16px;
    }

    .footer {
        padding: 36px 20px 0;
    }

    .footer-contact-item {
        font-size: 0.82rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 10px 16px;
    }

    .logo img {
        height: 32px;
    }

    .hero-content {
        padding: 80px 16px 40px;
    }

    .hero-badge {
        font-size: 0.78rem;
        padding: 6px 14px;
        margin-bottom: 20px;
    }

    .btn {
        font-size: 0.9rem;
        padding: 13px 24px;
    }

    .services {
        padding: 50px 16px;
    }

    .service-card {
        padding: 24px 20px;
    }

    .multicloud {
        padding: 50px 16px;
    }

    .cloud-card {
        padding: 24px 20px;
    }

    .industries {
        padding: 50px 16px;
    }

    .industries-grid {
        gap: 10px;
    }

    .industry-item {
        padding: 10px 16px 10px 12px;
        gap: 10px;
    }

    .industry-icon {
        width: 32px;
        height: 32px;
    }

    .industry-icon svg {
        width: 15px;
        height: 15px;
    }

    .industry-item span {
        font-size: 0.85rem;
    }

    .pillars {
        padding: 50px 16px;
    }

    .pillar {
        padding: 24px 12px;
    }

    .pillar-icon-wrap {
        width: 50px;
        height: 50px;
    }

    .process {
        padding: 50px 16px;
    }

    .process-timeline {
        padding-left: 40px;
    }

    .process-line {
        left: 16px;
    }

    .process-step-marker {
        left: -40px;
        width: 34px;
        height: 34px;
    }

    .process-step-marker span {
        font-size: 0.8rem;
    }

    .process-step-content {
        padding: 18px 16px;
    }

    .why-us {
        padding: 50px 16px;
    }

    .why-us-item {
        gap: 12px;
        padding: 18px 0;
    }

    .cta {
        padding: 50px 16px;
    }

    .cta-box {
        padding: 36px 18px;
        border-radius: 14px;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        font-size: 0.9rem;
        padding: 13px 20px;
    }

    .faq {
        padding: 50px 16px;
    }

    .faq-question {
        padding: 14px 16px;
        padding-right: 40px;
        font-size: 0.9rem;
    }

    .faq-answer {
        padding: 0 16px 14px;
    }

    .faq-answer p {
        font-size: 0.88rem;
    }

    .footer {
        padding: 30px 16px 0;
    }

    .footer-contact-item span {
        font-size: 0.8rem;
    }
}


/* ===== ABOUT SECTION ===== */
.about {
    padding: 60px 40px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0288d1, #4fc3f7, #0288d1);
}

.about-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-left {
    position: relative;
}

.about-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #0288d1;
    margin-bottom: 16px;
}

.about-label::before {
    content: '';
    width: 30px;
    height: 2px;
    background: #0288d1;
    border-radius: 2px;
}

.about h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 12px;
}

.about h2 .highlight {
    background: linear-gradient(135deg, #1a237e, #0288d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.about-right {
    position: relative;
}

.about-right p {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: #444;
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-right p:last-child {
    margin-bottom: 0;
}

.about-decoration {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(2, 136, 209, 0.05), rgba(79, 195, 247, 0.08));
    z-index: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .header {
        padding: 14px 24px;
    }

    .hero-content {
        padding: 100px 24px 60px;
    }

    .services {
        padding: 80px 24px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .multicloud {
        padding: 80px 24px;
    }

    .multicloud-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries {
        padding: 80px 24px;
    }

    .industry-item span {
        white-space: normal;
    }

    .pillars {
        padding: 80px 24px;
    }

    .pillars-row {
        flex-wrap: wrap;
    }

    .pillar {
        flex: 0 0 50%;
        border-bottom: 1px solid #f0eaf5;
        padding: 32px 20px;
    }

    .pillar:nth-child(2n) {
        border-right: none;
    }

    .pillar:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .process {
        padding: 80px 24px;
    }

    .process-timeline {
        padding-left: 50px;
    }

    .process-step-marker {
        left: -50px;
        width: 42px;
        height: 42px;
    }

    .why-us {
        padding: 80px 24px;
    }

    .why-us-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-us-left {
        position: static;
    }

    .about {
        padding: 80px 24px;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
