﻿/* ══════════════════════════════════════
   RESET
══════════════════════════════════════ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    overflow-x: hidden;
}

[data-strapi] {
    cursor: default;
    user-select: none;
}

.hidden {
    display: none;
}

/* ══════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════ */
:root {
    --blue: #1a56db;
    --blue-dark: #1341b0;
    --blue-light: #ebf2fc;
    --blue-hover-bg: #eff6ff;
    --orange: #f59e0b;
    --text: #1e293b;
    --text-dark: #0a1f44;
    --muted: #64748b;
    --muted-alt: #5f6b85;
    --muted-light: #4c4c4c;
    --border: #e2e8f0;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --accent-teal: #4fd1c5;

    /* ── IMPROVED SHADOW SYSTEM ── */
    --shadow: 0 8px 40px rgba(0, 0, 0, 0.10);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.07), 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.10), 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-card: 0 4px 24px rgba(26, 86, 219, 0.07), 0 1px 4px rgba(0, 0, 0, 0.04);
    --shadow-card-hover: 0 16px 48px rgba(26, 86, 219, 0.13), 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-icon: 0 8px 24px rgba(26, 86, 219, 0.28);
    --shadow-nav: 0 1px 0 rgba(0, 0, 0, 0.05), 0 4px 16px rgba(0, 0, 0, 0.06);

    --content-max-width: 90%;
    --nav-height: 72px;
    --nav-offset: 75px;

    --radius-sm: 8px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 50px;
    --radius-pill: 50%;

    /* ── TIMING SYSTEM ── */
    --transition-fast: 0.15s;
    --transition-base: 0.22s;
    --transition-slow: 0.35s;

    /* Easings */
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);
    --ease-out-back: cubic-bezier(0.34, 1.3, 0.64, 1);
}

/* ══════════════════════════════════════
   BASE
══════════════════════════════════════ */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text);
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ── FOCUS STATES ── */
:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ══════════════════════════════════════
   SCROLL ANIMATIONS — DIRECTIONAL
══════════════════════════════════════ */
[data-animate] {
    opacity: 0;
    transition: opacity 0.65s var(--ease-out-expo),
        transform 0.65s var(--ease-out-expo);
}

[data-animate].is-visible {
    opacity: 1;
    transform: none !important;
}

[data-animate="fade-up"] {
    transform: translateY(24px);
}

[data-animate="fade-down"] {
    transform: translateY(-24px);
}

[data-animate="fade-left"] {
    transform: translateX(32px);
}

[data-animate="fade-right"] {
    transform: translateX(-32px);
}

[data-animate="scale-up"] {
    transform: scale(0.96);
}

/* Staggered grid children — fade + lift */
[data-stagger]>* {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s var(--ease-out-expo),
        transform 0.55s var(--ease-out-expo);
}

[data-stagger].is-visible>*:nth-child(1) {
    transition-delay: 0.04s;
}

[data-stagger].is-visible>*:nth-child(2) {
    transition-delay: 0.12s;
}

[data-stagger].is-visible>*:nth-child(3) {
    transition-delay: 0.20s;
}

[data-stagger].is-visible>*:nth-child(4) {
    transition-delay: 0.28s;
}

[data-stagger].is-visible>*:nth-child(5) {
    transition-delay: 0.36s;
}

[data-stagger].is-visible>*:nth-child(6) {
    transition-delay: 0.44s;
}

[data-stagger].is-visible>* {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
nav {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 3px solid var(--orange);
    box-shadow: var(--shadow-nav);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: box-shadow var(--transition-base) ease;
}

nav.scrolled {
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06), 0 8px 28px rgba(0, 0, 0, 0.09);
}

.nav-inner {
    width: 100%;
    max-width: var(--c-container);
    margin: 0 auto;
    padding: 0 var(--c-px);
    display: flex;
    align-items: center;
    height: var(--nav-height);
    gap: 8px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
    transition: opacity var(--transition-base) ease,
        transform var(--transition-base) var(--ease-out-back);
}

.logo:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.logo-icon {
    height: 50px;
    width: auto;
}

.nav-links {
    flex: 1;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    cursor: pointer;
    transition: color var(--transition-base) ease,
        background var(--transition-base) ease;
    background: none;
    border: none;
    font-family: inherit;
    min-height: 44px;
    letter-spacing: -0.01em;
}

.nav-link:hover,
.nav-link.active {
    color: var(--blue);
    background: var(--blue-hover-bg);
}

.nav-link--highlight {
    background: var(--blue) !important;
    color: var(--white) !important;
    border-radius: 8px;
    padding: 8px 16px !important;
}

.nav-link--highlight:hover,
.nav-link--highlight.active {
    background: var(--blue-dark) !important;
    color: var(--white) !important;
}

.nav-link .chevron {
    transition: transform var(--transition-base) var(--ease-out-expo);
    flex-shrink: 0;
}

.nav-link.active .chevron {
    transform: rotate(180deg);
}

.btn-login {
    margin-left: auto;
    padding: 10px 24px;
    background: var(--blue);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background var(--transition-base) ease,
        transform var(--transition-base) var(--ease-out-back),
        box-shadow var(--transition-base) ease;
    flex-shrink: 0;
    min-height: 44px;
    letter-spacing: -0.01em;
    box-shadow: 0 2px 8px rgba(26, 86, 219, 0.25);
}

.btn-login:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(26, 86, 219, 0.35);
}

.btn-login:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(26, 86, 219, 0.20);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    transition: background var(--transition-base) ease;
}

.hamburger:hover {
    background: var(--bg-light);
    right: 10px;
    position: fixed;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform var(--transition-base) var(--ease-out-expo),
        opacity var(--transition-fast) ease,
        transform var(--transition-base) ease;
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 16px 24px 24px;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
}

.mobile-menu.open {
    display: flex;
    animation: mobileMenuSlide 0.25s var(--ease-out-expo) forwards;
}

@keyframes mobileMenuSlide {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-links .nav-item {
    width: 100%;
}

.mobile-nav-links .nav-link {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    justify-content: space-between;
    border-radius: var(--radius-sm);
}

.mobile-login-btn {
    margin-left: 0;
    margin-top: 12px;
    width: 100%;
    padding: 14px 28px;
    font-size: 15px;
}

/* ══════════════════════════════════════
   OVERLAY
══════════════════════════════════════ */
.overlay {
    display: none;
    position: fixed;
    inset: var(--nav-offset) 0 0 0;
    background: rgba(15, 23, 42, 0.22);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 900;
}

.overlay.visible {
    display: block;
    animation: overlayFade 0.2s ease forwards;
}

@keyframes overlayFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ══════════════════════════════════════
   DROPDOWN
══════════════════════════════════════ */
#dropdown-wrap {
    display: none;
    position: fixed;
    top: var(--nav-offset);
    left: 0;
    right: 0;
    z-index: 950;
    justify-content: center;
    padding: 0 16px;
    pointer-events: none;
}

#dropdown-wrap.open {
    display: flex;
}

#dropdown {
    width: 100%;
    max-width: 1500px;
    background: var(--white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10), 0 4px 16px rgba(0, 0, 0, 0.06);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    overflow: hidden;
    animation: slideDown 0.22s var(--ease-out-expo);
    pointer-events: all;
    display: flex;
    flex-direction: row;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-top: none;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dd-close {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-pill);
    background: var(--bg-light);
    border: none;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    transition: background var(--transition-base) ease,
        color var(--transition-base) ease,
        transform var(--transition-base) var(--ease-out-back);
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: -5px;
    position: absolute;
    right: 40px;
}

.dd-close:hover {
    background: var(--border);
    color: var(--text);
    transform: scale(1.1) rotate(90deg);
}

#dd-sidebar {
    width: 240px;
    background: var(--bg-light);
    padding: 20px 14px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    border-right: 1px solid var(--border);
}

#dd-sidebar.hidden {
    display: none;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background var(--transition-fast) ease,
        transform var(--transition-fast) ease;
    border: none;
    background: none;
    text-align: left;
    width: 100%;
    font-family: inherit;
    min-height: 44px;
}

.sidebar-item:hover {
    background: var(--border);
    transform: translateX(2px);
}

.sidebar-item.active {
    background: var(--white);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
}

.sidebar-icon {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-base) ease;
}

.sidebar-item:hover .sidebar-icon,
.sidebar-item.active .sidebar-icon {
    box-shadow: var(--shadow-md);
}

.sidebar-item.active .sidebar-icon {
    background: var(--blue-hover-bg);
}

.sidebar-label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text);
    flex: 1;
}

.sidebar-item.active .sidebar-label {
    color: var(--blue);
}

.sidebar-arrow {
    color: var(--muted);
    font-size: 15px;
    transition: transform var(--transition-base) var(--ease-out-expo);
}

.sidebar-item:hover .sidebar-arrow {
    transform: translateX(2px);
}

.sidebar-item.active .sidebar-arrow {
    color: var(--blue);
}

#dd-flat-left {
    width: 220px;
    flex-shrink: 0;
    background: var(--bg-light);
    border-right: 1px solid var(--border);
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

#dd-flat-left.hidden {
    display: none;
}

.dd-flat-icon {
    width: 56px;
    height: 56px;
    background: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base) var(--ease-out-back),
        box-shadow var(--transition-base) ease;
}

#dd-flat-left:hover .dd-flat-icon {
    transform: scale(1.08) translateY(-2px);
    box-shadow: var(--shadow-lg);
}

#dd-flat-left h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--blue);
    margin-top: 4px;
}

#dd-flat-left p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
}

#dd-content {
    flex: 1;
    padding: 24px 28px;
    overflow-y: auto;
    max-height: 520px;
}

#dd-top-bar {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    min-height: 38px;
}

#dd-panel-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
}

#dd-panel-title.hidden {
    visibility: hidden;
}

#dd-grid {
    display: grid;
    gap: 8px;
}

#dd-grid.cols-1 {
    grid-template-columns: 1fr;
}

#dd-grid.cols-2 {
    grid-template-columns: 1fr 1fr;
}

#dd-grid.cols-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.dd-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--radius-md);
    background: var(--bg-light);
    cursor: pointer;
    text-decoration: none;
    transition: background var(--transition-fast) ease,
        box-shadow var(--transition-fast) ease,
        transform var(--transition-fast) ease,
        border-color var(--transition-fast) ease;
    border: 1px solid transparent;
    min-height: 44px;
}

.dd-item:hover {
    background: var(--blue-hover-bg);
    border-color: #bfdbfe;
    box-shadow: 0 2px 10px rgba(26, 86, 219, 0.09);
    transform: translateY(-1px);
}

.dd-item:active {
    transform: translateY(0);
}

.dd-item-icon {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
    transition: transform var(--transition-base) var(--ease-out-back);
}

.dd-item:hover .dd-item-icon {
    transform: scale(1.1);
}

.dd-item-text h5 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}

.dd-item-text p {
    font-size: 11.5px;
    color: var(--muted);
    margin-top: 2px;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero-section {
    background: linear-gradient(175deg, rgb(159 186 255 / 60%) 0%, rgb(219 232 255 / 30%) 45%, #ffffff 70%);
    overflow: hidden;
    position: relative;
}

.hero {
    position: relative;
    isolation: isolate;
    width: 100%;
    max-width: var(--c-container);
    margin: 0 auto;
    padding: 150px var(--c-px) 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url("../images/elements/Element.png") no-repeat center / contain;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
    transform: scale3d(1.5, 1.5, 1.5) translateX(-50px) translateY(135px);
}

.hero>* {
    position: relative;
    z-index: 1;
}

.hero-content {
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: heroEnter 0.85s var(--ease-out-expo) 0.1s forwards;
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(16px) scale(0.98);
    animation: heroEnterRight 0.9s var(--ease-out-expo) 0.25s forwards;
}

@keyframes heroEnter {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroEnterRight {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-title {
    font-size: clamp(30px, 4.5vw, 36px);
    font-weight: 800;
    color: var(--blue);
    line-height: 1.12;
    margin-bottom: 16px;
    letter-spacing: -0.025em;
}

.hero-sub {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--text-dark);
}

.hero-desc {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-price-container {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 25px;
    flex-wrap: wrap;
    flex-direction: column;
}

.hero-price-block {
    flex-shrink: 0;
}

.hero-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--blue);
    display: flex;
    align-items: baseline;
    gap: 4px;
    letter-spacing: -0.03em;
}

.price-unit {
    font-size: 15px;
    font-weight: 500;
    color: var(--muted);
}

.price-note {
    font-size: 11.5px;
    color: var(--muted);
    margin-top: 4px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-right-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: var(--radius-lg);
    filter: drop-shadow(0 16px 40px rgba(26, 86, 219, 0.14));
    animation: heroImageFloat 8s ease-in-out 1s infinite;
}

@keyframes heroImageFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn-outline {
    padding: 11px 22px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    background: var(--white);
    font-family: inherit;
    letter-spacing: -0.01em;
    transition: border-color var(--transition-base) ease,
        color var(--transition-base) ease,
        background var(--transition-base) ease,
        transform var(--transition-fast) ease,
        box-shadow var(--transition-base) ease;
    min-height: 44px;
}

.btn-outline:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--blue-hover-bg);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 86, 219, 0.12);
}

.btn-outline:active {
    transform: translateY(0);
    box-shadow: none;
}

.btn-primary {
    padding: 11px 22px;
    background: var(--blue);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: -0.01em;
    transition: background var(--transition-base) ease,
        transform var(--transition-fast) ease,
        box-shadow var(--transition-base) ease;
    min-height: 44px;
    box-shadow: 0 2px 10px rgba(26, 86, 219, 0.30);
}

.btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 86, 219, 0.40);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(26, 86, 219, 0.20);
}

/* ══════════════════════════════════════
   SECTIONS
══════════════════════════════════════ */
.section {
    padding: 60px 0 60px;
}

.section .container {
    width: 100%;
    max-width: var(--c-container);
    margin: 0 auto;
    padding: 0 var(--c-px);
    text-align: center;
}

.section .title {
    font-size: clamp(24px, 3vw, 34px);
    margin: 16px 0;
    color: var(--blue);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.section .subtitle {
    max-width: 600px;
    margin: 0 auto 60px;
    color: var(--muted-alt);
    font-size: clamp(15px, 1.5vw, 17px);
    line-height: 1.65;
}

/* ══════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════ */
.why-us {
    display: block;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.why-card {
    position: relative;
    background:
        linear-gradient(var(--white), var(--white)) padding-box,
        linear-gradient(120deg, var(--blue), var(--accent-teal), var(--blue-dark)) border-box;
    border: 2px solid transparent;
    padding: 36px 24px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    background-size: 100% 100%, 200% 200%;
    background-position: 0 0, 0% 50%;
    text-align: left;
    transition: transform var(--transition-base) ease,
        box-shadow var(--transition-base) ease,
        background-position 0.8s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
    background-position: 0 0, 100% 50%;
}

.why-icon {
    position: absolute;
    top: -26px;
    right: -18px;
    width: 54px;
    height: 54px;
    background: #8ABDFB;
    color: var(--white);
    border-radius: var(--radius-lg);
    display: grid;
    place-items: center;
    font-size: 22px;
    box-shadow: var(--shadow-icon);
    z-index: 2;
    transition: transform var(--transition-base) ease,
        box-shadow var(--transition-base) ease;
}

.why-card:hover .why-icon {
    transform: scale(1.12) rotate(-4deg);
    box-shadow: 0 12px 28px rgba(26, 86, 219, 0.38);
}

.why-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.why-card p {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--muted-alt);
}

/* ══════════════════════════════════════
   PAGE LOADER
══════════════════════════════════════ */
#page-loader {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s var(--ease-out-expo);
}

#page-loader.loader-done {
    opacity: 0;
    pointer-events: none;
}

#page-loader.loader-hidden {
    display: none;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.loader-spinner {
    width: 44px;
    height: 44px;
    border: 3px solid var(--border);
    border-top-color: var(--blue);
    border-radius: var(--radius-pill);
    animation: spin 0.75s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loader-text {
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: 0.03em;
}

/* ══════════════════════════════════════
   WHO WE ARE
══════════════════════════════════════ */
.who-we-are {
    overflow: hidden;
}

.who-we-are-inner {
    width: 100%;
    max-width: var(--c-container);
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
}

.who-we-are-image {
    flex: 1;
    max-width: 40%;
    max-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.who-we-are-image img {
    width: 559px;
    /* height: 77%; */
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s var(--ease-out-expo);
}

.who-we-are-image:hover img {
    transform: scale(1.03);
}

.blue-container {
    flex: 1;
    background-color: var(--blue-light);
    text-align: left;
    border-radius: var(--radius-xl) 0 0 var(--radius-xl);
    padding: 52px 80px 52px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 440px;
    /* max-width: 60%; */
}

.who-we-are-paragraph {
    font-size: 1em;
    font-weight: 400;
    margin: 20px 0 24px 0;
    color: var(--muted-light);
    line-height: 1.75;
}

.who-we-are-btns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.feature-cards {
    font-size: 0.93em;
    font-weight: 500;
    padding: 16px 20px;
    border-radius: 12px;
    line-height: 1.4;
    text-align: center;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -0.01em;
}

/* ══════════════════════════════════════
   LESS CLOUD COMPLEX
══════════════════════════════════════ */
.less-cloud-complex {
    padding: 0 0 15px;
}

.less-cloud-inner {
    width: 100%;
    max-width: var(--c-container);
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.blue-container-left {
    flex: 0 0 48%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: left;
    border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
    padding: 52px 48px 52px 80px;
}

.less-cloud-complex-image {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    padding: 40px 24px;
}

.less-cloud-complex-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    transition: transform 0.6s var(--ease-out-expo);
}

.less-cloud-complex-image:hover img {
    transform: scale(1.02) translateY(-4px);
}

.gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgb(0 73 255 / 65%), transparent 77%);
    z-index: 1;
    pointer-events: none;
    filter: blur(60px);
}

/* ══════════════════════════════════════
   PHONE MOCKUP + RIPPLE
══════════════════════════════════════ */

/* Section gets a subtle gradient to separate from adjacent white sections */
#cloud-solutions {
    background: linear-gradient(180deg, #f0f4fb 0%, #f8fafc 100%);
}

.phone-mockup-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 820px;
    width: 90%;
    max-width: 1300px;
    margin: 40px auto 180px;
    padding: 0;
}

/* ── Floating card — polished, left-accent design ── */
.floating-card {
    display: flex;
    position: absolute;
    width: 215px;
    background: #ffffff;
    border: 1.5px solid rgba(26, 86, 219, 0.13);
    border-left: 3px solid #1a56db;
    border-radius: 14px;
    padding: 16px 18px 18px;
    box-shadow:
        0 4px 24px rgba(26, 86, 219, 0.10),
        0 1px 4px rgba(0, 0, 0, 0.04);
    z-index: 5;
    transition: box-shadow 0.28s ease, border-color 0.28s ease;
    animation: cardFloat 5s ease-in-out var(--fc-delay, 0s) infinite;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    flex-direction: column;
    align-items: flex-start;
}

.floating-card:hover {
    box-shadow:
        0 16px 48px rgba(26, 86, 219, 0.20),
        0 4px 12px rgba(0, 0, 0, 0.07);
    border-color: rgba(26, 86, 219, 0.25);
    animation-play-state: paused;
    transform: translateY(-4px);
}

.fc-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.floating-card:hover .fc-icon {
    transform: scale(1.12);
}

.fc-icon svg {
    width: 18px;
    height: 18px;
    stroke: #1a56db;
}

.floating-card h4 {
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 5px;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.floating-card p {
    font-size: 11.5px;
    line-height: 1.55;
    color: #6b7280;
    margin: 0;
}

/* ── Positions: anchored to 50% (phone center) so they scale with wrapper ── */
.fc-left {
    right: auto;
}

.fc-left.fc-top {
    top: 3%;
    right: calc(60% + 130px);
}

.fc-left.fc-mid {
    top: 38%;
    right: calc(70% + 130px);
}

.fc-left.fc-bot {
    top: 71%;
    right: calc(60% + 130px);
}

.fc-right {
    left: auto;
}

.fc-right.fc-top {
    top: 3%;
    left: calc(60% + 130px);
}

.fc-right.fc-mid {
    top: 38%;
    left: calc(70% + 130px);
}

.fc-right.fc-bot {
    top: 71%;
    left: calc(60% + 130px);
}

/* Bottom cards — centred symmetrically around phone */
.fc-btm {
    bottom: -150px;
}

.fc-btm-l {
    right: calc(50% + 12px);
    left: auto;
    bottom: -240px;
}

.fc-btm-r {
    left: calc(50% + 12px);
    right: auto;
    bottom: -240px;
}

/* Remove vestigial connector pseudo-elements */
.fc-right::after,
.fc-btm::after {
    display: none;
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.fc-connector-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
    overflow: visible;
}

.fc-connector-line {
    stroke: rgba(26, 86, 219, 0.12);
    stroke-width: 1;
    stroke-dasharray: 5 4;
    fill: none;
    animation: dashMove 3s linear infinite;
}

@keyframes dashMove {
    to {
        stroke-dashoffset: -36;
    }
}

.ripple-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 520px;
    height: 520px;
    pointer-events: none;
    z-index: 0;
}

.ripple-wrap svg {
    width: 100%;
    height: 100%;
    overflow: visible;
    animation: breathe 7s ease-in-out infinite;
    transform-origin: center;
}

.image-wrapper {
    position: relative;
    z-index: 2;
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 28px 50px rgba(26, 86, 219, 0.20));
    animation: phoneFloat 6s ease-in-out infinite;
}

.image-wrapper img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

@keyframes phoneFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-14px);
    }
}

@keyframes ripple-out {
    0% {
        r: 0;
        opacity: 0.65;
    }

    75% {
        opacity: 0.12;
    }

    100% {
        r: 260;
        opacity: 0;
    }
}

@keyframes breathe {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.04);
        opacity: 0.8;
    }
}

@keyframes center-pulse {

    0%,
    100% {
        r: 5;
        opacity: 1;
    }

    50% {
        r: 7;
        opacity: 0.5;
    }
}

.ripple-ring {
    fill: none;
    stroke: #1a56db;
    stroke-width: 1.2;
    animation: ripple-out var(--duration, 8s) ease-out var(--delay, 0s) infinite;
    transform-origin: center;
}

.ripple-center {
    fill: #1a56db;
    animation: center-pulse 7s ease-in-out infinite;
}

/* ══════════════════════════════════════
   RIPPLE CONTROLS
══════════════════════════════════════ */
.ripple-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.ripple-ctrl-group {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 40px;
    padding: 7px 16px;
    transition: border-color var(--transition-base) ease,
        box-shadow var(--transition-base) ease;
}

.ripple-ctrl-group:hover {
    border-color: #bfdbfe;
    box-shadow: 0 2px 8px rgba(26, 86, 219, 0.08);
}

.ripple-ctrl-group label {
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.ripple-ctrl-group .ctrl-val {
    font-size: 14px;
    font-weight: 700;
    color: var(--blue);
    min-width: 28px;
    text-align: center;
    font-variant-numeric: tabular-nums;
}

.ctrl-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: var(--blue-hover-bg);
    color: var(--blue);
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast) ease,
        transform var(--transition-fast) ease;
    line-height: 1;
    user-select: none;
}

.ctrl-btn:hover {
    background: #bfdbfe;
    transform: scale(1.12);
}

.ctrl-btn:active {
    transform: scale(0.95);
}

/* ══════════════════════════════════════
   INDUSTRY-LEADING EXCELLENCE — SCOPED
══════════════════════════════════════ */
.industry-validated {
    background: #EFEFEF !important;
    padding: 0px 0;
}

.industry-validated .less-cloud-inner {
    /* background: #EFEFEF !important; */
    align-items: center;
    gap: 0;
}

.industry-validated .blue-container-left {
    background: transparent;
    border-radius: 0;
    padding: 48px 48px 48px 80px;
    max-width: 48%;
}

.industry-validated .blue-container-left .title {
    margin-bottom: 0;
}

.industry-validated .who-we-are-paragraph {
    margin-top: 16px;
    margin-bottom: 0;
}

.industry-validated .less-cloud-complex-image {
    flex: 1;
    padding: 40px 80px 40px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.industry-validated .less-cloud-complex-image img {
    width: 100%;
    max-width: 580px;
    height: auto;
    object-fit: contain;
    position: static;
}


/* ── AWS page tweaks (extends cloud-hosting.css) ── */
.eyebrow-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff9900 0%, #ffb347 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET (481–1024px)
══════════════════════════════════════ */
@media (max-width: 1023px) {

    .nav-links,
    .desktop-login-btn {
        display: none;
    }

    .hamburger {
        display: flex;
        right: 10px;
        position: fixed;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 140px var(--c-px) 60px;
        text-align: center;
    }

    .hero::before {
        opacity: 0.4;
    }

    .hero-content {
        position: relative;
        align-items: center;
        justify-content: center;
        display: flex;
        flex-direction: column;
    }

    .hero-price-container {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .hero-right {
        display: none;
    }

    .hero-btns {
        justify-content: center;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-icon {
        right: 10px;
    }

    .who-we-are-inner {
        flex-direction: column;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .who-we-are-image {
        flex: 1;
        max-width: 60%;
        min-height: 291px;
    }

    .blue-container {
        width: 100%;
        border-radius: 0;
        padding: 40px 32px;
    }

    .who-we-are-btns {
        grid-template-columns: 1fr 1fr;
    }

    .less-cloud-inner {
        flex-direction: column;
    }

    .blue-container-left {
        flex: none;
        width: 100%;
        border-radius: 0;
        padding: 40px 32px;
    }

    .less-cloud-complex-image {
        width: 100%;
        padding: 24px;
    }

    #dropdown {
        flex-direction: column;
    }

    #dd-sidebar {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 12px;
        gap: 6px;
    }

    .sidebar-item {
        width: auto;
        flex: 1 1 calc(50% - 6px);
        padding: 10px 12px;
    }

    .sidebar-arrow {
        display: none;
    }

    #dd-flat-left {
        width: 100%;
        flex-direction: row;
        align-items: center;
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 16px 20px;
        gap: 14px;
    }

    #dd-content {
        max-height: 360px;
        padding: 16px;
    }

    #dd-grid.cols-3,
    #dd-grid.cols-2 {
        grid-template-columns: 1fr 1fr;
    }

    .phone-mockup-wrapper {
        height: 800px;
        margin-bottom: 190px;
        width: 92%;
    }

    .ripple-wrap {
        width: 420px;
        height: 420px;
    }

    .image-wrapper {
        height: 420px;
    }

    .floating-card {
        width: 195px;
        padding: 14px 16px;
    }

    .floating-card p {
        font-size: 11.5px;
    }

    .fc-left.fc-top {
        top: 3%;
        right: calc(50% + 115px);
    }

    .fc-left.fc-mid {
        top: 38%;
        right: calc(50% + 115px);
    }

    .fc-left.fc-bot {
        top: 71%;
        right: calc(50% + 115px);
    }

    .fc-right.fc-top {
        top: 3%;
        left: calc(50% + 115px);
    }

    .fc-right.fc-mid {
        top: 38%;
        left: calc(50% + 115px);
    }

    .fc-right.fc-bot {
        top: 71%;
        left: calc(50% + 115px);
    }

    .fc-btm-l {
        right: calc(50% + 12px);
        left: auto;
        bottom: -258px;
    }

    .fc-btm-r {
        left: calc(50% + 12px);
        right: auto;
        bottom: -260px;
    }

    .phone-mockup-wrapper {
        width: 94%;
        height: 640px;
        margin-bottom: 170px;
    }

    .floating-card {
        width: 175px;
        padding: 13px 14px 14px;
    }

    .floating-card h4 {
        font-size: 12.5px;
    }

    .floating-card p {
        font-size: 11px;
        line-height: 1.5;
    }

    .fc-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 8px;
    }

    .fc-icon svg {
        width: 15px;
        height: 15px;
    }

    /* Hide middle cards — too crowded at this width */
    .fc-left.fc-mid,
    .fc-right.fc-mid {
        display: none;
    }

    .fc-left.fc-top {
        top: 12%;
        right: calc(50% + 105px);
    }

    .fc-left.fc-bot {
        top: 58%;
        right: calc(50% + 105px);
    }

    .fc-right.fc-top {
        top: 12%;
        left: calc(50% + 105px);
    }

    .fc-right.fc-bot {
        top: 58%;
        left: calc(50% + 105px);
    }

    .fc-btm {
        bottom: -140px;
    }

    .fc-btm-l {
        right: calc(50% + 10px);
        left: auto;
    }

    .fc-btm-r {
        left: calc(50% + 10px);
        right: auto;
    }

    .industry-validated .blue-container-left {
        max-width: 100%;
        padding: 40px 32px;
        border-radius: 0;
    }

    .industry-validated .less-cloud-complex-image {
        padding: 24px 32px 40px;
    }
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET SMALL (≤ 768px)
   Switch to grid: phone on top, cards below in 3-column grid
══════════════════════════════════════ */
@media (max-width: 767px) {
    .phone-mockup-wrapper {
        height: auto;
        width: 96%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: stretch;
        gap: 12px;
        padding: 0 8px;
        margin-bottom: 48px;
    }

    /* Phone: full-width row at top */
    .image-wrapper {
        order: -1;
        width: 100%;
        height: 280px;
        position: static;
        animation: none;
        margin-bottom: 4px;
        display: none;
    }

    .ripple-wrap {
        display: none;
    }

    .fc-connector-svg {
        display: none;
    }

    /* All cards: static, in-flow, 3-per-row */
    .floating-card {
        position: static;
        width: calc(33.33% - 8px);
        animation: none;
        transform: none;
        border-radius: 12px;
        padding: 14px 14px 16px;
        min-height: 100px;
        flex: 1 1 calc(33.33% - 8px);
    }

    .floating-card h4 {
        font-size: 12.5px;
    }

    .floating-card p {
        font-size: 11px;
        line-height: 1.5;
    }

    .fc-icon {
        width: 30px;
        height: 30px;
        border-radius: 8px;
        margin-bottom: 8px;
    }

    .fc-icon svg {
        width: 14px;
        height: 14px;
    }

    /* Reset all absolute offsets */
    .fc-btm {
        bottom: auto;
        position: static;
    }

    .fc-btm-l,
    .fc-btm-r {
        left: auto;
        right: auto;
    }

    .floating-card {
        width: calc(50% - 6px);
        flex: 1 1 calc(50% - 6px);
        padding: 12px 12px 14px;
    }

    .floating-card p {
        font-size: 11px;
    }

    .image-wrapper {
        height: 220px;
    }

    .industry-validated {
        padding: 60px 0;
    }

    .industry-validated .blue-container-left {
        padding: 32px 20px;
    }

    .industry-validated .less-cloud-complex-image {
        padding: 16px 20px 32px;
    }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 480px)
══════════════════════════════════════ */
@media (max-width: 479px) {
    :root {
        --nav-height: 64px;
        --nav-offset: 67px;
    }

    .logo-icon {
        height: 40px;
    }

    .hero {
        padding: 130px 16px 60px;
        gap: 24px;
    }

    .hero-price-container {
        align-items: flex-start;
        text-align: left;
    }

    .hero-btns {
        width: 100%;
        flex-direction: column;
    }

    .hero-btns .btn-outline,
    .hero-btns .btn-primary {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        font-size: 15px;
    }

    .section {
        padding: 0 0 20px;
    }

    .section .container {
        padding: 0 clamp(16px, 4vw, 24px);
    }

    .section .subtitle {
        margin-bottom: 40px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .who-we-are-image {
        min-height: 280px;
        max-width: 85%;
    }

    .who-we-are-image img {
        display: block;
        width: 100%;
    }

    .blue-container {
        padding: 32px 16px;
        height: auto;
    }

    .who-we-are-btns {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .feature-cards {
        font-size: 0.9em;
        padding: 14px 16px;
    }

    .blue-container-left {
        padding: 32px 16px;
    }

    .less-cloud-complex-image {
        padding: 16px;
    }

    .sidebar-item {
        flex: 1 1 100%;
    }

    #dd-grid.cols-3,
    #dd-grid.cols-2 {
        grid-template-columns: 1fr;
    }

    #dd-content {
        padding: 12px;
    }

    .mobile-nav-links .nav-link {
        font-size: 16px;
        padding: 14px 16px;
    }

    /* ── Cloud Solutions: mobile layout (inherits grid from 768px) ── */
    .ripple-controls {
        display: none;
    }

    .phone-mockup-wrapper {
        gap: 10px;
        padding: 0 8px;
        margin-bottom: 32px;
        width: 100%;
    }

    /* Hide phone on mobile — cards are the focus */
    .image-wrapper {
        display: none;
    }

    .floating-card {
        width: calc(50% - 5px);
        flex: 1 1 calc(50% - 5px);
        min-height: 90px;
        padding: 12px 12px 14px;
        border-radius: 12px;
    }

    .floating-card h4 {
        font-size: 12px;
    }

    .floating-card p {
        font-size: 11px;
    }

    .fc-icon {
        width: 28px;
        height: 28px;
        border-radius: 8px;
        margin-bottom: 8px;
    }

    .fc-icon svg {
        width: 13px;
        height: 13px;
    }

    .ripple-ctrl-group {
        padding: 6px 12px;
        gap: 8px;
    }
}