:root {
    --ak-ink: #07111f;
    --ak-ink-soft: #112039;
    --ak-panel: #0d1b31;
    --ak-panel-alt: #10223f;
    --ak-aqua: #17c4cf;
    --ak-aqua-deep: #0f7e97;
    --ak-coral: #ff8a3d;
    --ak-sand: #f4efe8;
    --ak-mist: #eaf8f8;
    --ak-paper: #fffdfa;
    --ak-muted: #5f6f81;
    --ak-border: rgba(7, 17, 31, 0.1);
    --ak-shadow: 0 26px 70px rgba(7, 17, 31, 0.14);
    --ak-shadow-soft: 0 14px 34px rgba(7, 17, 31, 0.08);
    --ak-heading: 'Sora', 'Trebuchet MS', sans-serif;
    --ak-body: 'Manrope', 'Segoe UI', sans-serif;
}

html {
    background: var(--ak-ink);
}

body.landing-page {
    font-family: var(--ak-body);
    background:
        radial-gradient(circle at top left, rgba(23, 196, 207, 0.08), transparent 28%),
        linear-gradient(180deg, #f8f6f1 0%, #fffdfa 38%, #f6fbfb 100%);
    color: var(--ak-ink);
}

body.landing-page h1,
body.landing-page h2,
body.landing-page h3,
body.landing-page h4,
body.landing-page h5,
body.landing-page h6,
body.landing-page .nav-links a,
body.landing-page .btn-primary,
body.landing-page .btn-outline,
body.landing-page .btn-talk,
body.landing-page .btn-white {
    font-family: var(--ak-heading);
}

.landing-container {
    max-width: 1280px;
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
}

.top-bar {
    display: none;
}

.top-bar-shell {
    min-height: 48px;
}

.top-bar-left,
.top-bar-right {
    gap: 18px;
}

.top-bar-left a,
.top-bar-left span,
.top-bar-right span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 600;
}

.top-bar-left a:hover,
.top-bar-right a:hover {
    color: #fff;
}

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 120;
    padding: 0;
    background: #fff;
    border-bottom: 1px solid rgba(7, 17, 31, 0.08);
    box-shadow: 0 2px 16px rgba(7, 17, 31, 0.06);
    backdrop-filter: none;
    transition: box-shadow 0.3s ease;
}

.main-nav.scrolled {
    box-shadow: 0 4px 24px rgba(7, 17, 31, 0.10);
}

.nav-shell {
    position: relative;
    min-height: 68px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    padding: 0 32px;
    background: transparent;
    border: none;
    box-shadow: none;
}

.nav-logo img {
    width: auto;
    height: 48px;
}

.nav-links {
    justify-self: center;
    gap: 28px;
}

.nav-links a {
    color: #1a2340;
    font-size: 14.5px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.nav-links a:hover,
.nav-links a.active {
    color: #0e8f97;
}

.nav-links .dropdown-toggle::after {
    color: #5a6680;
}

.dropdown-menu-custom {
    background: rgba(12, 24, 45, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
    border-radius: 16px;
    padding: 10px 0;
}

.dropdown-menu-custom a {
    color: rgba(255, 255, 255, 0.84);
}

.dropdown-menu-custom a:hover {
    background: rgba(23, 196, 207, 0.12);
    color: #fff;
}

.nav-actions {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 12px;
}

.nav-domain-pill {
    display: none;
}

.btn-talk,
.btn-primary,
.btn-outline,
.btn-white {
    border-radius: 999px;
    min-height: 50px;
    padding: 0 24px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.btn-talk,
.btn-primary {
    background: linear-gradient(135deg, var(--ak-coral), #ff9f4c);
    color: #fff;
    box-shadow: 0 12px 28px rgba(255, 138, 61, 0.24);
}

.btn-talk:hover,
.btn-primary:hover {
    background: linear-gradient(135deg, #ff7b21, #ff9445);
    box-shadow: 0 16px 34px rgba(255, 138, 61, 0.32);
}

.btn-outline {
    border: 1px solid rgba(7, 17, 31, 0.15);
    color: var(--ak-ink);
    background: rgba(255, 255, 255, 0.78);
}

.btn-outline:hover {
    color: #fff;
    border-color: var(--ak-ink);
    background: var(--ak-ink);
}

.btn-white {
    background: #fff;
    color: var(--ak-ink);
}

.btn-white:hover {
    box-shadow: 0 18px 36px rgba(7, 17, 31, 0.16);
}

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

.surface-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(234, 248, 248, 0.72) 100%);
}

.section-label {
    color: var(--ak-aqua-deep);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.section-label::before,
.section-label .diamond {
    background: var(--ak-aqua);
}

.section-label.light,
.section-label.light::before,
.section-label.light .diamond {
    color: #b5ecf1;
    background: #b5ecf1;
}

.section-intro-grid,
.section-header-centered {
    margin-bottom: 44px;
}

.section-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 32px;
    align-items: end;
}

.section-header-centered {
    text-align: center;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.section-header-centered .section-label {
    justify-content: center;
}

.section-heading {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    line-height: 1.25;
    color: var(--ak-ink);
    margin: 0;
    text-wrap: balance;
}

.section-heading.light {
    color: #fff;
}

.section-copy {
    color: var(--ak-muted);
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

.section-copy.light {
    color: rgba(255, 255, 255, 0.78);
}

.page-banner {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(23, 196, 207, 0.18), transparent 26%),
        linear-gradient(135deg, var(--ak-panel) 0%, #0f2745 100%);
    padding: 88px 0 74px;
}

.page-banner::before {
    background: radial-gradient(circle, rgba(255, 138, 61, 0.18) 0%, transparent 64%);
    top: -38%;
    right: -20%;
    width: 44%;
    height: 180%;
}

.page-banner-copy {
    max-width: 760px;
}

.page-banner-copy span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.72);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    font-weight: 800;
}

.page-banner-copy span::before {
    content: '';
    width: 34px;
    height: 1px;
    background: var(--ak-aqua);
}

.page-banner h1 {
    color: #fff;
    max-width: 920px;
    margin-bottom: 18px;
}

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

.hero-akash {
    position: relative;
    overflow: hidden;
    min-height: auto;
    padding: 100px 0 60px;
    display: flex;
    align-items: center;
    background: #f4f7ff;
}

.hero-akash::before {
    display: none;
}

/* hero bottom fade removed */

.hero-grid-ak {
    position: relative;
    display: grid;
    z-index: 3;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-copy .section-label {
    margin-bottom: 20px;
}

.hero-copy .section-heading {
    font-size: clamp(2rem, 3.8vw, 3.4rem);
    line-height: 1.1;
    color: var(--ak-ink);
    margin-bottom: 20px;
}

.hero-akash .hero-desc {
    max-width: 560px;
    color: var(--ak-muted);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.btn-primary-ak,
.btn-ghost-ak {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 54px;
    padding: 0 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-primary-ak {
    background: linear-gradient(135deg, var(--ak-coral), #ff9f4c);
    color: #fff;
    box-shadow: 0 12px 28px rgba(255, 138, 61, 0.24);
}

.btn-primary-ak:hover {
    box-shadow: 0 16px 34px rgba(255, 138, 61, 0.32);
    transform: translateY(-2px);
    color: #fff;
}

.btn-ghost-ak {
    color: var(--ak-ink);
    background: #fff;
    border: 1px solid rgba(7, 17, 31, 0.1);
}

.btn-ghost-ak:hover {
    background: #f8fafc;
    border-color: rgba(7, 17, 31, 0.15);
    color: var(--ak-ink);
}

.hero-trust-row {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(7, 17, 31, 0.08);
}

.hero-trust-item {
    display: flex;
    flex-direction: column;
}

.hero-trust-item strong {
    font-size: 22px;
    font-weight: 800;
    color: var(--ak-ink);
    line-height: 1.2;
}

.hero-trust-item span {
    font-size: 13px;
    color: #5a6680;
    font-weight: 500;
}

.hero-trust-sep {
    width: 1px;
    height: 32px;
    background: rgba(7, 17, 31, 0.08);
}

.hero-img-shell {
    position: relative;
    border-radius: 24px;
    overflow: visible;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(7, 17, 31, 0.12);
    display: block;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.hero-img-badge {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: #fff;
    padding: 18px 24px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(7, 17, 31, 0.1);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 10;
}

.hero-img-badge i {
    font-size: 32px;
    color: var(--ak-aqua);
    line-height: 1;
}

.hero-img-badge div {
    display: flex;
    flex-direction: column;
}

.hero-img-badge strong {
    font-size: 15px;
    color: var(--ak-ink);
    font-weight: 700;
}

.hero-img-badge span {
    font-size: 13px;
    color: var(--ak-muted);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.cta-section {
    padding: 28px 0 110px;
    background: transparent;
    color: #fff;
}

.cta-section .landing-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
        "title action"
        "copy action";
    align-items: center;
    gap: 16px 34px;
    padding: 50px 56px;
    border-radius: 38px;
    background:
        radial-gradient(circle at top right, rgba(255, 138, 61, 0.18), transparent 28%),
        radial-gradient(circle at bottom left, rgba(23, 196, 207, 0.16), transparent 26%),
        linear-gradient(135deg, #0d1b31 0%, #153a66 52%, #102b4d 100%);
    box-shadow: 0 30px 80px rgba(7, 17, 31, 0.22);
    overflow: hidden;
}

.cta-section h2 {
    grid-area: title;
    margin: 0;
    max-width: 14ch;
    color: #fff;
    font-size: clamp(2.2rem, 3.8vw, 4rem);
    line-height: 0.98;
    text-align: left;
    text-wrap: balance;
}

.cta-section p {
    grid-area: copy;
    margin: 0;
    max-width: 620px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 17px;
    line-height: 1.8;
    text-align: left;
}

.cta-section .btn-white {
    grid-area: action;
    justify-self: end;
    min-height: 58px;
    padding: 0 28px;
    background: #fff9f2;
    color: var(--ak-ink);
    box-shadow: 0 20px 42px rgba(7, 17, 31, 0.16);
}

.cta-section .btn-white:hover {
    background: #fff;
    color: var(--ak-ink);
}

.hero-highlight-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    max-width: 640px;
}

.hero-highlight-card {
    padding: 18px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.hero-highlight-card span {
    display: block;
    color: rgba(255, 255, 255, 0.64);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.hero-highlight-card strong {
    display: block;
    color: #fff;
    font-size: 18px;
    line-height: 1.4;
}

.hero-visual-shell {
    position: relative;
    padding: 24px 28px 72px 52px;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0.8;
}

.hero-orb-a {
    width: 120px;
    height: 120px;
    top: -4px;
    right: 18px;
    background: rgba(23, 196, 207, 0.24);
}

.hero-orb-b {
    width: 160px;
    height: 160px;
    bottom: 24px;
    left: 0;
    background: rgba(255, 138, 61, 0.18);
}

.hero-visual-card {
    position: relative;
    overflow: hidden;
    border-radius: 36px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--ak-shadow);
}

.hero-visual-card img {
    width: 100%;
    min-height: 580px;
    object-fit: cover;
}

.hero-stat-panel {
    position: absolute;
    left: 0;
    bottom: 0;
    max-width: 320px;
    padding: 22px 24px;
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--ak-shadow-soft);
}

.hero-stat-kicker {
    color: var(--ak-aqua-deep);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 8px;
}

.hero-stat-value {
    font-family: var(--ak-heading);
    font-size: 24px;
    line-height: 1.2;
    color: var(--ak-ink);
    margin-bottom: 10px;
}

.hero-stat-panel p {
    color: var(--ak-muted);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.hero-mini-stack {
    position: absolute;
    top: 34px;
    right: 0;
    display: grid;
    gap: 12px;
    width: 228px;
}

.hero-mini-card {
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--ak-shadow-soft);
}

.hero-mini-card span {
    display: block;
    color: var(--ak-muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.hero-mini-card strong {
    display: block;
    font-size: 16px;
    line-height: 1.35;
    color: var(--ak-ink);
}

.signal-section {
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.signal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.signal-card {
    padding: 28px 26px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    box-shadow: var(--ak-shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.signal-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(23, 196, 207, 0.14), rgba(255, 138, 61, 0.2));
    color: var(--ak-ink);
    font-size: 22px;
    margin-bottom: 18px;
}

.signal-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.signal-card p {
    color: var(--ak-muted);
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

.service-card-brand,
.delivery-card,
.number-card,
.why-card,
.value-card,
.contact-info-card,
.contact-aside-card,
.process-card-compact,
.process-step {
    border-radius: 26px;
    border: 1px solid var(--ak-border);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--ak-shadow-soft);
}

.services-grid-featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.service-card-brand {
    padding: 30px 28px;
}

.service-card-brand:hover,
.delivery-card:hover,
.industry-card:hover,
.why-card:hover,
.value-card:hover,
.contact-info-card:hover,
.process-card-compact:hover,
.process-step:hover {
    transform: translateY(-4px);
}

.service-card-brand .service-icon,
.value-card .service-icon,
.contact-info-icon,
.industry-icon {
    background: linear-gradient(135deg, rgba(23, 196, 207, 0.12), rgba(255, 138, 61, 0.18));
    color: var(--ak-ink);
    border-radius: 18px;
}

.service-card-brand h3,
.delivery-card h3,
.number-card span,
.why-card h4,
.value-card h3,
.contact-info-card h4,
.contact-aside-card h3,
.process-card-compact h3,
.process-step h4 {
    color: var(--ak-ink);
}

.service-card-brand p,
.delivery-card p,
.number-card p,
.why-card p,
.value-card p,
.contact-info-card p,
.contact-aside-card p,
.process-card-compact p,
.process-step p {
    color: var(--ak-muted);
}

.story-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 44px;
    align-items: center;
}

.story-visual {
    position: relative;
}

.story-frame {
    overflow: hidden;
    border-radius: 34px;
    box-shadow: var(--ak-shadow);
}

.story-frame img {
    width: 100%;
    min-height: 560px;
    object-fit: cover;
}

.story-floating-card {
    position: absolute;
    right: 26px;
    bottom: 22px;
    max-width: 290px;
    padding: 18px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--ak-shadow-soft);
}

.story-floating-card span {
    display: block;
    margin-bottom: 8px;
    color: var(--ak-aqua-deep);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.story-floating-card strong {
    display: block;
    line-height: 1.45;
    font-size: 17px;
    color: var(--ak-ink);
}

.story-copy .section-heading {
    margin-bottom: 16px;
}

.story-copy .section-copy+.section-copy {
    margin-top: 14px;
}

.story-checklist {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.story-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--ak-ink);
    font-size: 15px;
    line-height: 1.7;
}

.story-check i {
    color: var(--ak-coral);
    font-size: 18px;
    margin-top: 2px;
}

.numbers-section {
    background:
        radial-gradient(circle at top left, rgba(23, 196, 207, 0.18), transparent 24%),
        linear-gradient(135deg, var(--ak-panel) 0%, #0d2749 100%);
    color: #fff;
}

.numbers-header {
    max-width: 760px;
    margin-bottom: 34px;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.number-card {
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.09);
    box-shadow: none;
}

.number-card strong {
    display: block;
    font-family: var(--ak-heading);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1;
    color: #fff;
    margin-bottom: 14px;
}

.number-card span {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.number-card p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.74);
    margin: 0;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.delivery-card {
    padding: 30px 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(244, 239, 232, 0.92) 100%);
}

.delivery-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.delivery-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
}

.process-section {
    background: transparent;
}

.process-compact,
.process-steps-brand {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.process-card-compact,
.process-step {
    padding: 28px 24px;
}

.process-card-compact span,
.process-step .step-num {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(23, 196, 207, 0.12), rgba(255, 138, 61, 0.18));
    color: var(--ak-ink);
    font-size: 15px;
    font-weight: 800;
}

.process-card-compact h3,
.process-step h4 {
    margin-bottom: 10px;
    font-size: 22px;
}

.process-card-compact p,
.process-step p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
}

.industries-grid-brand {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.industry-card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--ak-border);
    border-radius: 24px;
    box-shadow: var(--ak-shadow-soft);
}

.industry-card h4 {
    color: var(--ak-ink);
    font-size: 16px;
    font-weight: 700;
}

.contact-grid-brand {
    gap: 22px;
}

.contact-info-brand {
    padding: 26px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--ak-border);
    box-shadow: var(--ak-shadow-soft);
}

.contact-item-brand {
    padding: 18px 0;
    border-bottom: 1px solid rgba(7, 17, 31, 0.08);
}

.contact-item-brand:last-child {
    border-bottom: 0;
}

.contact-item-brand .lbl {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 800;
    color: var(--ak-aqua-deep);
}

.contact-item-brand .text {
    font-size: 17px;
    font-weight: 700;
}

.contact-form-brand {
    padding: 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--ak-border);
    box-shadow: var(--ak-shadow-soft);
}

.contact-form-brand h3 {
    margin-bottom: 8px;
    font-size: 26px;
    color: var(--ak-ink);
}

.contact-form-brand input,
.contact-form-brand textarea,
.form-select-custom {
    border-radius: 18px;
    border-color: rgba(7, 17, 31, 0.1);
    font-family: var(--ak-body);
    background: #fff;
}

.contact-form-brand input:focus,
.contact-form-brand textarea:focus,
.form-select-custom:focus {
    border-color: var(--ak-aqua);
    box-shadow: 0 0 0 4px rgba(23, 196, 207, 0.08);
}

.form-select-custom {
    padding: 14px 18px;
    font-size: 14px;
    color: var(--ak-ink);
    outline: none;
}

.contact-aside-card {
    padding: 30px 28px;
    background:
        linear-gradient(180deg, rgba(13, 27, 49, 0.98) 0%, rgba(16, 34, 63, 0.98) 100%);
}

.contact-aside-card span {
    display: block;
    margin-bottom: 12px;
    color: #b5ecf1;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.contact-aside-card h3 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 14px;
}

.contact-aside-card p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.8;
}

.contact-aside-card .story-check {
    color: rgba(255, 255, 255, 0.9);
}

.contact-aside-card .story-check i {
    color: #fff;
}

.contact-cards-grid-brand {
    margin-bottom: 28px;
}

.contact-info-card {
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.9);
}

.contact-info-card h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

.contact-info-card p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 6px;
}

.contact-info-card a {
    color: var(--ak-ink);
}

.contact-info-card a:hover {
    color: var(--ak-aqua-deep);
}

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

.value-card,
.why-card {
    padding: 28px 24px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.why-card .why-num {
    color: rgba(23, 196, 207, 0.28);
    font-size: 46px;
    margin-bottom: 16px;
}

.why-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
}

.service-features-mini {
    display: grid;
    gap: 10px;
    margin: 18px 0 22px;
}

.service-features-mini li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ak-ink);
    font-size: 14px;
    font-weight: 600;
}

.service-features-mini i {
    color: var(--ak-coral);
}

.footer {
    background:
        radial-gradient(circle at top left, rgba(23, 196, 207, 0.15), transparent 22%),
        radial-gradient(circle at top right, rgba(255, 138, 61, 0.1), transparent 18%),
        linear-gradient(135deg, #091528 0%, #07111f 100%);
    padding-top: 40px;
}

.footer-lead {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    padding: 34px 38px;
    margin-bottom: 42px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.footer-lead>div {
    max-width: 720px;
}

.footer-logo img {
    height: 54px;
}

.footer-kicker {
    margin-top: 14px;
    color: rgba(181, 236, 241, 0.82);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-lead p {
    max-width: 620px;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.8;
}

.footer-cta {
    justify-self: end;
    white-space: nowrap;
}

.footer-grid-ak {
    display: grid;
    grid-template-columns: 1.05fr 0.9fr 1fr;
    gap: 46px;
    padding: 0 6px 36px;
}

.footer-links h5,
.footer-contact h5 {
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer-links a {
    display: block;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.6;
}

.footer-contact-card {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-contact-card:last-child {
    border-bottom: 0;
}

.footer-contact-card span {
    display: block;
    color: rgba(255, 255, 255, 0.46);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 6px;
}

.footer-contact-card a,
.footer-contact-card p {
    color: rgba(255, 255, 255, 0.84);
    margin: 0;
    line-height: 1.7;
}

.footer-contact-card a:hover,
.footer-links a:hover,
.footer-bottom-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 24px 6px 30px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 13px;
}

.scroll-top {
    background: linear-gradient(135deg, var(--ak-coral), #ff9f4c);
    box-shadow: 0 16px 32px rgba(255, 138, 61, 0.3);
}

.section-tight-top {
    padding-top: 0;
}

.home-minimal {
    position: relative;
    overflow: hidden;
    padding: 92px 0 48px;
    background:
        radial-gradient(circle at 10% 18%, rgba(23, 196, 207, 0.16), transparent 18%),
        radial-gradient(circle at 88% 14%, rgba(255, 138, 61, 0.12), transparent 18%),
        linear-gradient(180deg, rgba(248, 246, 241, 0.94) 0%, rgba(255, 253, 250, 1) 100%);
}

.home-minimal-grid,
.page-hero-grid,
.page-split-shell,
.booking-grid,
.detail-layout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 30px;
    align-items: center;
}

.home-minimal-copy h1 {
    max-width: 760px;
    margin: 14px 0 20px;
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 1.02;
    color: var(--ak-ink);
}

.compact-kpi-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
}

.compact-kpi-card,
.info-item,
.list-card,
.team-member-card,
.timeline-card,
.pricing-card-modern,
.career-role-card,
.soft-panel,
.legal-mini-nav,
.legal-card-modern {
    border-radius: 26px;
    border: 1px solid var(--ak-border);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--ak-shadow-soft);
}

.compact-kpi-card {
    padding: 20px 22px;
}

.compact-kpi-card span {
    display: block;
    margin-bottom: 8px;
    color: var(--ak-aqua-deep);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.compact-kpi-card strong {
    display: block;
    font-size: 17px;
    line-height: 1.5;
    color: var(--ak-ink);
}

.info-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.info-item {
    padding: 26px 24px;
}

.info-item h3 {
    margin-bottom: 10px;
    font-size: 22px;
    color: var(--ak-ink);
}

.info-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: var(--ak-muted);
}

.page-hero-shell {
    position: relative;
    overflow: hidden;
    padding: 130px 0 26px;
    background:
        radial-gradient(circle at top left, rgba(23, 196, 207, 0.12), transparent 22%),
        linear-gradient(180deg, rgba(244, 239, 232, 0.42) 0%, rgba(255, 253, 250, 0.98) 100%);
}

.page-hero-grid {
    align-items: center;
}

.page-hero-shell .breadcrumb-trail,
.page-hero-shell .breadcrumb-trail a {
    color: rgba(7, 17, 31, 0.52);
}

.page-hero-shell .breadcrumb-trail {
    margin-bottom: 24px;
}

.page-hero-shell .breadcrumb-trail a:hover {
    color: var(--ak-ink);
}

.art-frame {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    /* min-height: 100%; */
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--ak-shadow);
}

.art-frame img {
    width: 100%;
    display: block;
    height: auto;
}

.art-frame-dark {
    background:
        radial-gradient(circle at top right, rgba(255, 138, 61, 0.18), transparent 24%),
        linear-gradient(135deg, #0b1630 0%, #10223f 100%);
}

.art-frame-soft {
    background:
        radial-gradient(circle at top left, rgba(23, 196, 207, 0.14), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(234, 248, 248, 0.86) 100%);
}

.page-split-shell {
    align-items: start;
}

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

.list-card-grid-single {
    grid-template-columns: 1fr;
}

.list-card {
    padding: 28px 26px;
}

.list-card h3 {
    margin-bottom: 12px;
    font-size: 22px;
    color: var(--ak-ink);
}

.list-card p {
    margin: 0;
    color: var(--ak-muted);
    font-size: 15px;
    line-height: 1.8;
}

.chip-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-content: flex-start;
}

.chip-cloud span,
.mini-badge-row span,
.solution-tag {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(17, 32, 57, 0.06);
    border: 1px solid rgba(17, 32, 57, 0.08);
    color: var(--ak-ink);
    font-size: 13px;
    font-weight: 700;
}

.mini-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.detail-layout-grid {
    align-items: start;
}

.detail-main-panel,
.detail-side-panel {
    display: grid;
    gap: 20px;
}

.detail-main-panel {
    padding: 32px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--ak-border);
    box-shadow: var(--ak-shadow-soft);
}

.detail-section h3 {
    margin-bottom: 16px;
    font-size: 24px;
    color: var(--ak-ink);
}

.detail-hero-icon {
    width: 74px;
    height: 74px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(23, 196, 207, 0.14), rgba(255, 138, 61, 0.2));
    color: var(--ak-ink);
    font-size: 30px;
}

.detail-features {
    display: grid;
    gap: 12px;
}

.detail-feature-item,
.sidebar-list-item,
.team-focus-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(17, 32, 57, 0.04);
    color: var(--ak-ink);
    font-size: 15px;
    line-height: 1.7;
}

.detail-feature-item i,
.sidebar-list-item i,
.team-focus-item i {
    color: var(--ak-coral);
    font-size: 17px;
    margin-top: 3px;
}

.detail-process-modern {
    display: grid;
    gap: 12px;
}

.detail-process-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(234, 248, 248, 0.62);
    border: 1px solid rgba(23, 196, 207, 0.12);
}

.step-indicator {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    border-radius: 14px;
    background: #fff;
    color: var(--ak-aqua-deep);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.sidebar-card,
.soft-panel {
    padding: 26px 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--ak-border);
    box-shadow: var(--ak-shadow-soft);
}

.sidebar-card h4,
.soft-panel h4 {
    margin-bottom: 12px;
    font-size: 22px;
    color: var(--ak-ink);
}

.sidebar-card p,
.soft-panel p {
    margin-bottom: 0;
    color: var(--ak-muted);
    line-height: 1.8;
}

.sidebar-list,
.sidebar-nav,
.booking-side-stack,
.legal-stack {
    display: grid;
    gap: 14px;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(17, 32, 57, 0.04);
    color: var(--ak-ink);
    font-size: 14px;
    font-weight: 700;
}

.sidebar-nav a.active,
.sidebar-nav a:hover {
    background: rgba(23, 196, 207, 0.12);
    color: var(--ak-ink);
}

.sidebar-cta-brand {
    background:
        linear-gradient(180deg, rgba(13, 27, 49, 0.98) 0%, rgba(16, 34, 63, 0.98) 100%);
}

.sidebar-cta-brand h4,
.sidebar-cta-brand p {
    color: #fff;
}

.sidebar-cta-brand p {
    color: rgba(255, 255, 255, 0.76);
}

.industries-detail-grid,
.industries-detail-grid-brand,
.tech-category-grid,
.team-roster,
.timeline-modern,
.pricing-stack,
.career-role-grid {
    display: grid;
    gap: 22px;
}

.industries-detail-grid-brand,
.tech-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.industry-detail-card {
    display: block;
    padding: 28px 26px;
    border-radius: 26px;
    border: 1px solid var(--ak-border);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--ak-shadow-soft);
}

.industry-detail-card:hover {
    transform: translateY(-4px);
}

.industry-detail-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(23, 196, 207, 0.12), rgba(255, 138, 61, 0.18));
    color: var(--ak-ink);
    font-size: 24px;
}

.industry-detail-card h3 {
    margin-bottom: 12px;
    font-size: 24px;
    color: var(--ak-ink);
}

.industry-detail-card p {
    color: var(--ak-muted);
    line-height: 1.8;
}

.industry-solutions-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
    margin-bottom: 18px;
}

.tech-category,
.team-member-card,
.timeline-card,
.career-role-card {
    padding: 28px 26px;
}

.tech-category-header,
.team-member-top,
.career-role-top,
.pricing-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.tech-category-header {
    margin-bottom: 20px;
}

.tech-category-header i {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(23, 196, 207, 0.12), rgba(255, 138, 61, 0.18));
    font-size: 22px;
    color: var(--ak-ink);
}

.tech-category-header h3,
.team-meta h3,
.timeline-card h3,
.career-role-card h3 {
    margin: 0;
    font-size: 24px;
    color: var(--ak-ink);
}

.tech-grid {
    display: grid;
    gap: 14px;
}

.tech-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(17, 32, 57, 0.04);
}

.tech-initial,
.team-member-mark {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    flex: 0 0 58px;
    background: linear-gradient(135deg, var(--ak-panel), #15365d);
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.tech-name {
    color: var(--ak-ink);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.tech-desc,
.team-meta p,
.timeline-card p,
.career-role-card p,
.pricing-summary,
.form-intro-copy,
.career-mode {
    color: var(--ak-muted);
    line-height: 1.8;
}

.team-roster,
.career-role-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.team-member-top {
    align-items: flex-start;
}

.team-meta p,
.career-role-card p,
.timeline-card p,
.pricing-summary {
    margin-top: 12px;
    margin-bottom: 0;
    font-size: 15px;
}

.team-focus-list {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.timeline-modern {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline-meta,
.pricing-kicker,
.career-mode {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(23, 196, 207, 0.1);
    color: var(--ak-aqua-deep);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.timeline-card h3 {
    margin: 18px 0 12px;
}

.timeline-deliverable-note,
.pricing-timeline {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(7, 17, 31, 0.08);
    color: var(--ak-ink);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.7;
}

.pricing-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-card-modern {
    padding: 30px 28px;
}

.pricing-card-modern.featured {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(234, 248, 248, 0.92) 100%);
    border-color: rgba(23, 196, 207, 0.2);
    transform: translateY(-6px);
}

.pricing-price {
    margin-top: 10px;
    font-family: var(--ak-heading);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 1.1;
    color: var(--ak-ink);
}

.pricing-burst {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 138, 61, 0.14);
    color: #a85011;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pricing-list {
    display: grid;
    gap: 10px;
    margin: 20px 0 26px;
}

.pricing-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--ak-ink);
    font-size: 15px;
    line-height: 1.7;
}

.pricing-list i {
    color: var(--ak-coral);
    margin-top: 3px;
}

.career-role-top {
    margin-bottom: 16px;
}

.career-mode {
    background: rgba(17, 32, 57, 0.05);
    color: var(--ak-ink);
    letter-spacing: 0.06em;
}

.booking-grid {
    align-items: start;
}

.appointment-form-shell {
    padding: 32px;
    border-radius: 30px;
    border: 1px solid var(--ak-border);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--ak-shadow-soft);
}

.appointment-form-shell h2,
.appointment-form-shell h3 {
    margin-bottom: 8px;
    color: var(--ak-ink);
}

.form-intro-copy {
    margin-bottom: 24px;
    font-size: 15px;
}

.legal-hero-note {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    margin-top: 24px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(17, 32, 57, 0.06);
    color: var(--ak-ink);
    font-size: 13px;
    font-weight: 700;
}

.legal-layout {
    display: grid;
    grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.legal-mini-nav {
    position: sticky;
    top: 118px;
    padding: 22px;
}

.legal-mini-nav a {
    display: block;
    padding: 12px 14px;
    border-radius: 16px;
    color: var(--ak-ink);
    font-size: 14px;
    font-weight: 700;
}

.legal-mini-nav a:hover {
    background: rgba(23, 196, 207, 0.12);
}

.legal-card-modern {
    padding: 30px 28px;
}

.legal-card-modern h2 {
    margin-bottom: 14px;
    font-size: 28px;
    color: var(--ak-ink);
}

.legal-card-modern p,
.legal-card-modern li {
    color: var(--ak-muted);
    font-size: 15px;
    line-height: 1.85;
}

.legal-card-modern p:last-child {
    margin-bottom: 0;
}

.legal-card-modern ul,
.legal-card-modern ol {
    margin: 16px 0 0;
    padding-left: 22px;
}

.legal-card-modern li+li {
    margin-top: 8px;
}

.legal-contact-inline {
    display: grid;
    gap: 6px;
    margin-top: 20px;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(17, 32, 57, 0.04);
}

@media (max-width: 1180px) {
    .nav-domain-pill {
        display: none;
    }

    .hero-grid-ak,
    .story-grid,
    .section-intro-grid,
    .contact-grid-brand,
    .contact-page-grid,
    .home-minimal-grid,
    .page-hero-grid,
    .page-split-shell,
    .booking-grid,
    .detail-layout-grid,
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .cta-section .landing-container,
    .footer-lead {
        grid-template-columns: 1fr;
    }

    .cta-section .btn-white {
        justify-self: start;
    }

    .hero-mini-stack {
        position: static;
        width: 100%;
        margin-top: 18px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero-visual-shell {
        padding: 20px 0 0;
    }

    .hero-stat-panel {
        position: static;
        margin-top: 18px;
        max-width: none;
    }

    .signal-grid,
    .numbers-grid,
    .values-grid-brand,
    .process-compact,
    .process-steps-brand,
    .team-roster,
    .career-role-grid,
    .pricing-stack,
    .timeline-modern,
    .compact-kpi-grid,
    .info-strip,
    .industries-detail-grid-brand,
    .tech-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .legal-mini-nav {
        position: static;
    }
}

@media (max-width: 920px) {
    .top-bar-shell {
        justify-content: center;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .nav-shell {
        min-height: 84px;
    }

    .nav-hamburger {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        left: 24px;
        right: 24px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 18px;
        border-radius: 24px;
        background: rgba(12, 24, 45, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 26px 44px rgba(0, 0, 0, 0.24);
    }

    .nav-links.mobile-open {
        display: flex;
    }

    .nav-links .dropdown:hover .dropdown-menu-custom {
        display: none;
    }

    .dropdown-menu-custom {
        position: static;
        display: block;
        min-width: 0;
        margin-top: 8px;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.04);
    }

    .nav-actions .btn-talk {
        display: inline-flex;
        min-height: 44px;
        padding: 0 16px;
        font-size: 13px;
    }

    .hero-akash {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero-visual-card img,
    .story-frame img {
        min-height: 420px;
    }

    .industries-grid-brand,
    .delivery-grid,
    .contact-cards-grid-brand,
    .list-card-grid {
        grid-template-columns: 1fr;
    }

    .footer-lead,
    .footer-grid-ak,
    .footer-bottom {
        grid-template-columns: 1fr;
        display: grid;
    }

    .footer-bottom {
        gap: 14px;
    }
}

@media (max-width: 640px) {
    .section-padding {
        padding: 84px 0;
    }

    .hero-akash {
        min-height: auto;
        padding: 110px 0 50px;
    }

    .hero-highlight-row,
    .hero-mini-stack,
    .signal-grid,
    .numbers-grid,
    .values-grid-brand,
    .process-compact,
    .process-steps-brand,
    .form-row,
    .compact-kpi-grid,
    .info-strip,
    .team-roster,
    .career-role-grid,
    .pricing-stack,
    .timeline-modern,
    .industries-detail-grid-brand,
    .tech-category-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy h1,
    .section-heading,
    .page-banner h1 {
        font-size: clamp(2rem, 9vw, 2.8rem);
    }

    .hero-desc,
    .section-copy,
    .number-card p,
    .signal-card p,
    .process-card-compact p,
    .process-step p {
        font-size: 15px;
    }

    .signal-card,
    .service-card-brand,
    .delivery-card,
    .number-card,
    .value-card,
    .why-card,
    .contact-form-brand,
    .contact-info-brand,
    .contact-info-card,
    .contact-aside-card,
    .process-card-compact,
    .process-step,
    .list-card,
    .team-member-card,
    .timeline-card,
    .pricing-card-modern,
    .career-role-card,
    .soft-panel,
    .appointment-form-shell,
    .legal-card-modern,
    .legal-mini-nav {
        padding: 24px 20px;
    }

    .hero-stat-panel,
    .story-floating-card {
        padding: 18px;
    }

    .page-banner {
        padding: 70px 0 56px;
    }

    .nav-logo img,
    .footer-logo img {
        height: 52px;
    }

    .home-minimal-copy h1 {
        font-size: clamp(2.2rem, 9vw, 3.2rem);
    }

    .cta-section {
        padding-bottom: 84px;
    }

    .cta-section .landing-container {
        padding: 34px 24px;
    }

    .cta-section h2 {
        max-width: none;
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .cta-section p {
        font-size: 15px;
    }
}

/* ===================================================================
   NEW STYLES — Professional IT Services Redesign
   =================================================================== */

/* ---------- Gradient text effect ---------- */
.gradient-text {
    background: linear-gradient(135deg, var(--ak-aqua) 0%, var(--ak-coral) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---------- Light outline button ---------- */
.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    min-height: 50px;
    padding: 0 24px;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--ak-heading);
    letter-spacing: 0.01em;
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

/* ---------- Hero code block ---------- */
.hero-visual-placeholder {
    width: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background:
        radial-gradient(circle at top right, rgba(255, 138, 61, 0.12), transparent 24%),
        linear-gradient(135deg, #0c1829 0%, #132b50 52%, #0d1e3a 100%);
}

.hero-code-block {
    font-family: 'Menlo', 'Monaco', 'Courier New', monospace;
    font-size: 15px;
    line-height: 2.2;
    color: rgba(255, 255, 255, 0.85);
    padding: 32px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    max-width: 440px;
}

.code-keyword {
    color: #c792ea;
}

.code-fn {
    color: #82aaff;
}

.code-string {
    color: #c3e88d;
}

.code-indent {
    padding-left: 24px;
}

/* ---------- Trust strip ---------- */
.trust-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.trust-card {
    padding: 32px 28px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--ak-border);
    box-shadow: var(--ak-shadow);
    transition: all 0.35s ease;
}

.trust-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 64px rgba(7, 17, 31, 0.18);
}

.trust-icon {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(23, 196, 207, 0.14), rgba(255, 138, 61, 0.2));
    color: var(--ak-ink);
    font-size: 24px;
    margin-bottom: 20px;
}

.trust-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--ak-ink);
}

.trust-card p {
    margin: 0;
    color: var(--ak-muted);
    font-size: 15px;
    line-height: 1.8;
}

/* ---------- Services professional grid ---------- */
.services-grid-pro {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.section-action-center {
    text-align: center;
    margin-top: 40px;
}

/* ---------- About visual block ---------- */
.about-visual-block {
    padding: 40px;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    background:
        radial-gradient(circle at top left, rgba(23, 196, 207, 0.18), transparent 24%),
        linear-gradient(135deg, #0c1829 0%, #132b50 52%, #0d1e3a 100%);
    border-radius: 34px;
}

.about-visual-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-visual-badge span {
    font-family: var(--ak-heading);
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--ak-aqua), var(--ak-coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-visual-badge small {
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}

.about-visual-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
    max-width: 380px;
}

.about-mini-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 18px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.about-mini-stat i {
    color: var(--ak-aqua);
    font-size: 22px;
}

.about-mini-stat strong {
    color: #fff;
    font-family: var(--ak-heading);
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.about-mini-stat small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.about-features-list {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ak-ink);
    font-size: 15px;
    font-weight: 600;
}

.about-feature i {
    color: var(--ak-coral);
    font-size: 18px;
}

/* ---------- Process pro cards ---------- */
.process-card-pro {
    text-align: center;
}

.process-num-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.process-num-icon span {
    width: auto;
    height: auto;
    display: inline-block;
    margin-bottom: 0;
    background: none;
    color: var(--ak-aqua);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.process-num-icon i {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(23, 196, 207, 0.14), rgba(255, 138, 61, 0.2));
    color: var(--ak-ink);
    font-size: 22px;
}

/* ---------- Stats counter section ---------- */
.stats-counter-section {
    padding: 80px 0;
    background:
        radial-gradient(circle at top left, rgba(23, 196, 207, 0.18), transparent 24%),
        radial-gradient(circle at bottom right, rgba(255, 138, 61, 0.14), transparent 22%),
        linear-gradient(135deg, var(--ak-panel) 0%, #0d2749 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    text-align: center;
}

.stat-item {
    padding: 28px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-value {
    font-family: var(--ak-heading);
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1;
    color: #fff;
    margin-bottom: 10px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    font-weight: 600;
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.testimonial-card {
    padding: 32px 28px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--ak-border);
    box-shadow: var(--ak-shadow-soft);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 56px rgba(7, 17, 31, 0.14);
}

.testimonial-quote {
    margin-bottom: 18px;
}

.testimonial-quote i {
    font-size: 38px;
    color: var(--ak-aqua);
    opacity: 0.5;
}

.testimonial-card>p {
    color: var(--ak-muted);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 22px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid rgba(7, 17, 31, 0.08);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ak-panel), #15365d);
    color: #fff;
    font-family: var(--ak-heading);
    font-size: 18px;
    font-weight: 800;
}

.testimonial-author strong {
    display: block;
    color: var(--ak-ink);
    font-size: 16px;
    font-weight: 700;
}

.testimonial-author span {
    display: block;
    color: var(--ak-muted);
    font-size: 13px;
    font-weight: 600;
}

/* ---------- Industry card enhancement ---------- */
.industry-card p {
    margin: 8px 0 0;
    color: var(--ak-muted);
    font-size: 13px;
    line-height: 1.6;
}

/* ---------- Footer social ---------- */
.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.76);
    font-size: 17px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--ak-aqua);
    border-color: var(--ak-aqua);
    color: #fff;
}

/* ---------- Scroll-reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Service link style ---------- */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ak-aqua-deep);
    font-size: 14px;
    font-weight: 700;
    transition: gap 0.3s ease;
    text-decoration: none;
}

.service-link:hover {
    gap: 14px;
    color: var(--ak-ink);
}

/* ---------- Responsive additions ---------- */
@media (max-width: 1180px) {
    .services-grid-pro {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trust-strip,
    .stats-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trust-strip {
        margin-top: -30px;
    }
}

@media (max-width: 920px) {

    .trust-strip,
    .stats-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .about-visual-block {
        min-height: auto;
        padding: 32px 24px;
    }
}

@media (max-width: 640px) {
    .services-grid-pro {
        grid-template-columns: 1fr;
    }

    .trust-strip {
        margin-top: -20px;
    }

    .hero-code-block {
        font-size: 12px;
        padding: 20px;
    }

    .hero-visual-placeholder {
        min-height: 300px;
        padding: 24px;
    }
}