:root {
    --radius: 20px;
    --bg: #ffffff;
    --panel: #ffffff;
    --panel-light: #fafafa;
    --text: #0b0b0f;
    --muted: #4b5563;
    --accent: #22c55e;
    --accent-strong: #16a34a;
    --border: rgba(2, 6, 23, 0.08);
    --shadow: 0 20px 50px rgba(2, 6, 23, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}


/* Navbar Styles */
.navbar {
    background-color: #000;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    position: relative;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ccc;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #fff;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Nav Dropdowns */
.nav-item {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 1rem);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    width: 100vw;
    max-width: 2000px;
    background-color: #000;
    padding: 2.5rem 0;
    height: 420px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    height: 320px;
    align-content: center;
}

.product-item {
    text-align: center;
    padding: 1rem;
    transition: transform 0.3s ease;
    text-decoration: none;
    display: block;
    color: inherit;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-item h3 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.4rem;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    font-weight: 500;
}

/* Nested product structure */
.product-main {
    text-align: left;
}

.product-main-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-main-link h3 {
    margin-bottom: 0.8rem;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.product-main-link:hover h3 {
    color: #fff;
}

.product-subitems {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.product-subitem {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease, transform 0.2s ease;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    display: block;
}

.product-subitem:hover {
    color: #fff;
    transform: translateX(5px);
}

.product-subitem span {
    display: inline-block;
}

.product-item p {
    color: #ccc;
    font-size: 0.85rem;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    line-height: 1.4;
}

/* Contact Dropdown */
.contact-dropdown .dropdown-container {
    grid-template-columns: 1fr;
    max-width: 1600px;
    height: 320px;
    align-content: center;
}

.contact-info {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    font-weight: 500;
    text-align: center;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    color: #fff;
    font-size: 1rem;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #ccc;
    font-size: 0.95rem;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    line-height: 1.6;
    margin: 0;
}

.contact-link {
    display: inline-block;
    color: #22c55e;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid #22c55e;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: "Inter", "SF Pro Display", system-ui, sans-serif;
    text-align: center;
}

.contact-link:hover {
    background: #22c55e;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

/* About Dropdown */
.about-dropdown .dropdown-container {
    grid-template-columns: 1fr;
    max-width: 1600px;
    height: 320px;
    align-content: center;
}

.about-dropdown-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-dropdown-content h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    font-weight: 500;
    text-align: center;
}

.about-dropdown-content > p {
    color: #ccc;
    font-size: 1rem;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}

.about-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.about-link {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    padding: 0.75rem 1rem;
    border: 1px solid #333;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease;
}

.about-link:hover {
    background-color: #333;
    border-color: #555;
    transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Swiper Slider Styles */
/* Tech Ecosystem Hero Section */
.tech-ecosystem-hero {
    width: 100%;
    min-height: 800px;
    position: relative;
    overflow: hidden;
    margin: 0;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
}

.tech-ecosystem-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.tech-ecosystem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    width: 100%;
}

.tech-ecosystem-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
}

.tech-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #ffffff;
}

.tech-hero-description {
    font-size: 1.4rem;
    line-height: 1.7;
    color: #cccccc;
    max-width: 90%;
}

.tech-ecosystem-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-ecosystem-diagram {
    width: 100%;
    height: auto;
    max-width: 1400px;
    max-height: 1100px;
    display: block;
    object-fit: contain;
}

/* SVG Animations */
.tech-ecosystem-diagram #core circle,
.tech-ecosystem-diagram #expertise circle,
.tech-ecosystem-diagram #products circle,
.tech-ecosystem-diagram #capabilities circle {
    animation: pulse-glow 3s ease-in-out infinite;
    transform-origin: center;
    cursor: grab;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.tech-ecosystem-diagram #core g,
.tech-ecosystem-diagram #expertise g,
.tech-ecosystem-diagram #products g {
    cursor: grab;
    transition: transform 0.2s ease;
}

.tech-ecosystem-diagram #core g:hover,
.tech-ecosystem-diagram #expertise g:hover,
.tech-ecosystem-diagram #products g:hover {
    transform: scale(1.05);
}

.tech-ecosystem-diagram #core circle:hover,
.tech-ecosystem-diagram #expertise circle:hover,
.tech-ecosystem-diagram #products circle:hover,
.tech-ecosystem-diagram #capabilities circle:hover {
    filter: brightness(1.2);
    transform: scale(1.05);
}

.tech-ecosystem-diagram #core g:active,
.tech-ecosystem-diagram #expertise g:active,
.tech-ecosystem-diagram #products g:active {
    cursor: grabbing;
}

.tech-ecosystem-diagram #core circle {
    animation-delay: 0s;
}

.tech-ecosystem-diagram #ai-node circle {
    animation-delay: 0.5s;
}

.tech-ecosystem-diagram #microservices-node circle {
    animation-delay: 1s;
}

.tech-ecosystem-diagram #enterprise-node circle {
    animation-delay: 1.5s;
}

.tech-ecosystem-diagram #scalable-node circle {
    animation-delay: 2s;
}

.tech-ecosystem-diagram #product-sorbon circle {
    animation-delay: 0.2s;
}

.tech-ecosystem-diagram #product-eticket circle {
    animation-delay: 0.4s;
}

.tech-ecosystem-diagram #product-kassa circle {
    animation-delay: 0.6s;
}

.tech-ecosystem-diagram #product-kpp circle {
    animation-delay: 0.8s;
}

.tech-ecosystem-diagram #product-analytics circle {
    animation-delay: 1s;
}

.tech-ecosystem-diagram #product-catering circle {
    animation-delay: 1.2s;
}

.tech-ecosystem-diagram #product-growybiz circle {
    animation-delay: 1.4s;
}

/* Connection lines animation */
.tech-ecosystem-diagram #core-connections line,
.tech-ecosystem-diagram #product-connections line,
.tech-ecosystem-diagram #capability-connections line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw-line 4s ease-in-out infinite;
}

.tech-ecosystem-diagram #core-connections line {
    animation-delay: 0.5s;
}

.tech-ecosystem-diagram #product-connections line {
    animation-delay: 1s;
}

.tech-ecosystem-diagram #capability-connections line {
    animation-delay: 1.5s;
}

/* Stats badges floating animation */
.tech-ecosystem-diagram #stats g {
    animation: float 4s ease-in-out infinite;
}

.tech-ecosystem-diagram #stats g:nth-child(1) {
    animation-delay: 0s;
}

.tech-ecosystem-diagram #stats g:nth-child(2) {
    animation-delay: 0.5s;
}

.tech-ecosystem-diagram #stats g:nth-child(3) {
    animation-delay: 1s;
}

.tech-ecosystem-diagram #stats g:nth-child(4) {
    animation-delay: 1.5s;
}

.tech-ecosystem-diagram #stats g:nth-child(5) {
    animation-delay: 2s;
}

/* Neural dots subtle pulse */
.tech-ecosystem-diagram #neural-dots circle {
    animation: neural-pulse 3s ease-in-out infinite;
}

.tech-ecosystem-diagram #neural-dots circle:nth-child(1) {
    animation-delay: 0s;
}

.tech-ecosystem-diagram #neural-dots circle:nth-child(2) {
    animation-delay: 0.4s;
}

.tech-ecosystem-diagram #neural-dots circle:nth-child(3) {
    animation-delay: 0.8s;
}

.tech-ecosystem-diagram #neural-dots circle:nth-child(4) {
    animation-delay: 1.2s;
}

.tech-ecosystem-diagram #neural-dots circle:nth-child(5) {
    animation-delay: 1.6s;
}

.tech-ecosystem-diagram #neural-dots circle:nth-child(6) {
    animation-delay: 2s;
}

.tech-ecosystem-diagram #neural-dots circle:nth-child(7) {
    animation-delay: 2.4s;
}

.tech-ecosystem-diagram #neural-dots circle:nth-child(8) {
    animation-delay: 2.8s;
}

/* Core blob breathing effect */
.tech-ecosystem-diagram #core path {
    animation: breathe 4s ease-in-out infinite;
    transform-origin: center;
}

/* Keyframe Animations */
@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

@keyframes draw-line {
    0% {
        stroke-dashoffset: 1000;
    }
    50% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes neural-pulse {
    0%, 100% {
        opacity: 0.2;
        r: 2;
    }
    50% {
        opacity: 0.5;
        r: 3;
    }
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .tech-ecosystem-diagram * {
        animation: none !important;
    }
}

@media (max-width: 1200px) {
    .tech-ecosystem-hero {
        min-height: 700px;
        padding: 5rem 1.5rem;
    }
    
    .tech-ecosystem-grid {
        gap: 4rem;
    }
    
    .tech-hero-title {
        font-size: 3rem;
    }
    
    .tech-hero-description {
        font-size: 1.25rem;
    }
    
    .tech-ecosystem-diagram {
        max-width: 1200px;
        max-height: 950px;
    }
}

@media (max-width: 768px) {
    .tech-ecosystem-hero {
        min-height: auto;
        padding: 4rem 1.5rem;
    }
    
    .tech-ecosystem-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .tech-ecosystem-text {
        text-align: center;
        order: 2;
    }
    
    .tech-ecosystem-content {
        order: 1;
    }
    
    .tech-hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .tech-hero-description {
        font-size: 1.15rem;
        max-width: 100%;
    }
    
    .tech-ecosystem-diagram {
        max-width: 100%;
        max-height: 800px;
    }
}

@media (max-width: 480px) {
    .tech-ecosystem-hero {
        padding: 3rem 1rem;
    }
    
    .tech-hero-title {
        font-size: 2rem;
    }
    
    .tech-hero-description {
        font-size: 1.05rem;
    }
    
    .tech-ecosystem-diagram {
        max-height: 700px;
    }
}

/* Legacy Swiper Styles (kept for compatibility) */
.swiper-container {
    width: 100%;
    height: 800px;
    position: relative;
    overflow: hidden;
    margin: 0;
    background-color: transparent;
}

.swiper-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.swiper-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: transparent;
}

.slide-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    z-index: 2;
    padding: 2rem;
    background: transparent;
    position: relative;
}

.slide-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: -1;
    pointer-events: none;
}

.slide-content h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.slide-content p {
    font-size: 1.4rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
    max-width: 800px;
}

/* .slide-1 background image now handled by slide-bg-image-container */

.slide-bg-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.slide-bg-image-container .slide-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 16/9;
}

/* Image loading states */
img {
    transition: opacity 0.5s ease-in-out;
}

img:not(.loaded) {
    opacity: 0;
    background: linear-gradient(90deg, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%);
    background-size: 200% 100%;
}

img.loaded {
    opacity: 1;
}

img[data-src]:not(.loaded) {
    opacity: 0;
    background: linear-gradient(90deg, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%);
    background-size: 200% 100%;
}

img[data-src].loaded {
    opacity: 1;
    background: none;
}

/* Smooth loading animation - only if motion is preferred */
@media (prefers-reduced-motion: no-preference) {
    img:not(.loaded) {
        animation: loading 1.5s infinite;
    }
    
    img[data-src]:not(.loaded) {
        animation: loading 1.5s infinite;
    }
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.slide-2 {
    /* Background image now handled by slide-bg-image-container */
    background-color: transparent;
    text-align: left;
    justify-content: flex-start;
    align-items: center;
    padding-left: 0;
    padding-right: 2rem;
    padding-top: 8rem;
}

.slide-2 h2 {
    max-width: 600px;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin-left: -30rem;
}

.slide-3 {
    /* Background image now handled by slide-bg-image-container */
    background-color: transparent;
}

.slide-4 {
    background-color: transparent;
}

/* Navigation Arrows */
.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
}

.swiper-button-next {
    right: 20px;
}

.swiper-button-next::after {
    border-width: 10px 0 10px 15px;
    border-color: transparent transparent transparent #fff;
}

.swiper-button-prev {
    left: 20px;
}

.swiper-button-prev::after {
    border-width: 10px 15px 10px 0;
    border-color: transparent #fff transparent transparent;
}

/* Pagination Dots */
.swiper-pagination {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

/* Progress Indicator */
.swiper-progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.swiper-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #22c55e, #38f9d7);
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background-color: #fff;
    width: 30px;
    border-radius: 6px;
}

/* Three Columns Section */
.columns-section {
    padding: 6rem 0;
    background-color: #fff;
}

.columns-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    gap: 3rem;
}

.column {
    display: flex;
    flex-direction: column;
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 1;
    align-self: auto;
    order: 0;
    position: relative;
    box-sizing: border-box;
    padding: 3rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    min-height: 450px;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: rgb(99, 100, 102);
    text-align: left;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    visibility: visible;
    unicode-bidi: isolate;
}

.column:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.column h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

.column p {
    color: rgb(99, 100, 102);
    line-height: 1.8;
    font-size: 1.1rem;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

/* Swiper Cards Section */
.swiper-cards-section {
    padding: 2rem 0;
    background: var(--bg);
    font-family: "Inter", "SF Pro Display", system-ui, sans-serif;
    color: var(--text);
    line-height: 1.7;
    color-scheme: light;
    transition: opacity 600ms ease, transform 700ms ease, filter 700ms ease;
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform, filter;
}

.reveal {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    filter: blur(10px);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.swiper-cards-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    box-sizing: border-box;
}

.swiper-cards-wrapper {
    display: flex;
    gap: 2rem;
    overflow: visible;
    position: relative;
    align-items: stretch;
    justify-content: center;
    padding: 0;
}

.swiper-card {
    flex: 1;
    max-width: 400px;
    min-width: 350px;
    height: 450px;
    background: var(--panel);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, opacity 0.6s ease;
}

.swiper-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.swiper-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

@media (prefers-reduced-motion: reduce) {
    .swiper-card {
        opacity: 1;
        transform: none;
        transition: box-shadow 0.2s ease;
    /* The following block provides reduced motion compatibility for swiper cards */
    @media (prefers-reduced-motion: reduce) {
        .swiper-card {
            opacity: 1;
            transform: none;
            transition: box-shadow 0.2s ease;
        }
        .swiper-card:hover {
            transform: none;
        }
    }
        opacity: 1;
        transform: none;
        transition: box-shadow 0.2s ease;
    }
    
    .swiper-card:hover {
        transform: none;
    }
}

.swiper-card:hover {
    transform: translateY(-8px) scale(0.98);
    box-shadow: 0 8px 30px rgba(2, 6, 23, 0.12);
    opacity: 0.95;
}

/* Removed .swiper-card.active styles - all cards are now static and equal */

.swiper-card-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    flex: 1;
    min-height: 0;
}

.swiper-card.image-only {
    position: relative;
    height: 450px;
}

.swiper-card.image-only .swiper-card-image {
    flex: 1 1 100%;
    height: 100%;
    min-height: 0;
}

.swiper-card.image-only .swiper-card-content {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    padding: 0;
}

.swiper-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Card Image Swiper */
.card-image-swiper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    min-height: 100%;
}

.card-swiper-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.card-swiper-image.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

/* Make first card image smaller */
.swiper-cards-section:first-of-type .swiper-card:first-child .swiper-card-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-cards-section:first-of-type .swiper-card:first-child .swiper-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.swiper-card:hover .swiper-card-image img {
    transform: scale(1.1);
}

/* Elementor-style swiper card */
.swiper-card .swiper-slide-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--radius);
}

.swiper-card .swiper-slide-inner {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

.swiper-card .swiper-slide-contents h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.8rem;
    font-family: "Inter", "SF Pro Display", system-ui, sans-serif;
}

.swiper-card .swiper-slide-contents p {
    color: var(--muted);
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    font-family: "Inter", "SF Pro Display", system-ui, sans-serif;
}

.swiper-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 0;
    overflow: hidden;
}

.swiper-card-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
    font-family: "Inter", "SF Pro Display", system-ui, sans-serif;
}

.swiper-card-content p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    font-family: "Inter", "SF Pro Display", system-ui, sans-serif;
    flex-grow: 1;
}

.swiper-card-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--accent);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    font-family: "Inter", "SF Pro Display", system-ui, sans-serif;
    align-self: flex-start;
    white-space: nowrap;
    line-height: 1.5;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    user-select: none;
}

/* Ensure all buttons have consistent sizing regardless of card type */
.swiper-card.image-only .swiper-card-button,
.swiper-card .swiper-card-button {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
}

.swiper-card-button:hover {
    background-color: var(--accent-strong);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.swiper-card-button:active {
    transform: translateX(4px) scale(0.98);
    box-shadow: 0 2px 6px rgba(34, 197, 94, 0.4);
}

.swiper-card-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.swiper-card-button:active::after {
    width: 300px;
    height: 300px;
}

.swiper-cards-nav {
    display: none;
}

.swiper-cards-prev,
.swiper-cards-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background-color: var(--panel);
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.swiper-cards-prev:hover,
.swiper-cards-next:hover {
    background-color: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: scale(1.1);
}

.swiper-cards-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.swiper-card-content .swiper-cards-dots {
    margin-top: 1rem;
    padding-top: 0.5rem;
    margin-bottom: 0;
}

/* SORBON Facts Swiper */
.sorbon-facts-swiper,
.eticket-facts-swiper,
.growybiz-facts-swiper {
    position: relative;
    min-height: 0;
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    height: 100%;
    max-height: 100%;
}

.sorbon-fact-slide,
.eticket-fact-slide,
.growybiz-fact-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease, transform 0.6s ease;
    transform: translateY(20px);
    pointer-events: none;
    display: flex;
    flex-direction: column;
}

.sorbon-fact-slide.active,
.eticket-fact-slide.active,
.growybiz-fact-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.sorbon-fact-slide .swiper-card-description,
.eticket-fact-slide .swiper-card-description,
.growybiz-fact-slide .swiper-card-description {
    flex-grow: 1;
    margin-bottom: 1.5rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.sorbon-fact-slide .swiper-card-button,
.eticket-fact-slide .swiper-card-button,
.growybiz-fact-slide .swiper-card-button {
    margin-top: auto;
    align-self: flex-start;
    margin-bottom: 0;
}

/* Ensure buttons in content cards align with image-only card buttons */
/* Calculate: image-only buttons are at bottom: 1.5rem, content cards have padding: 1.5rem */
/* So buttons should align when content padding matches image-only bottom position */
.swiper-card:not(.image-only) .swiper-card-content {
    padding-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

/* Ensure fact slides push buttons to same level */
.sorbon-facts-swiper,
.eticket-facts-swiper,
.growybiz-facts-swiper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sorbon-fact-slide,
.eticket-fact-slide,
.growybiz-fact-slide {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.swiper-card-heading {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
    font-family: "Inter", "SF Pro Display", system-ui, sans-serif;
}

.swiper-card-description {
    color: var(--muted);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-family: "Inter", "SF Pro Display", system-ui, sans-serif;
}

/* Responsive styles for swiper cards */
@media (max-width: 1200px) {
    .swiper-card {
        max-width: 380px;
        min-width: 320px;
        height: 430px;
    }
    
    .swiper-card.image-only {
        height: 430px;
    }
}

@media (max-width: 1024px) {
    .swiper-cards-wrapper {
        gap: 1.5rem;
    }
    
    .swiper-card {
        max-width: 350px;
        min-width: 300px;
        height: 400px;
    }
    
    .swiper-card.image-only {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .swiper-cards-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .swiper-card {
        max-width: 100%;
        min-width: 100%;
        width: 100%;
        height: 380px;
    }
    
    .swiper-card.image-only {
        height: 380px;
    }
}

.swiper-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.swiper-dot.active {
    background-color: var(--accent);
    width: 30px;
    border-radius: 6px;
}

/* Message Section */
/* Company Identity Section */
.company-identity-section {
    padding: 6rem 0;
    background-color: #000;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.company-identity-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.company-identity-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    z-index: 1;
}

.company-heading {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 2.178rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #fff;
    text-align: center;
}

.company-heading .highlight-text {
    color: #22c55e;
    display: block;
}

.company-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.6875rem);
    color: #fff;
    max-width: 70%;
    margin: 0 auto 4rem;
    line-height: 1.25;
    font-weight: 500;
    text-align: center;
}

.expertise-tabs-wrapper {
    margin-top: 4rem;
}

.expertise-tabs-content {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 4rem;
    width: 100%;
}

.expertise-tabs-left {
    flex: 0 0 41.66666666666667%;
    max-width: 41.66666666666667%;
    min-width: 0;
    flex-shrink: 0;
}

.expertise-tabs-right {
    flex: 0 0 58.333333333333336%;
    max-width: 58.333333333333336%;
    min-width: 0;
    flex-shrink: 0;
}

.expertise-tabs-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.expertise-tab-item {
    position: relative;
    overflow: hidden;
}

.expertise-tab-item.active .tab-indicator {
    opacity: 1;
}

.expertise-tab-item.active .tab-gradient-indicator {
    opacity: 1;
}

.expertise-tab-item.active .tab-text {
    opacity: 1;
}

.expertise-tab-item:not(.active) .tab-indicator {
    opacity: 0;
}

.expertise-tab-item:not(.active) .tab-gradient-indicator {
    opacity: 0;
}

.tab-indicator {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: #7553FF;
    transition: opacity 0.3s ease, width 0.3s ease;
    opacity: 0;
    box-shadow: 0 0 10px rgba(117, 83, 255, 0.5);
}

.tab-gradient-indicator {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(to bottom, #FD44B0, #C2EF4E);
    transition: opacity 0.3s ease, width 0.3s ease;
    opacity: 0;
    box-shadow: 0 0 15px rgba(253, 68, 176, 0.4);
}

.expertise-tab-item.active .tab-indicator,
.expertise-tab-item.active .tab-gradient-indicator {
    width: 5px;
}

.expertise-tab-item:hover .tab-indicator,
.expertise-tab-item:hover .tab-gradient-indicator {
    opacity: 0.6;
}

.expertise-tab-button {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem 1rem 1.5rem 2rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
}

.expertise-tab-button:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.expertise-tab-button:focus {
    outline: 2px solid rgba(34, 197, 94, 0.5);
    outline-offset: 2px;
}

.tab-text {
    font-size: clamp(1.2rem, 1.8vw, 1.6rem);
    line-height: 1.4;
    color: #fff;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0.5;
    display: block;
    font-weight: 400;
}

.expertise-tab-item.active .tab-text {
    opacity: 1;
    font-weight: 500;
    transform: translateX(0);
}

.expertise-tab-item:not(.active) .tab-text {
    transform: translateX(-5px);
}

.expertise-tabs-right {
    position: relative;
}

.expertise-tab-images {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.expertise-tab-img {
    width: 100%;
    height: 100%;
    border-radius: 1.125rem;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    pointer-events: none;
}

.expertise-tab-img.active {
    opacity: 1;
    z-index: 1;
}

.expertise-tab-img:not(.active) {
    z-index: 0;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

@media (max-width: 992px) {
    .expertise-tabs-content {
        flex-direction: column;
    }
    
    .expertise-tabs-left,
    .expertise-tabs-right {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .expertise-tabs-left {
        order: 2;
    }
    
    .expertise-tabs-right {
        order: 1;
    }
    
    .expertise-tab-images {
        height: 400px;
    }
    
    .expertise-tab-img {
        position: absolute;
    }
    
    .expertise-tab-img:not(.active) {
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .company-identity-section {
        padding: 4rem 0;
    }
    
    .company-identity-container {
        padding: 0 1.5rem;
    }
    
    .company-subtitle {
        max-width: 100%;
        margin-bottom: 3rem;
    }
    
    .expertise-tabs-list {
        gap: 2rem;
    }
    
    .tab-text {
        font-size: 1.275rem;
    }
}

.message-section {
    width: 905px;
    height: 220px;
    margin: 0 auto;
    padding: 0;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.message-container {
    width: 100%;
    max-width: 905px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.message-container h2 {
    width: 100%;
    max-width: 710px;
    height: 36px;
    font-size: 2.2rem;
    margin: 0 auto;
    margin-bottom: 1rem;
    color: #333;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    font-weight: 400;
    line-height: 36px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.message-container p {
    width: 100%;
    max-width: 905px;
    height: 82px;
    font-size: 1.1rem;
    line-height: 1.5;
    color: rgb(99, 100, 102);
    font-family: "Sequel Sans", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    margin: 0 auto;
    overflow: hidden;
    word-wrap: break-word;
}

/* Awards Section */
.awards-section {
    padding: 4rem 0;
    background-color: #000;
}

.awards-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.awards-heading {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    font-weight: 400;
}

/* Desktop Grid */
.awards-grid {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.awards-scroll-wrapper {
    display: flex;
    animation: scroll 20s linear infinite;
    gap: 3rem;
    align-items: center;
    width: fit-content;
}

.award-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 200px;
    height: 120px;
}

.award-item img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    object-fit: contain;
}

/* Mobile Carousel */
.awards-mobile {
    display: none;
}

.awards-carousel {
    overflow: hidden;
    position: relative;
}

.awards-swiper-wrapper {
    display: flex;
    animation: scroll 20s linear infinite;
    gap: 1.5rem;
}

.award-slide {
    flex: 0 0 auto;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-slide img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Parallax Effect for Background Sections */
.parallax-bg {
    position: relative;
    overflow: hidden;
}

.parallax-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: inherit;
    transform: translateZ(0);
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    .parallax-bg::before {
        transform: none;
    }
}

/* Statistics Section */
.statistics-section {
    padding: 6rem 0;
    background-image: url('software company wallpapers/tg_image_1083413103.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.statistics-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
    z-index: 1;
}

.statistics-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.statistics-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.stat-column {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border-radius: 12px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease, opacity 0.6s ease;
    min-width: 150px;
    opacity: 0;
    transform: translateY(20px);
}

.stat-column.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.stat-column:nth-child(1) { transition-delay: 0.1s; }
.stat-column:nth-child(2) { transition-delay: 0.2s; }
.stat-column:nth-child(3) { transition-delay: 0.3s; }
.stat-column:nth-child(4) { transition-delay: 0.4s; }
.stat-column:nth-child(5) { transition-delay: 0.5s; }

.stat-column:nth-child(1) { transition-delay: 0.1s; }
.stat-column:nth-child(2) { transition-delay: 0.2s; }
.stat-column:nth-child(3) { transition-delay: 0.3s; }
.stat-column:nth-child(4) { transition-delay: 0.4s; }
.stat-column:nth-child(5) { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
    .stat-column {
        opacity: 1;
        transform: none;
        transition: background 0.2s ease;
    }
}

.stat-column:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.stat-counter {
    margin-bottom: 1.5rem;
}

.counter-number-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
}

.counter-prefix,
.counter-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: #fff;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    line-height: 1;
}

.counter-suffix {
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    line-height: 1;
    margin-left: 0.3rem;
}

.counter-number {
    display: inline-block;
}

.stat-title {
    font-size: 1.2rem;
    color: #fff;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
}

/* Cards Swiper Section */
.cards-swiper-section {
    padding: 5rem 0;
    background-color: #fff;
}

.cards-swiper-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.cards-swiper-wrapper {
    display: flex;
    overflow: hidden;
    gap: 1.5rem;
    transition: transform 0.5s ease;
}

.cards-swiper-wrapper .swiper-slide {
    width: 345px;
    flex-shrink: 0;
    position: relative;
    height: 500px;
    background-color: transparent;
}

.swiper-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f8f9fa;
    border-radius: 12px;
    z-index: 1;
    overflow: hidden;
    display: block !important;
    visibility: visible !important;
    width: 100% !important;
    height: 100% !important;
}

.swiper-slide-bg.has-image {
    background-color: transparent !important;
    background-image: none !important;
}

.swiper-slide-bg.has-image {
    background-color: transparent !important;
}

.cards-swiper-wrapper .swiper-slide-bg.has-image {
    background-color: transparent !important;
}

.slide-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    z-index: 1;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background-color: transparent;
    min-width: 100%;
    min-height: 100%;
}

.swiper-slide-bg.has-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    z-index: 2;
    pointer-events: none;
}

.swiper-slide-bg:not(.has-image)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    z-index: 2;
    pointer-events: none;
}

.swiper-slide-inner {
    position: relative;
    height: 100%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    pointer-events: none;
}

.swiper-slide-inner * {
    pointer-events: auto;
}

.swiper-slide-contents {
    padding: 2rem;
    text-align: left;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.elementor-slide-heading {
    font-size: 1.75rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.elementor-slide-description {
    color: #fff;
    line-height: 1.6;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    font-size: 16px;
    margin-bottom: 2rem;
    flex-grow: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.elementor-button.elementor-slide-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.3s ease;
    align-self: flex-start;
}

.elementor-button.elementor-slide-button:hover {
    background-color: #333;
    transform: translateY(-2px);
}

/* Cards Navigation Arrows */
.cards-swiper-button-next,
.cards-swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.cards-swiper-button-next:hover,
.cards-swiper-button-prev:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.cards-swiper-button-next {
    right: 20px;
}

.cards-swiper-button-next::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 15px;
    border-color: transparent transparent transparent #fff;
}

.cards-swiper-button-prev {
    left: 20px;
}

.cards-swiper-button-prev::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 15px 10px 0;
    border-color: transparent #fff transparent transparent;
}

/* Cards Pagination */
.cards-swiper-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.cards-swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cards-swiper-pagination-bullet-active {
    background-color: #000;
    width: 30px;
    border-radius: 6px;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 80px);
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: calc(100vh - 80px);
    padding: 2rem;
    background: #fff;
    color: #333;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.cta-button:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Image Background Section */
.image-bg-section {
    padding: 4rem 0;
    background-image: url('software company wallpapers/IMG_3746.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 500px;
}

.image-bg-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.image-bg-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-bg-slogan {
    font-size: 3.5rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background-color: #636466;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    font-weight: 600;
}

.about-container h3 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 2rem;
    color: #fff;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    font-weight: 500;
}

.about-container p {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #fff;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    max-width: 900px;
}

/* Footer Styles */
.footer {
    background-color: #000;
    color: #fff;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #fff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
    color: #ccc;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #000;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 0;
    }

    .nav-dropdown {
        position: static;
        width: 100%;
        max-width: 100%;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        padding: 1rem 0;
        margin-top: 0.5rem;
        background-color: #111;
    }
    
    .nav-item:hover .nav-dropdown,
    .nav-item.active .nav-dropdown {
        display: block;
    }
    
    .dropdown-container {
        padding: 0 1rem;
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .swiper-container {
        height: 600px;
    }
    
    .swiper-progress-container {
        height: 3px;
    }

    .slide-content h2 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1.2rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .swiper-button-next {
        right: 10px;
    }

    .swiper-button-prev {
        left: 10px;
    }

    .columns-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .columns-section {
        padding: 2rem 0;
    }

    .swiper-cards-section {
        padding: 1.5rem 0;
    }

    .swiper-cards-container {
        padding: 0 1.5rem;
    }

    .swiper-cards-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }

    .swiper-card {
        width: 100%;
    }

    /* Removed .swiper-card.active styles - all cards are now static */

    .swiper-card-image {
        height: 220px;
    }

    .swiper-card-content {
        padding: 2rem;
    }

    .swiper-card-content h3 {
        font-size: 1.5rem;
    }

    .swiper-card-content p {
        font-size: 0.95rem;
    }

    .message-section {
        width: 100%;
        max-width: 905px;
        height: auto;
        min-height: 220px;
        padding: 2rem 0;
    }

    .message-container h2 {
        width: 100%;
        max-width: 710px;
        height: auto;
        min-height: 36px;
        font-size: 2rem;
        line-height: 1.2;
    }

    .message-container p {
        width: 100%;
        max-width: 905px;
        height: auto;
        min-height: 82px;
        font-size: 1rem;
        line-height: 1.4;
    }

    .statistics-section {
        padding: 2rem 0;
    }

    .statistics-inner {
        flex-direction: column;
        gap: 3rem;
    }

    .counter-prefix,
    .counter-number {
        font-size: 2.5rem;
    }

    .counter-suffix {
        font-size: 1.2rem;
    }

    .stat-title {
        font-size: 1rem;
    }

    .cards-swiper-section {
        padding: 2rem 0;
    }

    .cards-swiper-wrapper .swiper-slide {
        width: 100%;
        max-width: 345px;
    }

    .cards-swiper-button-next,
    .cards-swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .cards-swiper-button-next {
        right: 10px;
    }

    .cards-swiper-button-prev {
        left: 10px;
    }

    .swiper-slide-contents {
        padding: 2rem;
    }

    .elementor-slide-heading {
        font-size: 1.5rem;
    }

    .elementor-slide-description {
        font-size: 14px;
    }

    .awards-section {
        padding: 2rem 0;
    }

    .awards-heading {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .awards-desktop {
        display: none;
    }

    .awards-mobile {
        display: block;
    }

    .awards-swiper-wrapper {
        display: flex;
        gap: 1.5rem;
    }

    .award-slide {
        width: 120px;
    }

    .image-bg-section {
        padding: 2rem 0;
        min-height: 300px;
    }

    .image-bg-container {
        min-height: 300px;
    }

    .image-bg-slogan {
        font-size: 2rem;
    }

    .about-section {
        padding: 2rem 0;
    }

    .about-container h2 {
        font-size: 2.5rem;
    }

    .about-container h3 {
        font-size: 2rem;
    }

    .about-container p {
        font-size: 1.3rem;
    }
}

/* Secondary Swiper Container - Different Design */
.secondary-swiper-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.swiper-container-secondary {
    width: 100%;
    max-width: 1200px;
    height: 400px;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.swiper-wrapper-secondary {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.swiper-slide-secondary {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 20px;
}

.slide-bg-image-container-secondary {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    border-radius: 20px;
}

.slide-bg-image-secondary {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7);
}

.slide-content-secondary {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    max-width: 700px;
    color: #fff;
}

.slide-content-secondary h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-content-secondary p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.slide-2-secondary {
    background-image: url('screens/eticket.png');
    background-size: 80% auto;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fff;
}

/* Secondary Navigation Buttons */
.swiper-button-next-secondary,
.swiper-button-prev-secondary {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: #333;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.swiper-button-next-secondary:hover,
.swiper-button-prev-secondary:hover {
    background-color: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.swiper-button-next-secondary {
    right: 20px;
}

.swiper-button-next-secondary::after {
    content: '›';
    font-size: 28px;
    font-weight: bold;
}

.swiper-button-prev-secondary {
    left: 20px;
}

.swiper-button-prev-secondary::after {
    content: '‹';
    font-size: 28px;
    font-weight: bold;
}

/* Secondary Pagination */
.swiper-pagination-secondary {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.swiper-pagination-bullet-secondary {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.swiper-pagination-bullet-secondary:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.swiper-pagination-bullet-secondary.swiper-pagination-bullet-active {
    background-color: #fff;
    width: 30px;
    border-radius: 6px;
    border-color: #fff;
}

/* Responsive for Secondary Swiper */
@media (max-width: 768px) {
    .swiper-container-secondary {
        height: 300px;
        border-radius: 15px;
    }

    .slide-content-secondary h2 {
        font-size: 1.5rem;
    }

    .slide-content-secondary p {
        font-size: 0.95rem;
    }

    .swiper-button-next-secondary,
    .swiper-button-prev-secondary {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .swiper-button-next-secondary {
        right: 10px;
    }

    .swiper-button-prev-secondary {
        left: 10px;
    }
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 0.4rem 0.8rem;
    cursor: pointer;
    border-radius: 4px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.lang-btn:hover,
.lang-btn:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.lang-btn.active {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.lang-btn.active:focus {
    outline: 2px solid #22c55e;
    outline-offset: 2px;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Improved Color Contrast for WCAG AA */
.message-section h2 {
    color: #333; /* Dark gray heading color */
}

.message-section p {
    color: rgb(99, 100, 102); /* Gray text for better readability */
}

.about-section h2,
.about-section h3 {
    color: #fff !important; /* White text on dark background */
}

.about-section p {
    color: rgba(255, 255, 255, 0.9); /* Light white for better readability */
}

/* Keyboard Navigation Improvements */
*:focus-visible {
    outline: 2px solid #22c55e;
    outline-offset: 2px;
    border-radius: 2px;
}

.swiper-button-next:focus,
.swiper-button-prev:focus,
.swiper-button-next-secondary:focus,
.swiper-button-prev-secondary:focus {
    outline: 2px solid #22c55e;
    outline-offset: 2px;
}

.swiper-pagination-bullet:focus,
.swiper-pagination-bullet-secondary:focus {
    outline: 2px solid #22c55e;
    outline-offset: 2px;
}

.nav-link:focus {
    outline: 2px solid #22c55e;
    outline-offset: 2px;
}

/* Mobile Language Switcher */
@media (max-width: 768px) {
    .language-switcher {
        margin-left: 0.5rem;
    }
    
    .lang-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
}

/* Skip to Content Link */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 0 0 4px 0;
}

.skip-to-content:focus {
    top: 0;
    outline: 2px solid #22c55e;
    outline-offset: 2px;
}

/* Product Dashboards Showcase Section */
.product-dashboards-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.dashboards-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.dashboards-heading {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #0b0b0f;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, sans-serif;
}

.dashboards-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #4b5563;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.dashboards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.dashboard-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, opacity 0.6s ease;
    cursor: pointer;
    position: relative;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

.dashboard-card.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.dashboard-card:nth-child(1) { transition-delay: 0.1s; }
.dashboard-card:nth-child(2) { transition-delay: 0.2s; }
.dashboard-card:nth-child(3) { transition-delay: 0.3s; }
.dashboard-card:nth-child(4) { transition-delay: 0.4s; }

.dashboard-card:hover,
.dashboard-card:focus {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    outline: 2px solid #22c55e;
    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
    .dashboard-card {
        opacity: 1;
        transform: none;
        transition: box-shadow 0.2s ease;
    }
    
    .dashboard-card:hover,
    .dashboard-card:focus {
        transform: none;
    }
}


.dashboard-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: #f1f5f9;
}

.dashboard-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.4s ease;
}

.dashboard-card:hover .dashboard-image,
.dashboard-card:focus .dashboard-image {
    transform: scale(1.05);
}

.dashboard-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.dashboard-card:hover .dashboard-overlay,
.dashboard-card:focus .dashboard-overlay {
    transform: translateY(0);
}

.dashboard-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, sans-serif;
}

.dashboard-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.dashboard-view-btn {
    background: #22c55e;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    font-family: inherit;
    position: relative;
    overflow: hidden;
    user-select: none;
}

.dashboard-view-btn:hover,
.dashboard-view-btn:focus {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.dashboard-view-btn:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 6px rgba(34, 197, 94, 0.5);
}

.dashboard-view-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.dashboard-view-btn:active::after {
    width: 300px;
    height: 300px;
}

/* Ripple effect for button clicks */
.swiper-card-button,
.dashboard-view-btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ripple {
        animation: none;
        display: none;
    }
}

/* Dashboard Modal */
.dashboard-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.dashboard-modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    z-index: 10001;
    background: #fff;
    border-radius: 16px;
    max-width: 1200px;
    max-height: 90vh;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-close:hover,
.modal-close:focus {
    background: rgba(0, 0, 0, 0.9);
    transform: rotate(90deg);
    outline: 2px solid #22c55e;
    outline-offset: 2px;
}

.modal-title {
    padding: 1.5rem 2rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: #0b0b0f;
    border-bottom: 1px solid #e5e7eb;
    margin: 0;
}

.modal-image-container {
    max-height: calc(90vh - 100px);
    overflow: auto;
    background: #f9fafb;
}

.modal-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .dashboards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .product-dashboards-section {
        padding: 60px 0;
    }
    
    .dashboards-heading {
        font-size: 2rem;
    }
    
    .dashboards-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .dashboards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .dashboard-card-image-wrapper {
        height: 280px;
    }
    
    .dashboard-overlay {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
        padding: 1.5rem 1rem 1rem;
    }
    
    .modal-content {
        max-width: 100%;
        max-height: 95vh;
        border-radius: 0;
        margin: 0;
    }
    
    .modal-title {
        padding: 1rem 1.5rem;
        font-size: 1.5rem;
    }
}

/* E-Ticket Page Styles */
.eticket-hero {
    background: linear-gradient(135deg, #0b0b0f 0%, #1a1a2e 100%);
    padding: 6rem 0;
    color: #fff;
}

.eticket-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.eticket-hero-text h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #fff;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #22c55e;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.eticket-link-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #22c55e;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.eticket-link-button:hover,
.eticket-link-button:focus {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.eticket-hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.eticket-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: block;
    max-width: 100%;
}

/* Client Badge Section */
.eticket-client-section {
    padding: 4rem 0;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

.client-badge {
    text-align: center;
    padding: 2rem;
}

.client-label {
    display: block;
    font-size: 0.9rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.client-name {
    font-size: 3rem;
    font-weight: 700;
    color: #0b0b0f;
    margin-bottom: 0.5rem;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, sans-serif;
}

.client-subtitle {
    font-size: 1.5rem;
    color: #4b5563;
    font-weight: 500;
}

/* Railway Section */
.eticket-railway-section {
    padding: 5rem 0;
    background: #fff;
}

.railway-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.railway-content-card {
    background: #f9fafb;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.railway-content-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: #22c55e;
}

.railway-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.railway-content-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0b0b0f;
    margin-bottom: 1rem;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, sans-serif;
}

.railway-content-card p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 1rem;
}

.railway-content-card ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.railway-content-card ul li {
    color: #4b5563;
    line-height: 1.8;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.railway-content-card ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

/* Market Section */
.eticket-market-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.market-content {
    max-width: 900px;
    margin: 0 auto;
}

.market-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #0b0b0f;
    margin-bottom: 1.5rem;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, sans-serif;
}

.market-text p {
    color: #4b5563;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.market-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.market-list li {
    color: #4b5563;
    line-height: 2;
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.market-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
    font-size: 1.2rem;
}

.market-list li strong {
    color: #0b0b0f;
    font-weight: 600;
}

/* E-Ticket Features Section */
.eticket-features-section {
    padding: 5rem 0;
    background: #fff;
}

.eticket-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.eticket-feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    text-align: center;
}

/* Enhanced hover effects moved to scroll animations section */

.eticket-feature-card .feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22c55e;
    flex-shrink: 0;
}

.eticket-feature-card .feature-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
}

.eticket-feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0b0b0f;
    margin-bottom: 1rem;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, sans-serif;
}

.eticket-feature-card p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Showcase Section */
.eticket-showcase-section {
    padding: 5rem 0;
    background: #0b0b0f;
    color: #fff;
}

.showcase-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.showcase-image-container {
    position: relative;
}

.showcase-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.showcase-text-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, sans-serif;
}

.showcase-text-container p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.showcase-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #22c55e;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.showcase-button:hover,
.showcase-button:focus {
    background: #16a34a;
    transform: translateX(4px);
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.showcase-button svg {
    fill: currentColor;
}

/* Impact Section */
.eticket-impact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.impact-item {
    text-align: center;
}

.impact-number {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.5rem;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, sans-serif;
    line-height: 1;
}

.impact-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .eticket-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .eticket-hero-text h1 {
        font-size: 3rem;
    }
    
    .showcase-content-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .eticket-hero {
        padding: 4rem 0;
    }
    
    .eticket-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .client-name {
        font-size: 2rem;
    }
    
    .railway-content-grid,
    .eticket-features-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .impact-number {
        font-size: 3rem;
    }
}

/* E-Ticket Page - Refocused Styles */
.eticket-hero {
    background: linear-gradient(135deg, #0b0b0f 0%, #1a1a2e 100%);
    padding: 6rem 0;
    color: #fff;
}

.eticket-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.eticket-hero-text h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #fff;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #22c55e;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.badge {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-primary,
.cta-primary-large {
    display: inline-block;
    padding: 1rem 2rem;
    background: #22c55e;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.cta-primary-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
}

.cta-primary:hover,
.cta-primary:focus,
.cta-primary-large:hover,
.cta-primary-large:focus {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.cta-secondary,
.cta-secondary-large {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-secondary-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
}

.cta-secondary:hover,
.cta-secondary:focus,
.cta-secondary-large:hover,
.cta-secondary-large:focus {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    outline: 2px solid #22c55e;
    outline-offset: 2px;
}

.eticket-hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.eticket-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: block;
    max-width: 100%;
}

/* Problems Section */
.eticket-problems-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.eticket-problems-section .sorbon-container,
.eticket-solution-section .sorbon-container,
.eticket-platform-section .sorbon-container,
.eticket-features-section .sorbon-container,
.eticket-why-section .sorbon-container,
.eticket-success-section .sorbon-container,
.eticket-implementation-section .sorbon-container,
.eticket-cta-section .sorbon-container {
    padding-left: 4rem;
    padding-right: 4rem;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.problem-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #ef4444;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    /* Enhanced hover effects in scroll animations section */
}

.problem-icon {
    width: 56px;
    height: 56px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #ef4444;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.problem-card:hover .problem-icon {
    background: rgba(239, 68, 68, 0.15);
    transform: scale(1.05);
}

.problem-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
}

.problem-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0b0b0f;
    margin-bottom: 1rem;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, sans-serif;
}

.problem-card p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Solution Section */
.eticket-solution-section {
    padding: 6rem 0;
    background: #fff;
}

.solution-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.solution-lead {
    font-size: 1.3rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.solution-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-check {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #22c55e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.benefit-text strong {
    display: block;
    font-size: 1.1rem;
    color: #0b0b0f;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.benefit-text p {
    color: #4b5563;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.solution-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Why Section */
.eticket-why-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0b0b0f 0%, #1a1a2e 100%);
    color: #fff;
}

.eticket-why-section .section-title,
.eticket-why-section .section-subtitle {
    color: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #22c55e;
    transform: translateY(-4px);
}

.why-number {
    font-size: 3rem;
    font-weight: 900;
    color: #22c55e;
    margin-bottom: 1rem;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, sans-serif;
    line-height: 1;
}

.why-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, sans-serif;
}

.why-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1rem;
}

/* Success Section */
.eticket-success-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.success-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.success-label {
    display: inline-block;
    background: #22c55e;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.success-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0b0b0f;
    margin-bottom: 1.5rem;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, sans-serif;
}

.success-description {
    font-size: 1.2rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-weight: 500;
}

.success-text p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.success-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.success-stat {
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: #22c55e;
    margin-bottom: 0.5rem;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.success-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #22c55e;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.success-link:hover,
.success-link:focus {
    color: #16a34a;
    gap: 1rem;
    outline: 2px solid #22c55e;
    outline-offset: 4px;
    border-radius: 4px;
}

.success-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Implementation Section */
.eticket-implementation-section {
    padding: 6rem 0;
    background: #fff;
}

.implementation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.implementation-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #22c55e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, sans-serif;
}

.implementation-step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0b0b0f;
    margin-bottom: 1rem;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, sans-serif;
}

.implementation-step p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* CTA Section */
.eticket-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    text-align: center;
}

.eticket-cta-section h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, sans-serif;
}

.eticket-cta-section p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary-large {
    background: #fff;
    color: #22c55e;
}

.cta-primary-large:hover,
.cta-primary-large:focus {
    background: #f0f0f0;
    color: #16a34a;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-secondary-large {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-secondary-large:hover,
.cta-secondary-large:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .eticket-hero-content,
    .solution-content-wrapper,
    .success-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .eticket-hero-text h1 {
        font-size: 3rem;
    }
    
    .success-stats {
        justify-content: center;
    }
    
    .eticket-problems-section .sorbon-container,
    .eticket-solution-section .sorbon-container,
    .eticket-platform-section .sorbon-container,
    .eticket-features-section .sorbon-container,
    .eticket-why-section .sorbon-container,
    .eticket-success-section .sorbon-container,
    .eticket-implementation-section .sorbon-container,
    .eticket-cta-section .sorbon-container {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}

@media (max-width: 768px) {
    .eticket-hero {
        padding: 4rem 0;
    }
    
    .eticket-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .problems-grid,
    .why-grid,
    .implementation-grid {
        grid-template-columns: 1fr;
    }
    
    .eticket-cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .eticket-problems-section .sorbon-container,
    .eticket-solution-section .sorbon-container,
    .eticket-platform-section .sorbon-container,
    .eticket-features-section .sorbon-container,
    .eticket-why-section .sorbon-container,
    .eticket-success-section .sorbon-container,
    .eticket-implementation-section .sorbon-container,
    .eticket-cta-section .sorbon-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .cta-primary-large,
    .cta-secondary-large {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* E-Ticket Platform Section */
.eticket-platform-section {
    padding: 6rem 0;
    background-image: url('wallpapers/pexels-radoslaw-krupa-3227938-11249077.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.eticket-platform-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.eticket-platform-section .sorbon-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.eticket-platform-section .section-title,
.eticket-platform-section .section-subtitle {
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease-out;
}

.fade-in.animate {
    opacity: 1;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scale-in.animate {
    opacity: 1;
    transform: scale(1);
}

/* Stagger Animation Delays */
.animate-delay-1 {
    transition-delay: 0.1s;
}

.animate-delay-2 {
    transition-delay: 0.2s;
}

.animate-delay-3 {
    transition-delay: 0.3s;
}

.animate-delay-4 {
    transition-delay: 0.4s;
}

.animate-delay-5 {
    transition-delay: 0.5s;
}

.animate-delay-6 {
    transition-delay: 0.6s;
}

/* Enhanced Hover Effects */
.eticket-feature-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.eticket-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.05), transparent);
    transition: left 0.5s ease;
    z-index: 0;
}

.eticket-feature-card:hover::before {
    left: 100%;
}

.eticket-feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 48px rgba(34, 197, 94, 0.15);
    border-color: #22c55e;
}

.eticket-feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    color: #16a34a;
}

.eticket-feature-card:hover .feature-icon svg {
    filter: drop-shadow(0 4px 8px rgba(34, 197, 94, 0.3));
}

.problem-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.problem-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #ef4444;
    transition: width 0.4s ease;
}

.problem-card:hover::after {
    width: 100%;
}

.problem-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(239, 68, 68, 0.15);
    border-left-color: #ef4444;
}

.problem-card:hover .problem-icon {
    transform: scale(1.1) rotate(-5deg);
    background: rgba(239, 68, 68, 0.2);
}

.why-card {
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 12px;
    z-index: 0;
}

.why-card:hover::before {
    opacity: 1;
}

.why-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: #22c55e;
    box-shadow: 0 16px 48px rgba(34, 197, 94, 0.2);
}

.why-card:hover .why-number {
    transform: scale(1.1);
    color: #16a34a;
}

.implementation-step {
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.implementation-step:hover {
    transform: translateY(-8px);
}

.implementation-step:hover .step-number {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
}

.step-number {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced Button Hover Effects */
.cta-primary,
.cta-primary-large {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-primary::before,
.cta-primary-large::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-primary:hover::before,
.cta-primary-large:hover::before {
    width: 300px;
    height: 300px;
}

.cta-primary:hover,
.cta-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(34, 197, 94, 0.4);
}

.cta-secondary,
.cta-secondary-large {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-secondary::after,
.cta-secondary-large::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #22c55e;
    transition: width 0.3s ease;
}

.cta-secondary:hover::after,
.cta-secondary-large:hover::after {
    width: 100%;
}

.cta-secondary:hover,
.cta-secondary-large:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
    border-color: #22c55e;
}

/* Badge Hover Effect */
.badge {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(34, 197, 94, 0.2);
    transition: left 0.3s ease;
}

.badge:hover::before {
    left: 100%;
}

.badge:hover {
    transform: scale(1.05);
    border-color: #22c55e;
}

/* Success Link Hover */
.success-link {
    position: relative;
}

.success-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #22c55e;
    transition: width 0.3s ease;
}

.success-link:hover::after {
    width: 100%;
}

/* Image Hover Effects */
.eticket-hero-image img,
.solution-image img,
.success-image img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.eticket-hero-image:hover img,
.solution-image:hover img,
.success-image:hover img {
    transform: scale(1.05);
}

/* Prevent parallax overflow */
.eticket-hero-image {
    overflow: hidden;
}

/* Musaffa Page Styles */
.musaffa-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
    color: #fff;
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.musaffa-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.musaffa-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.musaffa-hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.musaffa-hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    font-family: "Inter", "SF Pro Display", system-ui, sans-serif;
    opacity: 0.95;
}

.musaffa-intro {
    padding: 6rem 0;
    background: #fff;
}

.musaffa-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.musaffa-intro .section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #0b0b0f;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    font-weight: 600;
}

.musaffa-intro .intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    font-family: "Inter", "SF Pro Display", system-ui, sans-serif;
}

.intro-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3b82f6;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #6b7280;
    font-family: "Inter", "SF Pro Display", system-ui, sans-serif;
    text-transform: none;
    letter-spacing: normal;
    line-height: 1.5;
    max-width: 300px;
    text-align: center;
}

.musaffa-features {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
}

.musaffa-features .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0b0b0f;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    font-weight: 600;
}

.musaffa-features .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 3rem;
    font-family: "Inter", "SF Pro Display", system-ui, sans-serif;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0b0b0f;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    font-weight: 600;
}

.feature-card p {
    color: #4b5563;
    line-height: 1.7;
    font-family: "Inter", "SF Pro Display", system-ui, sans-serif;
}

.musaffa-problems {
    padding: 6rem 0;
    background: #fff;
}

.musaffa-problems .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #0b0b0f;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    font-weight: 600;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.problem-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 4px solid #3b82f6;
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #0b0b0f;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    font-weight: 600;
}

.problem-card p {
    color: #4b5563;
    line-height: 1.7;
    font-family: "Inter", "SF Pro Display", system-ui, sans-serif;
}

.musaffa-benefits {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e3a8a 100%);
    color: #fff;
}

.musaffa-benefits .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #fff;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    font-weight: 600;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    font-weight: 600;
}

.benefit-item p {
    color: #e0e0e0;
    line-height: 1.7;
    font-family: "Inter", "SF Pro Display", system-ui, sans-serif;
}

.musaffa-cta {
    padding: 6rem 0;
    background: #000;
    color: #fff;
    text-align: center;
}

.musaffa-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

.musaffa-cta p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-family: "Inter", "SF Pro Display", system-ui, sans-serif;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background-color: #3b82f6;
    color: #fff;
}

.cta-button.primary:hover {
    background-color: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.cta-button.secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-button.secondary:hover {
    background-color: #fff;
    color: #333;
}

@media (max-width: 768px) {
    .musaffa-hero-title {
        font-size: 2.5rem;
    }
    
    .musaffa-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .intro-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .features-grid,
    .problems-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* GrowyBiz Page Styles */
.growybiz-hero {
    background: #000;
    color: #fff;
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.growybiz-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.growybiz-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.growybiz-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.growybiz-hero-subtitle {
    font-size: 5.0rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: "Inter", "SF Pro Display", system-ui, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    line-height: 1.1;
}

.growybiz-hero-subtitle .subtitle-part1 {
    color: #d1d5db;
}

.growybiz-hero-subtitle .subtitle-part2 {
    background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.growybiz-hero-description {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #d1d5db;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.growybiz-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.growybiz-stat-item {
    text-align: center;
    padding: 0.2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    min-width: 160px;
    backdrop-filter: blur(10px);
}

.growybiz-stat-item .stat-number {
    font-size: 1.rem;
    font-weight: 700;
    color: #06b6d4;
    margin-bottom: 0.5rem;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

.growybiz-stat-item .stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.growybiz-hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.growybiz-button {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

.growybiz-button.primary {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: #fff;
}

.growybiz-button.primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.growybiz-button.secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.growybiz-button.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.growybiz-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.growybiz-overview {
    padding: 6rem 0;
    background: #fff;
}

.growybiz-overview .section-title {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    align-items: center;
    font-size: 3.5rem;
    font-weight: 700;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

.growybiz-gradient-text {
    background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.growybiz-overview-wrapper {
    margin-top: 3rem;
}

.growybiz-image-wrapper {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin-bottom: 1.5rem;
}

.growybiz-overview-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1rem;
}

.growybiz-image-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1rem;
}

.overview-description {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.overview-caption {
    text-align: center;
    color: #888;
    font-style: italic;
    font-size: 0.95rem;
}

.growybiz-ai {
    padding: 8rem 0;
    background: #000;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.growybiz-ai-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.growybiz-ai-left {
    flex: 1;
    max-width: 600px;
}

.growybiz-ai-headline {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.growybiz-ai-headline span {
    color: #fff;
}

.growybiz-ai-headline .growybiz-gradient-text {
    background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.growybiz-ai-supporting {
    font-size: 1.1rem;
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    text-align: left;
    max-width: 550px;
}

.growybiz-features-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.growybiz-feature-card-horizontal {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.growybiz-feature-card-horizontal:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.feature-icon-container {
    font-size: 2rem;
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 0.75rem;
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

.feature-content p {
    font-size: 0.95rem;
    color: #d1d5db;
    line-height: 1.6;
    margin: 0;
}

.growybiz-ai-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.growybiz-mockup-container {
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.3),
                0 20px 60px rgba(0, 0, 0, 0.4);
    background: #1a1a1a;
    padding: 0.5rem;
    position: relative;
}

.growybiz-mockup-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 1.25rem;
    z-index: -1;
    opacity: 0.5;
    filter: blur(10px);
}

.growybiz-ai-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1rem;
}

.growybiz-analytics {
    padding: 8rem 0;
    background: #fff;
    color: #0b0b0f;
    position: relative;
    overflow: hidden;
}

.growybiz-analytics-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.growybiz-analytics-left {
    flex: 1;
    max-width: 600px;
}

.growybiz-analytics-headline {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.growybiz-analytics-headline span {
    color: #0b0b0f;
}

.growybiz-analytics-supporting {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    text-align: left;
    max-width: 550px;
}

.growybiz-analytics-features-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.growybiz-analytics-feature-card-horizontal {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    border-radius: 1rem;
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.growybiz-analytics-feature-card-horizontal:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.analytics-feature-icon-container {
    font-size: 2rem;
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 0.75rem;
    flex-shrink: 0;
}

.analytics-feature-content {
    flex: 1;
}

.analytics-feature-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #0b0b0f;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

.analytics-feature-content p {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.growybiz-analytics-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.growybiz-analytics-mockup-container {
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.3),
                0 20px 60px rgba(0, 0, 0, 0.4);
    background: #1a1a1a;
    padding: 0.5rem;
    position: relative;
}

.growybiz-analytics-mockup-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 1.25rem;
    z-index: -1;
    opacity: 0.5;
    filter: blur(10px);
}

.growybiz-analytics-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1rem;
}

.growybiz-cta {
    padding: 6rem 0;
    background: #000;
    color: #fff;
    text-align: center;
}

.growybiz-cta .growybiz-container {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

.cta-description {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.growybiz-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.growybiz-cta .growybiz-button.primary {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: #fff;
}

.growybiz-cta .growybiz-button.primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.growybiz-cta .growybiz-button.secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.growybiz-cta .growybiz-button.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .growybiz-hero-title {
        font-size: 2.5rem;
    }
    
    .growybiz-hero-subtitle {
        font-size: 3rem;
        flex-direction: column;
        gap: 0;
        line-height: 1.1;
    }
    
    .growybiz-hero-description {
        font-size: 1.9rem;
    }
    
    .growybiz-stats {
        gap: 2rem;
    }
    
    .growybiz-stat-item {
        min-width: auto;
        padding: 1.25rem;
    }
    
    .growybiz-stat-item .stat-number {
        font-size: 2rem;
    }
    
    .growybiz-ai-container {
        flex-direction: column;
        gap: 3rem;
        padding: 0 1.5rem;
    }
    
    .growybiz-ai-left {
        max-width: 100%;
    }
    
    .growybiz-ai-headline {
        font-size: 2.5rem;
    }
    
    .growybiz-ai-right {
        width: 100%;
    }
    
    .growybiz-analytics-container {
        flex-direction: column;
        gap: 3rem;
        padding: 0 1.5rem;
    }
    
    .growybiz-analytics-left {
        max-width: 100%;
    }
    
    .growybiz-analytics-headline {
        font-size: 2.5rem;
    }
    
    .growybiz-analytics-right {
        width: 100%;
    }
    
    .growybiz-features-grid,
    .growybiz-analytics-grid {
        grid-template-columns: 1fr;
    }
    
    .growybiz-overview .section-title {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
}

/* Services Page Styles */
/* General Section Title Styles */
.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 1.5rem;
    color: #0b0b0f;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Sorbon Experience Section - Black title */
.sorbon-experience .section-title {
    color: #000;
}

.section-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    text-align: center;
    color: #6b7280;
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    font-family: "Inter", "SF Pro Display", system-ui, sans-serif;
    font-weight: 400;
}

.services-hero {
    background: linear-gradient(135deg, #0b0b0f 0%, #1a1a2e 100%);
    padding: 8rem 0 6rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.services-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    position: relative;
    z-index: 1;
}

.services-hero-content {
    max-width: 900px;
}

.services-breadcrumb {
    display: inline-block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.services-hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 2rem;
    color: #fff;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.1;
}

.services-hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
}

.services-features-section {
    padding: 6rem 0;
    background: #fff;
}

.services-features-section .sorbon-container,
.services-ai-section .sorbon-container,
.services-benefits-section .sorbon-container,
.services-cycle-section .sorbon-container,
.services-contact-section .sorbon-container,
.services-portfolio-section .sorbon-container {
    padding-left: 4rem;
    padding-right: 4rem;
}

.services-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.services-feature-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.services-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border-color: #22c55e;
}

.services-feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.services-feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0b0b0f;
    margin-bottom: 1rem;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, sans-serif;
}

.services-feature-card p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 1rem;
}

.services-ai-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.services-ai-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.services-ai-item {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
}

.services-ai-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: #22c55e;
}

.services-ai-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.services-ai-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0b0b0f;
    margin-bottom: 0.5rem;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, sans-serif;
}

.services-ai-item p {
    color: #6b7280;
    font-size: 0.9rem;
    font-style: italic;
}

.services-benefits-section {
    padding: 6rem 0;
    background: #fff;
}

.services-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.services-benefit-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid #22c55e;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.services-benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(34, 197, 94, 0.15);
    border-left-color: #16a34a;
}

.services-benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.services-benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0b0b0f;
    margin-bottom: 1rem;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, sans-serif;
}

.services-benefit-card p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 1rem;
}

.services-cycle-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0b0b0f 0%, #1a1a2e 100%);
    color: #fff;
}

.services-cycle-section .section-title,
.services-cycle-section .section-subtitle {
    color: #fff;
}

.services-cycle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.services-cycle-step {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.services-cycle-step:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #22c55e;
    transform: translateY(-4px);
}

.cycle-step-number {
    font-size: 3rem;
    font-weight: 900;
    color: #22c55e;
    margin-bottom: 1rem;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, sans-serif;
    line-height: 1;
}

.services-cycle-step h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, sans-serif;
}

.services-cycle-step p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.cycle-step-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cycle-step-list li {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cycle-step-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

.services-contact-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.services-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.services-contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-info-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0b0b0f;
    margin-bottom: 0.5rem;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, sans-serif;
}

.contact-info-content p {
    color: #4b5563;
    font-size: 1.1rem;
}

.services-contact-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: #0b0b0f;
    margin-bottom: 0.5rem;
    font-family: "Inter", "SF Pro Display", system-ui, sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: "Inter", "SF Pro Display", system-ui, sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

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

.services-submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: #22c55e;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Inter", "SF Pro Display", system-ui, sans-serif;
}

.services-submit-btn:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

.services-portfolio-section {
    padding: 6rem 0;
    background: #fff;
}

.services-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.services-portfolio-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.services-portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.portfolio-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-placeholder {
    color: #9ca3af;
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.services-portfolio-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0b0b0f;
    margin: 1.5rem 1.5rem 0.5rem;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, sans-serif;
}

.services-portfolio-item p {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0 1.5rem 1.5rem;
}

/* Responsive Design for Services Page */
@media (max-width: 1024px) {
    .services-hero-container {
        padding: 0 2.5rem;
    }
    
    .services-contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .services-features-section .sorbon-container,
    .services-ai-section .sorbon-container,
    .services-benefits-section .sorbon-container,
    .services-cycle-section .sorbon-container,
    .services-contact-section .sorbon-container,
    .services-portfolio-section .sorbon-container {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 5rem 0 4rem;
    }
    
    .services-hero-container {
        padding: 0 1.5rem;
    }
    
    .services-hero-title {
        font-size: 2.5rem;
    }
    
    .services-hero-description {
        font-size: 1.1rem;
    }
    
    .services-features-section .sorbon-container,
    .services-ai-section .sorbon-container,
    .services-benefits-section .sorbon-container,
    .services-cycle-section .sorbon-container,
    .services-contact-section .sorbon-container,
    .services-portfolio-section .sorbon-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .services-features-grid,
    .services-ai-grid,
    .services-benefits-grid,
    .services-cycle-grid,
    .services-portfolio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-feature-card,
    .services-ai-item,
    .services-benefit-card,
    .services-cycle-step {
        padding: 2rem;
    }
    
    .services-contact-form {
        padding: 2rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #0b0b0f 0%, #1a1a2e 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem;
    position: relative;
    z-index: 1;
}

.contact-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, sans-serif;
    background: linear-gradient(135deg, #fff 0%, #e5e7eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero-description {
    font-size: 1.25rem;
    color: #d1d5db;
    line-height: 1.8;
    font-family: "Inter", "SF Pro Display", system-ui, sans-serif;
}

.contact-info-section {
    padding: 6rem 0;
    background: #fff;
}

.contact-info-section .sorbon-container {
    padding-left: 4rem;
    padding-right: 4rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.contact-info-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.contact-info-card .contact-info-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-info-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0b0b0f;
    margin-bottom: 1rem;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, sans-serif;
}

.contact-info-card p {
    font-size: 1.1rem;
    color: #6b7280;
    font-family: "Inter", "SF Pro Display", system-ui, sans-serif;
}

.contact-form-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.contact-form-section .sorbon-container {
    padding-left: 4rem;
    padding-right: 4rem;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.contact-form-container {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-container .section-title {
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
    color: #0b0b0f;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, sans-serif;
}

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

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form .form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: #0b0b0f;
    margin-bottom: 0.5rem;
    font-family: "Inter", "SF Pro Display", system-ui, sans-serif;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    font-family: "Inter", "SF Pro Display", system-ui, sans-serif;
    color: #0b0b0f;
    background: #fff;
    transition: all 0.3s ease;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

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

.contact-submit-btn {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Inter", "SF Pro Display", system-ui, sans-serif;
    margin-top: 1rem;
}

.contact-submit-btn:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

.contact-map-container {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-map-container .section-title {
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
    color: #0b0b0f;
    font-family: "Sequel Sans", "Helvetica Neue", Arial, sans-serif;
}

.map-wrapper {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-link {
    text-align: center;
    margin-top: 1rem;
}

.map-link a {
    color: #22c55e;
    text-decoration: none;
    font-weight: 500;
    font-family: "Inter", "SF Pro Display", system-ui, sans-serif;
    transition: color 0.3s ease;
}

.map-link a:hover {
    color: #16a34a;
    text-decoration: underline;
}

/* Responsive Design for Contact Page */
@media (max-width: 1024px) {
    .contact-hero-container {
        padding: 0 2.5rem;
    }
    
    .contact-info-section .sorbon-container,
    .contact-form-section .sorbon-container {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
    
    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 5rem 0 4rem;
    }
    
    .contact-hero-container {
        padding: 0 1.5rem;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-description {
        font-size: 1.1rem;
    }
    
    .contact-info-section .sorbon-container,
    .contact-form-section .sorbon-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-card,
    .contact-form-container,
    .contact-map-container {
        padding: 2rem;
    }
    
    .map-wrapper {
        height: 300px;
    }
}

/* Prefers Reduced Motion - Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    /* Keep essential transitions but make them instant */
    .swiper-card-button,
    .dashboard-view-btn,
    .nav-link,
    .product-item {
        transition: background-color 0.01ms, color 0.01ms !important;
    }
    
    /* Disable transform animations */
    .swiper-card-button:hover,
    .dashboard-view-btn:hover {
        transform: none !important;
    }
    
    /* Disable floating animations */
    .stat-column::after,
    .awards-scroll-wrapper {
        animation: none !important;
    }
    
    /* Disable fade-in animations */
    .fade-in-up,
    .reveal,
    .animate {
        opacity: 1 !important;
        transform: none !important;
    }
    
    /* Disable modal animations */
    .dashboard-modal {
        transition: opacity 0.01ms !important;
    }
    
    /* Disable image loading animations */
    img:not(.loaded),
    img[data-src]:not(.loaded) {
        animation: none !important;
    }
}
