/* ============================================================
   Infinite Sparks – Landing Page Styles
   Colors: Navy #0B0F2E | Blue #3B5FE5 | Light #F0F4FF
   Font:   Inter (Google Fonts)
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body.landing-page {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #1A1D3E;
    line-height: 1.6;
    background: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color .2s
}

img {
    max-width: 100%;
    display: block
}

ul {
    list-style: none
}

.landing-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px
}

/* ---------- SECTION LABEL ---------- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #3B5FE5;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background: #3B5FE5;
}

.section-label .diamond {
    width: 8px;
    height: 8px;
    background: #3B5FE5;
    transform: rotate(45deg);
    display: inline-block;
    margin-right: 4px;
}

/* ---------- TOP BAR ---------- */
.top-bar {
    background: #0B0F2E;
    color: rgba(255, 255, 255, .8);
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.top-bar .landing-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px
}

.top-bar-left {
    display: flex;
    gap: 24px;
    align-items: center
}

.top-bar-left a,
.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, .8)
}

.top-bar-left a:hover {
    color: #3B5FE5
}

.top-bar-right {
    display: flex;
    gap: 14px;
    align-items: center
}

.top-bar-right a {
    color: rgba(255, 255, 255, .6);
    font-size: 14px;
    transition: color .2s
}

.top-bar-right a:hover {
    color: #3B5FE5
}

/* ---------- NAVIGATION ---------- */
.main-nav {
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(12px);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .06);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    color: #0B0F2E
}

.nav-logo svg {
    width: 36px;
    height: 36px
}

.nav-logo span {
    color: #3B5FE5
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: #1A1D3E;
    position: relative;
    padding: 4px 0
}

.nav-links a:hover,
.nav-links a.active {
    color: #3B5FE5
}

.nav-links .dropdown {
    position: relative
}

.nav-links .dropdown-toggle::after {
    content: '▾';
    margin-left: 4px;
    font-size: 11px
}

.dropdown-menu-custom {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    padding: 12px 0;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
    z-index: 200;
}

.dropdown:hover .dropdown-menu-custom {
    display: block
}

.dropdown-menu-custom a {
    display: block;
    padding: 8px 20px;
    font-size: 14px;
    color: #1A1D3E
}

.dropdown-menu-custom a:hover {
    background: #F0F4FF;
    color: #3B5FE5
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px
}

.nav-search {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #1A1D3E;
    padding: 4px
}

.nav-hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #1A1D3E
}

.btn-talk {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #3B5FE5;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all .3s;
}

.btn-talk:hover {
    background: #2D4BD6;
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(59, 95, 229, .3)
}

/* ---------- HERO ---------- */
.hero {
    background: linear-gradient(135deg, #0B0F2E 0%, #111640 50%, #0B0F2E 100%);
    padding: 80px 0 60px;
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 95, 229, .08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.hero-subtitle {
    color: #3B5FE5;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-subtitle::before {
    content: '◆';
    font-size: 8px
}

.hero-subtitle::after {
    content: '';
    width: 40px;
    height: 1px;
    background: #3B5FE5
}

.hero h1 {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px
}

.trust-avatars {
    display: flex
}

.trust-avatars span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #3B5FE5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    border: 2px solid #0B0F2E;
    margin-right: -8px;
    color: #fff;
}

.trust-badge {
    display: flex;
    flex-direction: column
}

.trust-badge .stars {
    color: #FFB800;
    font-size: 14px;
    letter-spacing: 2px
}

.trust-badge .label {
    font-size: 13px;
    color: rgba(255, 255, 255, .7);
    font-weight: 600
}

.hero-desc {
    color: rgba(255, 255, 255, .7);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #3B5FE5;
    color: #fff;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all .3s;
}

.btn-primary:hover {
    background: #2D4BD6;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(59, 95, 229, .35)
}

.hero-image {
    position: relative
}

.hero-image img {
    border-radius: 16px;
    width: 100%;
    object-fit: cover;
    max-height: 500px
}

.hero-image .explore-badge {
    position: absolute;
    top: 0;
    left: -40px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .2);
}

.hero-stat {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: rgba(255, 255, 255, .95);
    color: #1A1D3E;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
}

.hero-stat .num {
    font-size: 28px;
    font-weight: 800;
    color: #3B5FE5
}

.hero-stat .lbl {
    font-size: 12px;
    color: #6B7094
}

.hero-stat .trend {
    font-size: 12px;
    color: #22C55E;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px
}

/* ---------- MARQUEE ---------- */
.marquee-section {
    background: #3B5FE5;
    padding: 18px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 60px;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

.marquee-track span {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.marquee-track span::after {
    content: '◆';
    font-size: 8px;
    opacity: .5
}

@keyframes marquee {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* ---------- ABOUT ---------- */
.about {
    padding: 100px 0;
    background: #F0F4FF
}

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

.about-image {
    position: relative
}

.about-image img {
    border-radius: 16px;
    width: 100%;
    object-fit: cover
}

.about-image .client-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, .95);
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
}

.about-image .client-card .num {
    font-size: 32px;
    font-weight: 800;
    color: #3B5FE5
}

.about-image .client-card .lbl {
    font-size: 13px;
    color: #6B7094
}

.about h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: #0B0F2E;
    line-height: 1.15;
    margin-bottom: 24px
}

.about h2 span {
    color: #8890B5
}

.about-desc {
    color: #6B7094;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px
}

.about-desc strong {
    color: #0B0F2E
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 40px;
    margin-bottom: 36px
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #1A1D3E
}

.feature-item .check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(59, 95, 229, .1);
    color: #3B5FE5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.about-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #3B5FE5;
    color: #3B5FE5;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    background: transparent;
    cursor: pointer;
    transition: all .3s;
}

.btn-outline:hover {
    background: #3B5FE5;
    color: #fff
}

.call-info {
    display: flex;
    align-items: center;
    gap: 12px
}

.call-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #3B5FE5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3B5FE5;
    font-size: 18px;
}

.call-text .lbl {
    font-size: 12px;
    color: #6B7094
}

.call-text .num {
    font-size: 15px;
    font-weight: 700;
    color: #0B0F2E
}

/* ---------- SERVICES ---------- */
.services {
    padding: 100px 0;
    background: #fff
}

.services .section-header {
    text-align: left;
    margin-bottom: 48px
}

.services h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: #0B0F2E;
    line-height: 1.15
}

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

.service-card {
    background: #fff;
    border: 1px solid #E4E8F7;
    border-radius: 16px;
    padding: 32px;
    transition: all .4s;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: #3B5FE5;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(59, 95, 229, .12);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(59, 95, 229, .08);
    color: #3B5FE5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0B0F2E;
    margin-bottom: 12px
}

.service-card p {
    color: #6B7094;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px
}

.service-link {
    color: #3B5FE5;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-link:hover {
    gap: 10px
}

/* ---------- TEAM ---------- */
.team {
    padding: 100px 0;
    background: #F0F4FF
}

.team .section-header {
    margin-bottom: 48px
}

.team h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: #0B0F2E;
    line-height: 1.15
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}

.team-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #fff
}

.team-card img {
    width: 100%;
    height: 280px;
    object-fit: cover
}

.team-card .placeholder-avatar {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #3B5FE5 0%, #0B0F2E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    color: rgba(255, 255, 255, .3);
}

.team-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(8px);
    padding: 16px 20px;
}

.team-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0B0F2E;
    margin-bottom: 2px
}

.team-info .role {
    font-size: 13px;
    color: #6B7094
}

/* ---------- SUCCESS / STATS ---------- */
.success {
    padding: 100px 0;
    background: linear-gradient(135deg, #0B0F2E 0%, #111640 100%);
    color: #fff;
}

.success-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.success h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px
}

.success h2 span {
    color: #8890B5
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
}

.stat-card {
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    background: rgba(255, 255, 255, .03);
    transition: all .3s;
}

.stat-card:hover {
    border-color: rgba(59, 95, 229, .4);
    background: rgba(59, 95, 229, .08)
}

.stat-card .stat-num {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    line-height: 1
}

.stat-card .stat-num sup {
    font-size: 20px;
    color: #3B5FE5
}

.stat-card .stat-lbl {
    font-size: 14px;
    color: rgba(255, 255, 255, .6);
    margin-top: 8px
}

.stat-card .stars {
    color: #FFB800;
    font-size: 18px;
    margin-bottom: 8px;
    letter-spacing: 2px
}

/* ---------- PROJECTS ---------- */
.projects {
    padding: 100px 0;
    background: #fff
}

.projects .section-header {
    margin-bottom: 48px
}

.projects h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: #0B0F2E;
    line-height: 1.15
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.project-card {
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1f4e, #0B0F2E);
    position: relative;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: all .4s;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .2)
}

.project-tag {
    font-size: 12px;
    color: #3B5FE5;
    background: rgba(59, 95, 229, .15);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 8px;
    font-weight: 600;
}

.project-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
    padding: 100px 0;
    background: #F0F4FF
}

.testimonials .section-header {
    text-align: center;
    margin-bottom: 48px
}

.testimonials h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: #0B0F2E;
    line-height: 1.15
}

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

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #E4E8F7;
    transition: all .3s;
}

.testimonial-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, .06)
}

.testimonial-card .quote {
    color: #6B7094;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic
}

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

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3B5FE5, #6B8AFF);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.testimonial-name {
    font-size: 15px;
    font-weight: 700;
    color: #0B0F2E
}

.testimonial-role {
    font-size: 13px;
    color: #6B7094
}

.testimonial-stars {
    color: #FFB800;
    font-size: 14px;
    margin-bottom: 12px;
    letter-spacing: 2px
}

/* ---------- INDUSTRIES ---------- */
.industries {
    padding: 100px 0;
    background: #fff
}

.industries .section-header {
    margin-bottom: 48px
}

.industries h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: #0B0F2E;
    line-height: 1.15
}

.industries-desc {
    color: #6B7094;
    font-size: 16px;
    max-width: 600px;
    margin-bottom: 40px
}

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

.industry-card {
    background: #F0F4FF;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all .3s;
    border: 1px solid transparent;
}

.industry-card:hover {
    border-color: #3B5FE5;
    background: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(59, 95, 229, .1)
}

.industry-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 12px;
    background: rgba(59, 95, 229, .1);
    color: #3B5FE5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.industry-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1A1D3E
}

/* ---------- CTA ---------- */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #3B5FE5 0%, #2D4BD6 100%);
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    margin-bottom: 16px
}

.cta-section p {
    font-size: 16px;
    opacity: .85;
    max-width: 500px;
    margin: 0 auto 32px
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #3B5FE5;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all .3s;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .15)
}

/* ---------- BLOG ---------- */
.blog {
    padding: 100px 0;
    background: #F0F4FF
}

.blog .section-header {
    margin-bottom: 48px
}

.blog h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: #0B0F2E;
    line-height: 1.15
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #E4E8F7;
    transition: all .3s;
}

.blog-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, .06);
    transform: translateY(-2px)
}

.blog-thumb {
    height: 200px;
    background: linear-gradient(135deg, #0B0F2E, #1a1f4e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .15);
    font-size: 48px;
}

.blog-body {
    padding: 20px 24px
}

.blog-date {
    font-size: 12px;
    color: #3B5FE5;
    font-weight: 600;
    margin-bottom: 8px
}

.blog-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0B0F2E;
    margin-bottom: 8px;
    line-height: 1.4
}

.blog-card p {
    font-size: 13px;
    color: #6B7094;
    line-height: 1.6;
    margin-bottom: 12px
}

.blog-link {
    font-size: 13px;
    font-weight: 600;
    color: #3B5FE5;
    display: inline-flex;
    align-items: center;
    gap: 4px
}

.blog-link:hover {
    gap: 8px
}

/* ---------- CONTACT ---------- */
.contact {
    padding: 100px 0;
    background: #fff
}

.contact .section-header {
    text-align: center;
    margin-bottom: 48px
}

.contact h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: #0B0F2E;
    line-height: 1.15
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(59, 95, 229, .1);
    color: #3B5FE5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item .text {
    font-size: 15px;
    color: #1A1D3E;
    font-weight: 500
}

.contact-item .lbl {
    font-size: 12px;
    color: #6B7094
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.contact-form input,
.contact-form textarea {
    padding: 14px 18px;
    border: 1px solid #E4E8F7;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #1A1D3E;
    transition: border-color .2s;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #3B5FE5
}

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

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

/* ---------- FOOTER ---------- */
.footer {
    background: #0B0F2E;
    color: rgba(255, 255, 255, .7);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
    gap: 40px;
    padding-bottom: 48px
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 16px;
    margin-bottom: 24px
}

.footer h5 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px
}

.footer-links a {
    display: block;
    padding: 4px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, .6);
    transition: color .2s
}

.footer-links a:hover {
    color: #3B5FE5
}

.newsletter-input {
    display: flex;
    gap: 0;
    margin-top: 12px;
}

.newsletter-input input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, .15);
    background: transparent;
    border-radius: 6px 0 0 6px;
    color: #fff;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    outline: none;
}

.newsletter-input input::placeholder {
    color: rgba(255, 255, 255, .4)
}

.newsletter-input button {
    padding: 12px 20px;
    background: #3B5FE5;
    color: #fff;
    border: none;
    border-radius: 0 6px 6px 0;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background .2s;
}

.newsletter-input button:hover {
    background: #2D4BD6
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .6);
    font-size: 14px;
    transition: all .2s;
}

.social-links a:hover {
    background: #3B5FE5;
    border-color: #3B5FE5;
    color: #fff
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, .5);
    transition: color .2s
}

.footer-bottom-links a:hover {
    color: #3B5FE5
}

/* ---------- SCROLL TO TOP ---------- */
.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #3B5FE5;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    transition: all .3s;
    opacity: 0;
    visibility: hidden;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible
}

.scroll-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(59, 95, 229, .4)
}

/* ---------- RESPONSIVE ---------- */
@media(max-width:1024px) {

    .hero-grid,
    .about-grid,
    .success-grid,
    .contact-grid {
        grid-template-columns: 1fr
    }

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

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

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

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

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

@media(max-width:768px) {
    .nav-links {
        display: none
    }

    .nav-hamburger {
        display: block
    }

    .hero {
        padding: 60px 0 40px
    }

    .hero h1 {
        font-size: 32px
    }

    .services-grid,
    .projects-grid,
    .blog-grid,
    .testimonial-grid {
        grid-template-columns: 1fr
    }

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

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

    .feature-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .top-bar-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px
    }

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

    /* Mobile nav */
    .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px 24px;
        gap: 16px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
    }
}

@media(max-width:480px) {
    .landing-container {
        padding: 0 16px
    }

    .team-grid {
        grid-template-columns: 1fr
    }

    .industries-grid {
        grid-template-columns: 1fr
    }

    .stats-grid {
        grid-template-columns: 1fr
    }

    .about-actions {
        flex-direction: column;
        align-items: flex-start
    }
}

/* ============================================================
   INNER PAGES – Styles for About, Services, Team, Pricing,
   Work Process, Technologies, Industries, Careers, Contact,
   Appointment, and Detail pages.
   ============================================================ */

/* ---------- PAGE BANNER (all inner pages) ---------- */
.page-banner {
    background: linear-gradient(135deg, #0B0F2E 0%, #111640 60%, #0B0F2E 100%);
    padding: 80px 0 60px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(59, 95, 229, .12) 0%, transparent 60%);
    pointer-events: none;
}

.page-banner h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    margin-bottom: 16px;
}

.breadcrumb-trail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, .6);
}

.breadcrumb-trail a {
    color: rgba(255, 255, 255, .7);
}

.breadcrumb-trail a:hover {
    color: #3B5FE5;
}

.breadcrumb-trail i {
    font-size: 10px;
}

/* ---------- SECTION UTILITIES ---------- */
.section-padding {
    padding: 100px 0;
}

.bg-light {
    background: #F0F4FF;
}

.section-header h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: #0B0F2E;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-header h2 span {
    color: #8890B5;
}

.section-subtitle {
    color: #6B7094;
    font-size: 16px;
    max-width: 640px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

/* ---------- VALUES GRID (About) ---------- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    background: #fff;
    border: 1px solid #E4E8F7;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all .4s;
}

.value-card:hover {
    border-color: #3B5FE5;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(59, 95, 229, .12);
}

.value-card .service-icon {
    margin: 0 auto 20px;
}

.value-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0B0F2E;
    margin-bottom: 10px;
}

.value-card p {
    color: #6B7094;
    font-size: 14px;
    line-height: 1.7;
}

/* ---------- WHY CHOOSE US (About + Industry) ---------- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background: #fff;
    border: 1px solid #E4E8F7;
    border-radius: 16px;
    padding: 32px;
    transition: all .4s;
}

.why-card:hover {
    border-color: #3B5FE5;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(59, 95, 229, .12);
}

.why-num {
    font-size: 28px;
    font-weight: 800;
    color: #3B5FE5;
    margin-bottom: 12px;
}

.why-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0B0F2E;
    margin-bottom: 10px;
}

.why-card p {
    color: #6B7094;
    font-size: 14px;
    line-height: 1.7;
}

/* ---------- SERVICES PAGE (larger cards) ---------- */
.service-card-lg {
    padding: 36px;
}

.service-card-lg p {
    margin-bottom: 16px;
}

.service-features-mini {
    list-style: none;
    margin-bottom: 20px;
}

.service-features-mini li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #1A1D3E;
    margin-bottom: 6px;
}

.service-features-mini li i {
    color: #3B5FE5;
    font-size: 14px;
}

/* ---------- PROCESS STEPS (Services page) ---------- */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-step {
    text-align: center;
    padding: 32px 24px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #E4E8F7;
    transition: all .4s;
}

.process-step:hover {
    border-color: #3B5FE5;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(59, 95, 229, .12);
}

.step-num {
    font-size: 36px;
    font-weight: 800;
    color: #3B5FE5;
    margin-bottom: 12px;
}

.process-step h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0B0F2E;
    margin-bottom: 10px;
}

.process-step p {
    color: #6B7094;
    font-size: 14px;
    line-height: 1.7;
}

/* ---------- DETAIL PAGE LAYOUT (Service & Industry detail) ---------- */
.detail-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

.detail-hero-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: rgba(59, 95, 229, .08);
    color: #3B5FE5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 24px;
}

.detail-main h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: #0B0F2E;
    margin-bottom: 16px;
}

.detail-desc {
    color: #6B7094;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 36px;
}

.detail-main h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0B0F2E;
    margin-bottom: 20px;
    margin-top: 12px;
}

.detail-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 36px;
}

.detail-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #1A1D3E;
}

.detail-feature-item i {
    color: #3B5FE5;
    font-size: 16px;
}

.detail-process {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}

.detail-process-step {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #F0F4FF;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #1A1D3E;
}

.step-indicator {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #3B5FE5;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

/* ---------- DETAIL SIDEBAR ---------- */
.sidebar-card {
    background: #fff;
    border: 1px solid #E4E8F7;
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 24px;
}

.sidebar-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0B0F2E;
    margin-bottom: 16px;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #1A1D3E;
    transition: all .2s;
    margin-bottom: 4px;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: #F0F4FF;
    color: #3B5FE5;
}

.sidebar-nav a.active {
    font-weight: 600;
}

.sidebar-nav a i:first-child {
    font-size: 16px;
    color: #3B5FE5;
}

.sidebar-cta {
    background: linear-gradient(135deg, #0B0F2E 0%, #111640 100%);
    border-radius: 16px;
    padding: 28px;
    color: #fff;
}

.sidebar-cta h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.sidebar-cta p {
    font-size: 14px;
    color: rgba(255, 255, 255, .7);
    line-height: 1.6;
    margin-bottom: 16px;
}

.sidebar-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, .8);
    margin-top: 12px;
    justify-content: center;
}

/* ---------- TEAM PAGE (larger cards) ---------- */
.team-grid-lg {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.team-card-lg {
    background: #fff;
    border: 1px solid #E4E8F7;
    border-radius: 16px;
    overflow: hidden;
    transition: all .4s;
}

.team-card-lg:hover {
    border-color: #3B5FE5;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(59, 95, 229, .12);
}

.team-photo img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.team-placeholder {
    width: 100%;
    height: 260px;
    background: linear-gradient(135deg, #3B5FE5, #0B0F2E);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    font-weight: 700;
    color: rgba(255, 255, 255, .2);
}

.team-details {
    padding: 24px;
}

.team-details h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0B0F2E;
    margin-bottom: 4px;
}

.team-role {
    color: #3B5FE5;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.team-details p {
    color: #6B7094;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.team-social {
    display: flex;
    gap: 10px;
}

.team-social a {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #F0F4FF;
    color: #3B5FE5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all .2s;
}

.team-social a:hover {
    background: #3B5FE5;
    color: #fff;
}

/* ---------- WORK PROCESS TIMELINE ---------- */
.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #E4E8F7;
}

.timeline-item {
    display: flex;
    gap: 24px;
    margin-bottom: 36px;
    position: relative;
}

.timeline-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #3B5FE5;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(59, 95, 229, .3);
}

.timeline-content {
    background: #fff;
    border: 1px solid #E4E8F7;
    border-radius: 16px;
    padding: 28px;
    flex: 1;
    transition: all .3s;
}

.timeline-content:hover {
    border-color: #3B5FE5;
    box-shadow: 0 8px 32px rgba(59, 95, 229, .1);
}

.timeline-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0B0F2E;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #6B7094;
    font-size: 14px;
    line-height: 1.7;
}

.step-badge {
    display: inline-block;
    background: rgba(59, 95, 229, .08);
    color: #3B5FE5;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    margin-right: 8px;
}

.timeline-deliverables {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #E4E8F7;
    font-size: 13px;
    color: #6B7094;
}

.timeline-deliverables strong {
    color: #0B0F2E;
}

/* ---------- PRICING CARDS ---------- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.pricing-card {
    background: #fff;
    border: 1px solid #E4E8F7;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all .4s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(59, 95, 229, .12);
}

.pricing-card.featured {
    border-color: #3B5FE5;
    transform: scale(1.05);
    box-shadow: 0 16px 48px rgba(59, 95, 229, .18);
}

.pricing-card.featured:hover {
    transform: scale(1.07);
}

.pricing-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #3B5FE5;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 20px;
    white-space: nowrap;
}

.pricing-badge {
    font-size: 14px;
    font-weight: 600;
    color: #3B5FE5;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.pricing-price {
    font-size: 48px;
    font-weight: 800;
    color: #0B0F2E;
    margin-bottom: 12px;
}

.pricing-price span {
    font-size: 16px;
    font-weight: 500;
    color: #6B7094;
}

.pricing-desc {
    color: #6B7094;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #1A1D3E;
    padding: 8px 0;
    border-bottom: 1px solid #F0F4FF;
}

.pricing-features li i {
    font-size: 14px;
    color: #3B5FE5;
}

.pricing-features li.disabled {
    color: #B0B5CC;
}

.pricing-features li.disabled i {
    color: #D0D4E4;
}

.btn-primary-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #3B5FE5;
    color: #3B5FE5;
    padding: 12px 32px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    background: transparent;
    cursor: pointer;
    transition: all .3s;
}

.btn-primary-outline:hover {
    background: #3B5FE5;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(59, 95, 229, .35);
}

/* ---------- TECHNOLOGY GRID ---------- */
.tech-category {
    margin-bottom: 48px;
}

.tech-category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #E4E8F7;
}

.tech-category-header i {
    font-size: 24px;
    color: #3B5FE5;
}

.tech-category-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0B0F2E;
    margin: 0;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.tech-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid #E4E8F7;
    border-radius: 12px;
    padding: 16px 20px;
    transition: all .3s;
}

.tech-card:hover {
    border-color: #3B5FE5;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 95, 229, .1);
}

.tech-initial {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(59, 95, 229, .08);
    color: #3B5FE5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    flex-shrink: 0;
}

.tech-name {
    font-size: 15px;
    font-weight: 600;
    color: #0B0F2E;
}

.tech-desc {
    font-size: 12px;
    color: #6B7094;
}

/* ---------- INDUSTRIES OVERVIEW GRID ---------- */
.industries-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.industry-detail-card {
    background: #fff;
    border: 1px solid #E4E8F7;
    border-radius: 16px;
    padding: 36px;
    transition: all .4s;
    display: block;
    text-decoration: none;
    color: inherit;
}

.industry-detail-card:hover {
    border-color: #3B5FE5;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(59, 95, 229, .12);
}

.industry-detail-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(59, 95, 229, .08);
    color: #3B5FE5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.industry-detail-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0B0F2E;
    margin-bottom: 10px;
}

.industry-detail-card p {
    color: #6B7094;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.industry-solutions-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.solution-tag {
    background: #F0F4FF;
    color: #3B5FE5;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
}

.industry-why-section {
    margin-top: 36px;
}

/* ---------- CAREERS PAGE ---------- */
.perks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.perk-card {
    background: #fff;
    border: 1px solid #E4E8F7;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all .4s;
}

.perk-card:hover {
    border-color: #3B5FE5;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(59, 95, 229, .12);
}

.perk-card .service-icon {
    margin: 0 auto 16px;
}

.perk-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0B0F2E;
    margin-bottom: 8px;
}

.perk-card p {
    color: #6B7094;
    font-size: 14px;
    line-height: 1.6;
}

.jobs-list {
    max-width: 900px;
    margin: 0 auto;
}

.job-card {
    background: #fff;
    border: 1px solid #E4E8F7;
    border-radius: 16px;
    padding: 28px 32px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 24px;
    transition: all .3s;
}

.job-card:hover {
    border-color: #3B5FE5;
    box-shadow: 0 8px 32px rgba(59, 95, 229, .1);
}

.job-main {
    flex: 1;
}

.job-main h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0B0F2E;
    margin-bottom: 8px;
}

.job-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6B7094;
}

.job-meta span i {
    color: #3B5FE5;
}

.job-main p {
    color: #6B7094;
    font-size: 14px;
    line-height: 1.6;
}

/* ---------- CONTACT PAGE ---------- */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-info-card {
    background: #fff;
    border: 1px solid #E4E8F7;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all .3s;
}

.contact-info-card:hover {
    border-color: #3B5FE5;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(59, 95, 229, .12);
}

.contact-info-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(59, 95, 229, .08);
    color: #3B5FE5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
}

.contact-info-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0B0F2E;
    margin-bottom: 8px;
}

.contact-info-card p {
    color: #6B7094;
    font-size: 14px;
    line-height: 1.7;
}

.contact-info-card a {
    color: #3B5FE5;
}

.form-select-custom {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #E4E8F7;
    font-size: 15px;
    color: #1A1D3E;
    font-family: 'Inter', sans-serif;
    background: #fff;
    margin-bottom: 16px;
    appearance: auto;
}

.form-select-custom:focus {
    outline: none;
    border-color: #3B5FE5;
    box-shadow: 0 0 0 3px rgba(59, 95, 229, .1);
}

/* ---------- APPOINTMENT PAGE ---------- */
.appointment-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    align-items: start;
}

.appointment-form-wrap h2 {
    font-size: 28px;
    font-weight: 800;
    color: #0B0F2E;
    margin-bottom: 12px;
}

.appointment-intro {
    color: #6B7094;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.appointment-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.appointment-form .form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #1A1D3E;
}

.appointment-form .form-group input,
.appointment-form .form-group textarea,
.appointment-form .form-group select {
    margin-bottom: 0;
}

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

.appointment-form .form-group {
    margin-bottom: 16px;
}

.appointment-sidebar .sidebar-card {
    margin-bottom: 20px;
}

.office-hours {}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #F0F4FF;
    font-size: 14px;
    color: #1A1D3E;
}

.hours-row span:last-child {
    font-weight: 600;
    color: #3B5FE5;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

.quick-contact-item i {
    font-size: 18px;
    color: #3B5FE5;
}

.quick-contact-item .lbl {
    font-size: 12px;
    color: #6B7094;
}

.quick-contact-item a,
.quick-contact-item span {
    font-size: 14px;
    font-weight: 600;
    color: #0B0F2E;
}

/* ---------- FAQ ACCORDION ---------- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #E4E8F7;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
    transition: border-color .3s;
}

.faq-item:hover,
.faq-item.open {
    border-color: #3B5FE5;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 24px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #0B0F2E;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    text-align: left;
}

.faq-question i {
    color: #3B5FE5;
    transition: transform .3s;
}

.faq-item.open .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 18px;
    color: #6B7094;
    font-size: 14px;
    line-height: 1.7;
}

/* ---------- RESPONSIVE: INNER PAGES ---------- */
@media(max-width:1024px) {
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .detail-sidebar {
        order: -1;
    }

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

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }

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

@media(max-width:768px) {
    .page-banner {
        padding: 60px 0 40px;
    }

    .section-padding {
        padding: 60px 0;
    }

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

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

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

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

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

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

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

    .industries-detail-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-cards-grid {
        grid-template-columns: 1fr;
    }

    .detail-features {
        grid-template-columns: 1fr;
    }

    .job-card {
        flex-direction: column;
        align-items: flex-start;
    }

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

@media(max-width:480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

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

    .process-steps {
        grid-template-columns: 1fr;
    }

    .team-grid-lg {
        grid-template-columns: 1fr;
    }

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

    .process-timeline::before {
        left: 27px;
    }
}

/* ============================================================
   LEGAL PAGES (Terms, Privacy, Refund Policy)
   ============================================================ */
.legal-content {
    max-width: 860px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.8;
    color: #2D3147;
}

.legal-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: #0B0F2E;
    margin: 48px 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #E8ECFF;
}

.legal-content h3 {
    font-size: 17px;
    font-weight: 600;
    color: #1A1D3E;
    margin: 28px 0 10px;
}

.legal-content p {
    margin-bottom: 14px;
}

.legal-content ul,
.legal-content ol {
    list-style: initial;
    padding-left: 28px;
    margin-bottom: 16px;
}

.legal-content ol {
    list-style: decimal;
}

.legal-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-content li ul {
    margin-top: 8px;
    list-style: circle;
}

.legal-content a {
    color: #3B5FE5;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-content a:hover {
    color: #2A4FD4;
}

.legal-intro {
    font-size: 16px;
    line-height: 1.8;
    color: #1A1D3E;
    font-weight: 400;
}

.legal-updated {
    display: inline-block;
    background: #F0F4FF;
    color: #3B5FE5;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 8px;
    margin-bottom: 24px;
    border: 1px solid #D6DFFF;
}

.legal-contact-box {
    background: #F8FAFC;
    border: 1px solid #E5E7EB;
    border-left: 4px solid #3B5FE5;
    border-radius: 0 12px 12px 0;
    padding: 24px 28px;
    margin: 16px 0 24px;
}

.legal-contact-box p {
    margin-bottom: 0;
    line-height: 1.9;
}

/* Legal tables */
.legal-table-wrap {
    overflow-x: auto;
    margin: 16px 0 24px;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.legal-table thead th {
    background: #0B0F2E;
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 16px;
    text-align: left;
}

.legal-table tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid #F0F0F0;
    vertical-align: top;
}

.legal-table tbody tr:nth-child(even) {
    background: #FAFBFC;
}

.legal-table tbody tr:hover {
    background: #F0F4FF;
}

/* Status badges for refund table */
.legal-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.legal-badge-green {
    background: #D1FAE5;
    color: #065F46;
}

.legal-badge-yellow {
    background: #FEF3C7;
    color: #92400E;
}

.legal-badge-red {
    background: #FEE2E2;
    color: #991B1B;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-content {
        font-size: 14px;
    }

    .legal-content h2 {
        font-size: 19px;
        margin: 36px 0 12px;
    }

    .legal-content h3 {
        font-size: 16px;
    }

    .legal-contact-box {
        padding: 16px 18px;
    }

    .legal-table {
        font-size: 13px;
    }
}