/* ============================================
   CYNUX Production - Complete Homepage Styles
   ============================================ */

/* ── RESET & BASE ── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0A1628;
    color: #E2E8F0;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: #FFFFFF;
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── SECTION HEADER HELPERS ── */
.section-header {
    margin-bottom: 40px;
}

.section-header .section-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #4A90D9;
    display: inline-block;
    margin-bottom: 12px;
}

.section-header .section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 38px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.section-header .section-title .blue {
    color: #4A90D9;
}

.section-header .section-desc {
    color: #94A3B8;
    font-size: 17px;
    max-width: 520px;
    margin-top: 12px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .section-header .section-title {
        font-size: 28px;
    }
    .section-header .section-desc {
        font-size: 15px;
    }
}

/* ── NAVIGATION ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.5s ease;
    background: rgba(10, 22, 40, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(74, 144, 217, 0.06);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar .logo img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(74, 144, 217, 0.3);
}

.navbar .logo .brand {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #4A90D9;
    letter-spacing: -0.5px;
    text-shadow: 0 0 30px rgba(74, 144, 217, 0.15);
}

.navbar .logo .brand span {
    color: #FFFFFF;
    font-weight: 400;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #4A90D9;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4A90D9;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links .btn-start {
    padding: 8px 24px;
    background: #4A90D9;
    color: #FFFFFF;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-links .btn-start:hover {
    background: #3A7BC8;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(74, 144, 217, 0.25);
}

.nav-links .btn-start::after {
    display: none;
}

.nav-links .btn-login {
    padding: 8px 20px;
    border: 1px solid rgba(74, 144, 217, 0.2);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-links .btn-login:hover {
    background: rgba(74, 144, 217, 0.1);
    border-color: rgba(74, 144, 217, 0.4);
    color: #4A90D9;
}

.nav-links .btn-login::after {
    display: none;
}

/* ── Hamburger Menu ── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: #FFFFFF;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Mobile Overlay ── */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
}

.mobile-overlay.active {
    display: block;
}

/* ── Mobile Menu ── */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 340px;
    height: 100vh;
    background: #0D1F35;
    padding: 80px 32px 32px;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    border-left: 1px solid rgba(74, 144, 217, 0.08);
    overflow-y: auto;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu .close-btn {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: #94A3B8;
    font-size: 28px;
    cursor: pointer;
    transition: color 0.3s;
}

.mobile-menu .close-btn:hover {
    color: #4A90D9;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu ul a {
    color: #E2E8F0;
    font-size: 20px;
    font-weight: 500;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    display: block;
    transition: color 0.3s;
}

.mobile-menu ul a:hover {
    color: #4A90D9;
}

.mobile-menu .mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
}

.mobile-menu .mobile-buttons a {
    padding: 14px 20px;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    display: block;
    border: none;
    font-size: 16px;
}

.mobile-menu .mobile-buttons .btn-login-mobile {
    border: 1px solid rgba(74, 144, 217, 0.2);
    color: #4A90D9;
}

.mobile-menu .mobile-buttons .btn-start-mobile {
    background: #4A90D9;
    color: #FFFFFF;
}

/* ── Responsive Nav ── */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
}

@media (min-width: 769px) {
    .mobile-menu {
        display: none !important;
    }
    .mobile-overlay {
        display: none !important;
    }
}

/* ── HERO ── */
.hero {
    height: 55vh;
    min-height: 380px;
    max-height: 600px;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 68px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: blur(8px);
    transform: scale(1.02);
}

.hero-bg .slide.active {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
    transition: opacity 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 1.8s ease, transform 1.8s ease;
}

.hero-bg .slide.previous {
    opacity: 0;
    filter: blur(4px);
    transform: scale(1.02);
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 1.2s ease, transform 1.2s ease;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(10, 22, 40, 0.55);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 24px;
    text-align: center;
}

.hero-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.hero-headline .gold {
    color: #D4AF37;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.2);
}

.hero-headline .typewriter-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background: #D4AF37;
    margin-left: 2px;
    vertical-align: text-bottom;
    animation: blink 0.8s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.image-counter {
    position: absolute;
    bottom: 20px;
    right: 28px;
    z-index: 2;
    color: rgba(255, 255, 255, 0.25);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.05em;
    font-family: 'Inter', sans-serif;
}

.image-counter .current {
    color: #D4AF37;
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.2);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: opacity 0.4s;
}

.scroll-indicator:hover {
    opacity: 0.7;
}

.scroll-indicator .arrow {
    font-size: 16px;
    margin-top: 2px;
    animation: bounceDown 2.5s ease-in-out infinite;
    color: #D4AF37;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

@media (min-width: 769px) {
    .hero {
        height: 100vh;
        min-height: 100vh;
        max-height: 100vh;
        margin-top: 0;
    }
    .hero-headline {
        font-size: 72px;
    }
    .image-counter {
        bottom: 32px;
        right: 40px;
    }
    .scroll-indicator {
        bottom: 32px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 0;
        max-height: none;
        aspect-ratio: 16 / 9;
        width: 100%;
        margin-top: 60px;
    }
    .hero-headline {
        font-size: 34px;
    }
    .image-counter {
        bottom: 12px;
        right: 16px;
        font-size: 11px;
    }
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 26px;
    }
    .navbar .logo .brand {
        font-size: 16px;
    }
    .navbar .logo img {
        width: 30px;
        height: 30px;
    }
    .image-counter {
        font-size: 10px;
        bottom: 8px;
        right: 12px;
    }
}

/* ── ABOUT SECTION ── */
.about-section {
    padding: 80px 0 100px;
    background: #0A1628;
    border-top: 1px solid rgba(74, 144, 217, 0.06);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    background: #1A2D48;
    border: 1px solid rgba(74, 144, 217, 0.08);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content .section-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #4A90D9;
    margin-bottom: 12px;
    display: inline-block;
}

.about-content .highlight-text {
    color: #E2E8F0;
    font-size: 18px;
    line-height: 1.8;
    margin-top: 20px;
}

.about-content .highlight-text .highlight-blue {
    color: #4A90D9;
    font-weight: 500;
}

.about-content .highlight-text .highlight-sky {
    color: #87CEEB;
    font-weight: 500;
}

.about-content .cta-wrapper {
    margin-top: 28px;
}

.about-content .btn-explore {
    display: inline-block;
    padding: 16px 44px;
    background: #4A90D9;
    color: #FFFFFF;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.about-content .btn-explore::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.about-content .btn-explore:hover::before {
    left: 100%;
}

.about-content .btn-explore:hover {
    background: #3A7BC8;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(74, 144, 217, 0.3);
}

.about-content .btn-explore:active {
    transform: scale(0.96);
    transition: transform 0.1s ease;
}

@media (max-width: 1024px) {
    .about-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 50px 0 60px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-image {
        aspect-ratio: 4/3;
        max-width: 100%;
    }
    .about-content {
        text-align: center;
    }
    .about-content .highlight-text {
        font-size: 16px;
    }
    .about-content .cta-wrapper {
        display: flex;
        justify-content: center;
    }
    .about-content .btn-explore {
        padding: 14px 36px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .about-content .highlight-text {
        font-size: 14px;
    }
    .about-content .btn-explore {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 14px 24px;
    }
}

/* ── SERVICES - Architectural Hexagons ── */
.services-section {
    padding: 80px 0 120px;
    background: #0A1628;
    border-top: 1px solid rgba(74, 144, 217, 0.06);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 144, 217, 0.15), transparent);
}

.services-header {
    text-align: center;
    margin-bottom: 70px;
}

.services-header .services-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #4A90D9;
    display: inline-block;
    margin-bottom: 12px;
    position: relative;
}

.services-header .services-label::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: #4A90D9;
    border-radius: 2px;
}

.services-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.services-header h3 .blue {
    color: #4A90D9;
}

.services-header p {
    color: #94A3B8;
    font-size: 17px;
    max-width: 520px;
    margin: 14px auto 0;
    line-height: 1.8;
}

.services-hex-grid {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 460px;
    padding: 30px 0;
}

.hex-card {
    position: absolute;
    width: 340px;
    padding: 36px 32px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(74, 144, 217, 0.06);
    border-radius: 18px;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    clip-path: polygon(5% 0%, 95% 0%, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
    border-radius: 16px;
    overflow: hidden;
    will-change: transform;
}

.hex-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(74, 144, 217, 0.04), transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.hex-card:hover::before {
    opacity: 1;
}

.hex-card::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(74, 144, 217, 0), rgba(74, 144, 217, 0.15), rgba(135, 206, 235, 0.1));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.hex-card:hover::after {
    opacity: 1;
    background: linear-gradient(135deg, rgba(74, 144, 217, 0.4), rgba(135, 206, 235, 0.2));
}

.hex-card-1 {
    left: 8%;
    top: 10px;
    z-index: 1;
    transform: translateX(0) rotate(0.5deg);
}

.hex-card-2 {
    left: 30%;
    top: 30px;
    z-index: 2;
    transform: translateX(20px) rotate(-0.3deg);
}

.hex-card-3 {
    left: 52%;
    top: 50px;
    z-index: 3;
    transform: translateX(40px) rotate(0.8deg);
}

.hex-card-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hex-card .hex-icon {
    font-size: 42px;
    margin-bottom: 16px;
    display: inline-block;
    padding: 16px 18px;
    background: rgba(74, 144, 217, 0.04);
    border-radius: 14px;
    border: 1px solid rgba(74, 144, 217, 0.06);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    line-height: 1;
}

.hex-card:hover .hex-icon {
    background: rgba(74, 144, 217, 0.08);
    border-color: rgba(74, 144, 217, 0.15);
    transform: scale(1.05) translateY(-2px);
}

.hex-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.hex-card h4 .accent {
    color: #87CEEB;
    position: relative;
}

.hex-card h4 .accent::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #87CEEB, transparent);
    opacity: 0.3;
    border-radius: 2px;
}

.hex-card p {
    color: #94A3B8;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.hex-card .hex-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #4A90D9;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.4s ease;
    padding: 4px 0;
    border-bottom: 1px solid transparent;
}

.hex-card .hex-link:hover {
    color: #87CEEB;
    gap: 12px;
    border-bottom-color: rgba(135, 206, 235, 0.2);
}

.hex-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(74, 144, 217, 0.15);
    box-shadow: 0 30px 80px rgba(74, 144, 217, 0.06), inset 0 1px 0 rgba(74, 144, 217, 0.05);
    background: rgba(255, 255, 255, 0.025);
}

.hex-card-1:hover {
    z-index: 4;
    transform: translateX(0) translateY(-8px) scale(1.02) rotate(0deg);
}

.hex-card-2:hover {
    z-index: 4;
    transform: translateX(20px) translateY(-8px) scale(1.02) rotate(0deg);
}

.hex-card-3:hover {
    z-index: 4;
    transform: translateX(40px) translateY(-8px) scale(1.02) rotate(0deg);
}

.hex-card .connecting-line {
    position: absolute;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, rgba(74, 144, 217, 0.15), rgba(135, 206, 235, 0.05));
    opacity: 0.3;
    pointer-events: none;
}

.hex-card-1 .connecting-line {
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.hex-card-2 .connecting-line {
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.hex-card .card-number {
    position: absolute;
    top: 12px;
    right: 16px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(74, 144, 217, 0.12);
    letter-spacing: 0.05em;
    transition: color 0.4s ease;
}

.hex-card:hover .card-number {
    color: rgba(74, 144, 217, 0.25);
}

@media (max-width: 1024px) {
    .hex-card {
        width: 290px;
        padding: 30px 24px;
    }
    .hex-card-1 { left: 4%; }
    .hex-card-2 { left: 27%; }
    .hex-card-3 { left: 50%; }
    .hex-card .hex-icon {
        font-size: 34px;
        padding: 12px 14px;
    }
    .hex-card h4 {
        font-size: 19px;
    }
    .services-header h3 {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 50px 0 70px;
    }
    .services-header {
        margin-bottom: 40px;
    }
    .services-header h3 {
        font-size: 28px;
    }
    .services-header p {
        font-size: 15px;
    }
    .services-hex-grid {
        min-height: 580px;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 10px 0;
    }
    .hex-card {
        position: relative;
        width: 88%;
        max-width: 340px;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        margin: -50px auto 0;
        clip-path: polygon(2% 0%, 98% 0%, 100% 50%, 98% 100%, 2% 100%, 0% 50%);
        border-radius: 14px;
        padding: 28px 22px;
    }
    .hex-card:first-child {
        margin-top: 0;
    }
    .hex-card-1 {
        z-index: 3;
    }
    .hex-card-2 {
        z-index: 2;
        margin-top: -60px;
    }
    .hex-card-3 {
        z-index: 1;
        margin-top: -60px;
    }
    .hex-card .hex-icon {
        font-size: 32px;
        padding: 12px;
    }
    .hex-card h4 {
        font-size: 18px;
    }
    .hex-card p {
        font-size: 14px;
    }
    .hex-card .card-number {
        display: none;
    }
    .hex-card .connecting-line {
        display: none;
    }
    .hex-card:hover {
        transform: scale(1.02) !important;
        z-index: 4 !important;
    }
}

@media (max-width: 480px) {
    .services-header h3 {
        font-size: 24px;
    }
    .services-header p {
        font-size: 14px;
    }
    .hex-card {
        width: 92%;
        max-width: 300px;
        padding: 24px 18px;
        margin: -45px auto 0;
    }
    .hex-card:first-child {
        margin-top: 0;
    }
    .hex-card-2 {
        margin-top: -55px;
    }
    .hex-card-3 {
        margin-top: -55px;
    }
    .hex-card .hex-icon {
        font-size: 28px;
        padding: 10px;
    }
    .hex-card h4 {
        font-size: 16px;
    }
    .hex-card p {
        font-size: 13px;
    }
}

/* ── WORK / PORTFOLIO SECTION ── */
.work-section {
    padding: 80px 0 100px;
    background: #0D1F35;
    border-top: 1px solid rgba(74, 144, 217, 0.04);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.work-item {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    background: #1A2D48;
    border: 1px solid rgba(74, 144, 217, 0.04);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
}

.work-item:hover {
    transform: translateY(-6px);
    border-color: rgba(74, 144, 217, 0.12);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.work-item .work-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #1A2D48;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: rgba(74, 144, 217, 0.08);
}

.work-item .work-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(10, 22, 40, 0.9));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.work-item:hover .work-overlay {
    opacity: 1;
}

.work-item .work-overlay h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
}

.work-item .work-overlay p {
    color: #94A3B8;
    font-size: 13px;
    margin-top: 2px;
}

.work-item .work-overlay .work-tag {
    display: inline-block;
    padding: 2px 12px;
    background: rgba(74, 144, 217, 0.15);
    border-radius: 12px;
    font-size: 11px;
    color: #4A90D9;
    margin-top: 6px;
}

.work-cta {
    text-align: center;
    margin-top: 40px;
}

.work-cta .btn-outline {
    padding: 14px 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.4s ease;
    display: inline-block;
}

.work-cta .btn-outline:hover {
    border-color: #4A90D9;
    color: #4A90D9;
    transform: translateY(-3px);
}

@media (max-width: 1024px) {
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .work-section {
        padding: 50px 0 60px;
    }
    .work-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .work-item .work-overlay {
        opacity: 1;
        background: linear-gradient(transparent, rgba(10, 22, 40, 0.8));
    }
}

/* ── PROCESS SECTION ── */
.process-section {
    padding: 80px 0 100px;
    background: #0D1F35;
    border-top: 1px solid rgba(74, 144, 217, 0.04);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.015);
    border-radius: 12px;
    border: 1px solid rgba(74, 144, 217, 0.04);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}

.process-step:hover {
    transform: translateY(-4px);
    border-color: rgba(74, 144, 217, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.process-step .step-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: rgba(74, 144, 217, 0.06);
    line-height: 1;
    letter-spacing: -0.05em;
    margin-bottom: 8px;
}

.process-step .step-icon {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
}

.process-step h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.process-step p {
    color: #94A3B8;
    font-size: 14px;
    line-height: 1.7;
}

.process-step .step-arrow {
    display: block;
    margin: 12px auto 0;
    color: rgba(74, 144, 217, 0.15);
    font-size: 20px;
}

@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 50px 0 60px;
    }
    .process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .process-step {
        padding: 16px;
    }
    .process-step .step-number {
        font-size: 32px;
    }
    .process-step .step-icon {
        font-size: 26px;
    }
    .process-step h4 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* ── TESTIMONIALS SECTION ── */
.testimonials-section {
    padding: 80px 0 100px;
    background: #0A1628;
    border-top: 1px solid rgba(74, 144, 217, 0.04);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.testimonial-card {
    background: #1A2D48;
    border-radius: 12px;
    padding: 28px;
    border: 1px solid rgba(74, 144, 217, 0.04);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(74, 144, 217, 0.08);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-card .testimonial-stars {
    color: #D4AF37;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.testimonial-card blockquote {
    color: #E2E8F0;
    font-size: 15px;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.testimonial-card .testimonial-author .author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #2A3D58;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #94A3B8;
}

.testimonial-card .testimonial-author .author-info .author-name {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
}

.testimonial-card .testimonial-author .author-info .author-role {
    color: #94A3B8;
    font-size: 13px;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 50px 0 60px;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .testimonial-card {
        padding: 20px;
    }
}

/* ── CONTACT SECTION ── */
.contact-section {
    padding: 80px 0 100px;
    background: #0D1F35;
    border-top: 1px solid rgba(74, 144, 217, 0.04);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 40px;
    align-items: start;
}

.contact-form .form-group {
    margin-bottom: 16px;
}

.contact-form .form-group label {
    display: block;
    color: #E2E8F0;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 4px;
}

.contact-form .form-group input,
.contact-form .form-group textarea,
.contact-form .form-group select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(10, 22, 40, 0.6);
    border: 1px solid #2A3D58;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus,
.contact-form .form-group select:focus {
    outline: none;
    border-color: #4A90D9;
    box-shadow: 0 0 0 3px rgba(74, 144, 217, 0.08);
    background: rgba(10, 22, 40, 0.8);
}

.contact-form .form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form .form-group select option {
    background: #1A2D48;
}

.contact-form .btn-submit {
    padding: 14px 40px;
    background: #4A90D9;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
}

.contact-form .btn-submit:hover {
    background: #3A7BC8;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(74, 144, 217, 0.2);
}

.contact-info h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.contact-info .info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-info .info-item .info-icon {
    font-size: 20px;
    color: #4A90D9;
    width: 28px;
}

.contact-info .info-item .info-text {
    color: #94A3B8;
    font-size: 14px;
    line-height: 1.7;
}

.contact-info .info-item .info-text strong {
    color: #E2E8F0;
}

@media (max-width: 1024px) {
    .contact-grid {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 50px 0 60px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .contact-form .btn-submit {
        width: 100%;
        text-align: center;
    }
}

/* ── CTA SECTION ── */
.cta-section {
    padding: 80px 0 100px;
    background: #0A1628;
    border-top: 1px solid rgba(74, 144, 217, 0.04);
    border-bottom: 1px solid rgba(74, 144, 217, 0.04);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(74, 144, 217, 0.02), transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 42px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.cta-content h2 .blue {
    color: #4A90D9;
}

.cta-content p {
    color: #94A3B8;
    font-size: 18px;
    max-width: 540px;
    margin: 16px auto 32px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .cta-primary {
    padding: 16px 48px;
    background: #4A90D9;
    color: #FFFFFF;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.cta-buttons .cta-primary:hover {
    background: #3A7BC8;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(74, 144, 217, 0.3);
}

.cta-buttons .cta-secondary {
    padding: 16px 48px;
    background: transparent;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.4s ease;
    display: inline-block;
}

.cta-buttons .cta-secondary:hover {
    border-color: #4A90D9;
    color: #4A90D9;
    transform: translateY(-3px);
    background: rgba(74, 144, 217, 0.04);
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0 70px;
    }
    .cta-content h2 {
        font-size: 32px;
    }
    .cta-content p {
        font-size: 16px;
        padding: 0 16px;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .cta-buttons .cta-primary,
    .cta-buttons .cta-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cta-content h2 {
        font-size: 26px;
    }
    .cta-content p {
        font-size: 14px;
    }
}

/* ── FOOTER ── */
.footer {
    background: #0A1628;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
}

.footer-brand h3 span {
    color: #D4AF37;
}

.footer-brand p {
    color: #94A3B8;
    font-size: 14px;
    line-height: 1.7;
    margin-top: 8px;
    max-width: 300px;
}

.footer-column h4 {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul a {
    color: #94A3B8;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul a:hover {
    color: #4A90D9;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: #64748B;
    font-size: 13px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    color: #94A3B8;
    font-size: 18px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #4A90D9;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}/* ── FOOTER ── */
.footer {
    background: #0A1628;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(74, 144, 217, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.footer-brand h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
}

.footer-brand h3 span {
    color: #4A90D9;
}

.footer-brand p {
    color: #94A3B8;
    font-size: 14px;
    line-height: 1.8;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(74, 144, 217, 0.06);
    color: #94A3B8;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 144, 217, 0.06);
}

.footer-social a:hover {
    background: rgba(74, 144, 217, 0.12);
    color: #4A90D9;
    transform: translateY(-3px);
    border-color: rgba(74, 144, 217, 0.15);
    box-shadow: 0 8px 25px rgba(74, 144, 217, 0.08);
}

.footer-column h4 {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul a {
    color: #94A3B8;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-column ul a:hover {
    color: #4A90D9;
    padding-left: 4px;
}

.footer-column ul span {
    color: #94A3B8;
    font-size: 14px;
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid rgba(74, 144, 217, 0.06);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: #64748B;
    font-size: 13px;
}

.footer-bottom p:last-child {
    color: #4A90D9;
    font-size: 12px;
    opacity: 0.6;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    .footer-brand .footer-logo {
        justify-content: center;
    }
    .footer-brand p {
        margin: 0 auto;
    }
    .footer-social {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-column ul a:hover {
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 20px;
    }
    .footer-social a {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
/* ── FOOTER UPDATED ── */
.footer {
    background: #0A1628;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(74, 144, 217, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.footer-brand h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
}

.footer-brand h3 span {
    color: #4A90D9;
}

.footer-brand p {
    color: #94A3B8;
    font-size: 14px;
    line-height: 1.8;
    max-width: 320px;
    margin-bottom: 16px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94A3B8;
    font-size: 14px;
}

.footer-contact-info .contact-item .contact-icon {
    color: #4A90D9;
    font-size: 16px;
    width: 24px;
}

.footer-column h4 {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul a {
    color: #94A3B8;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-column ul a:hover {
    color: #4A90D9;
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(74, 144, 217, 0.06);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: #64748B;
    font-size: 13px;
}

.footer-bottom p:last-child {
    color: #94A3B8;
    font-size: 13px;
}

.footer-bottom a {
    color: #4A90D9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #87CEEB;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    .footer-brand .footer-logo {
        justify-content: center;
    }
    .footer-brand p {
        margin: 0 auto;
    }
    .footer-contact-info {
        align-items: center;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 20px;
    }
    .footer-contact-info .contact-item {
        font-size: 13px;
    }
}