.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0.75rem 1.25rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(135deg, #69b2dc, #2876a5);
    color: #fff;
    box-shadow: 0 8px 18px rgba(40, 118, 165, 0.28);
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.85);
    color: #fff;
    background: transparent;
}

.btn-dark {
    background: #0d2742;
    color: #fff;
}

.hero {
    position: relative;
    min-height: clamp(520px, 85vh, 720px);
    display: grid;
    align-items: center;
    overflow: hidden;
    background: #061f34;
    isolation: isolate;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(3, 16, 29, 0.9) 0%, rgba(7, 34, 56, 0.75) 45%, rgba(9, 76, 124, 0.6) 100%);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    gap: var(--space-8);
    color: #fff;
    padding: var(--space-10) 0;
}

.hero-content h1,
.hero-content p,
.hero-content h2,
.hero-content h3 {
    color: #fff;
    overflow-wrap: anywhere;
}

.hero-content p {
    max-width: 56ch;
    color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-top: var(--space-5);
}

.hero-meta {
    background: rgba(8, 26, 45, 0.64);
    border: 1px solid rgba(162, 211, 240, 0.38);
    border-radius: var(--radius-md);
    backdrop-filter: blur(5px);
    padding: var(--space-6);
}

.logo-marquee {
    overflow: hidden;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.logo-track {
    display: flex;
    width: max-content;
    gap: var(--space-4);
    padding: var(--space-4);
    animation: logo-scroll 22s linear infinite;
}

.logo-item {
    min-width: 158px;
    background: #fff;
    border-radius: 10px;
    padding: var(--space-3);
    display: grid;
    place-items: center;
}

.logo-item img {
    max-height: 44px;
    width: auto;
}

@keyframes logo-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.highlights-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1100px;
    margin-inline: auto;
}

.highlights-track {
    display: flex;
    transition: transform 0.35s ease;
    width: 100%;
}

.highlight-slide {
    flex: 0 0 100%;
    max-width: 100%;
    display: grid;
    gap: var(--space-6);
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: var(--space-6);
}

.highlight-slide > div {
    width: 100%;
    max-width: 700px;
}

.highlight-slide img {
    max-width: 170px;
    margin-inline: auto;
}

.slider-controls {
    margin-top: var(--space-4);
    display: flex;
    justify-content: center;
    gap: var(--space-3);
}

.slider-controls button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: #fff;
    color: var(--color-secondary);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: var(--space-4);
}

.feature-list li {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-5);
    box-shadow: var(--shadow-soft);
    font-weight: 700;
    color: #113352;
}

.logo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
}

.logo-grid > div {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    min-height: 110px;
    display: grid;
    place-items: center;
    padding: var(--space-4);
}

.offer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
}

.offer-grid > div {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    min-height: 160px;
    display: grid;
    place-items: center;
    padding: var(--space-4);
}

.offer-grid img {
    width: auto;
    max-width: 82%;
    max-height: 130px;
    object-fit: contain;
}

.testimonial-grid {
    display: grid;
    gap: var(--space-5);
}

.testimonial {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-5);
    box-shadow: var(--shadow-soft);
}

.testimonial .stars {
    color: #f5b301;
    letter-spacing: 3px;
}

.video-frame {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
}

.callout {
    background: linear-gradient(130deg, #0d2742, #1d6a94);
    color: #fff;
    border-radius: var(--radius-md);
    padding: var(--space-8);
    display: grid;
    gap: var(--space-4);
}

.callout h2,
.callout p {
    color: #fff;
}

.page-content {
    padding: var(--space-10) 0;
}

.stack {
    display: grid;
    gap: var(--space-5);
}

.info-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-6);
}

.about-hero-grid {
    display: grid;
    gap: var(--space-6);
}

.about-hero-panel {
    background: rgba(8, 26, 45, 0.64);
    border: 1px solid rgba(162, 211, 240, 0.38);
    border-radius: var(--radius-md);
    padding: var(--space-6);
    backdrop-filter: blur(5px);
}

.about-hero-panel h2 {
    font-size: 1.2rem;
}

.about-hero-panel ul {
    margin-bottom: 0;
}

.about-card,
.about-step,
.about-story-card {
    padding: var(--space-6);
}

.about-step-number {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(105, 178, 220, 0.18);
    color: #0f3d58;
    font-weight: 800;
    margin-bottom: var(--space-4);
}

.about-story {
    align-items: center;
}

.about-story-card ul {
    margin-bottom: 0;
}

.metric-grid {
    display: grid;
    gap: var(--space-4);
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.metric-item {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: var(--space-5);
    text-align: center;
}

.metric-item h3 {
    color: #0f3d58;
    margin-bottom: var(--space-2);
}

.about-callout-list {
    margin: 0;
    padding-left: 1.1rem;
}

.about-final-cta {
    text-align: center;
    padding: var(--space-8);
}

.about-final-cta .hero-actions {
    justify-content: center;
}

.about-us-page .page-banner {
    position: relative;
    overflow: hidden;
    background: var(--bgcolor-hero);
    padding: var(--space-16) 0;
}

.about-us-page .page-banner::before,
.about-us-page .page-banner::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.28;
    animation: float 6s ease-in-out infinite;
}

.about-us-page .page-banner::before {
    width: 300px;
    height: 300px;
    top: -110px;
    right: -70px;
    background: #ffd166;
}

.about-us-page .page-banner::after {
    width: 220px;
    height: 220px;
    bottom: -90px;
    left: -55px;
    background: #70e000;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.about-us-page .page-banner .container {
    position: relative;
    z-index: 1;
}

.about-us-page .page-banner h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: var(--space-6);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.about-us-page .page-content {
    background: var(--bgcolor);
}

.about-main-card {
    border: 1px solid rgba(49, 130, 206, 0.2);
    background: linear-gradient(145deg, #ffffff 0%, #f2f8ff 48%, #e9f4ff 100%);
    box-shadow: 0 14px 28px rgba(26, 54, 93, 0.12);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-main-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.18);
}

.about-main-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    background: linear-gradient(90deg, #63b3ed 0%, #3182ce 45%, #2c5282 100%);
}

.about-main-card::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-main-card:hover::after {
    opacity: 1;
}

.about-story-card h3 {
    color: #0f3d58;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-4);
    position: relative;
    padding-left: var(--space-4);
}

.about-story-card h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, #63b3ed 0%, #2c5282 100%);
    border-radius: 2px;
}

.about-story-card p {
    line-height: 1.7;
    margin-bottom: var(--space-4);
    color: #4a5568;
}

.about-main-card p:last-child {
    margin-bottom: 0;
    color: #1a365d;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    padding: var(--space-4) 0;
    border-top: 1px solid rgba(49, 130, 206, 0.2);
    margin-top: var(--space-4);
}

.about-callout {
    background: linear-gradient(125deg, #1a365d 0%, #2c5282 52%, #3182ce 100%);
    box-shadow: 0 16px 34px rgba(26, 54, 93, 0.26);
    position: relative;
    overflow: hidden;
}

.about-callout::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-callout .btn-primary {
    background: linear-gradient(135deg, #4299e1 0%, #2c5282 100%);
    box-shadow: 0 8px 18px rgba(44, 82, 130, 0.34);
    position: relative;
    z-index: 1;
}

.about-callout .btn-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(44, 82, 130, 0.45);
}

.about-callout h2,
.about-callout p {
    color: #fff;
    position: relative;
    z-index: 1;
}

.about-callout h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: var(--space-3);
}

.about-hero-grid {
    display: grid;
    gap: var(--space-8);
    text-align: center;
}

.about-hero-panel {
    background: rgba(8, 26, 45, 0.64);
    border: 1px solid rgba(162, 211, 240, 0.38);
    border-radius: var(--radius-md);
    padding: var(--space-6);
    backdrop-filter: blur(5px);
    max-width: 600px;
    margin: 0 auto;
}

.about-hero-panel h2 {
    font-size: 1.4rem;
    margin-bottom: var(--space-3);
    color: #fff;
}

.about-hero-panel p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* UAD3 Page Professional Card Styling */
.uad3-page .page-banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, #1a365d 0%, #2c5282 40%, #3182ce 100%);
    padding: var(--space-16) 0;
}

.uad3-page .page-banner::before,
.uad3-page .page-banner::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.28;
    animation: float 6s ease-in-out infinite;
}

.uad3-page .page-banner::before {
    width: 300px;
    height: 300px;
    top: -110px;
    right: -70px;
    background: #4299e1;
}

.uad3-page .page-banner::after {
    width: 220px;
    height: 220px;
    bottom: -90px;
    left: -55px;
    background: #63b3ed;
    animation-delay: 3s;
}

.uad3-page .page-banner .container {
    position: relative;
    z-index: 1;
}

.uad3-page .page-banner h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: var(--space-6);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.uad3-page .page-content {
    background:
        radial-gradient(circle at 10% 15%, rgba(66, 153, 225, 0.1), transparent 45%),
        radial-gradient(circle at 90% 80%, rgba(49, 130, 206, 0.12), transparent 42%),
        linear-gradient(180deg, #f0f9ff 0%, #e6f7ff 100%);
    padding: var(--space-12) 0;
}

.uad3-hero-grid {
    display: grid;
    gap: var(--space-8);
    text-align: center;
}

.uad3-hero-panel {
    background: rgba(26, 54, 93, 0.64);
    border: 1px solid rgba(99, 179, 237, 0.38);
    border-radius: var(--radius-md);
    padding: var(--space-6);
    backdrop-filter: blur(5px);
    max-width: 600px;
    margin: 0 auto;
}

.uad3-hero-panel h2 {
    font-size: 1.4rem;
    margin-bottom: var(--space-3);
    color: #fff;
}

.uad3-hero-panel p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* Professional Cards Grid */
.uad3-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-12);
}

.uad3-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(49, 130, 206, 0.1);
    position: relative;
}

.uad3-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.15);
    border-color: rgba(49, 130, 206, 0.2);
}

.uad3-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3182ce 0%, #2c5282 100%);
}

.uad3-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-6);
    background: linear-gradient(135deg, rgba(49, 130, 206, 0.05) 0%, rgba(26, 54, 93, 0.05) 100%);
    border-bottom: 1px solid rgba(49, 130, 206, 0.1);
}

.icon-shift, .icon-milestone, .icon-features {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(49, 130, 206, 0.3);
}

.uad3-card-content {
    padding: var(--space-6);
}

.uad3-card-content h3 {
    color: #1a365d;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: var(--space-4);
    line-height: 1.3;
}

.uad3-card-content p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

/* Timeline Styling */
.uad3-timeline {
    display: grid;
    gap: var(--space-3);
}

.uad3-timeline-item {
    display: flex;
    gap: var(--space-3);
    align-items: flex-start;
    padding: var(--space-3);
    background: rgba(49, 130, 206, 0.05);
    border-radius: var(--radius-sm);
    border-left: 3px solid #3182ce;
    transition: all 0.3s ease;
}

.uad3-timeline-item:hover {
    background: rgba(49, 130, 206, 0.1);
    transform: translateX(5px);
}

.timeline-date {
    min-width: 100px;
    font-weight: 700;
    color: #2c5282;
    font-size: 0.9rem;
}

.timeline-content {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Comparison Styling */
.uad3-comparison {
    display: grid;
    gap: var(--space-3);
}

.uad3-comparison-item {
    padding: var(--space-3);
    background: rgba(49, 130, 206, 0.05);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(49, 130, 206, 0.15);
    transition: all 0.3s ease;
}

.uad3-comparison-item:hover {
    background: rgba(49, 130, 206, 0.1);
    border-color: rgba(49, 130, 206, 0.25);
    transform: translateX(3px);
}

.uad3-comparison-item strong {
    color: #2c5282;
}

/* Features Styling */
.uad3-features {
    display: grid;
    gap: var(--space-3);
}

.uad3-feature-item {
    display: flex;
    gap: var(--space-3);
    align-items: flex-start;
    padding: var(--space-3);
    background: rgba(49, 130, 206, 0.05);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.uad3-feature-item:hover {
    background: rgba(49, 130, 206, 0.1);
    transform: translateX(3px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
    color: white;
    flex-shrink: 0;
}

.feature-text {
    color: #4a5568;
    line-height: 1.5;
}

.feature-text strong {
    color: #2c5282;
    display: block;
    margin-bottom: var(--space-1);
}

/* Main Services Section */
.uad3-main-services {
    margin-top: var(--space-12);
}

.uad3-services-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 35px rgba(26, 54, 93, 0.12);
    overflow: hidden;
    border: 1px solid rgba(49, 130, 206, 0.1);
}

.services-header {
    text-align: center;
    padding: var(--space-8);
    background: linear-gradient(135deg, rgba(49, 130, 206, 0.05) 0%, rgba(26, 54, 93, 0.05) 100%);
    border-bottom: 1px solid rgba(49, 130, 206, 0.1);
}

.services-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
    color: white;
    margin: 0 auto var(--space-4);
    box-shadow: 0 10px 25px rgba(49, 130, 206, 0.3);
}

.services-header h2 {
    color: #1a365d;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: var(--space-3);
}

.services-header p {
    color: #4a5568;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-content {
    padding: var(--space-8);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-6);
}

.service-item {
    background: #fff;
    border: 1px solid rgba(49, 130, 206, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-6);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(26, 54, 93, 0.1);
    border-color: rgba(49, 130, 206, 0.2);
}

.service-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3182ce 0%, #2c5282 100%);
}

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
    color: white;
    margin-bottom: var(--space-4);
    box-shadow: 0 6px 15px rgba(49, 130, 206, 0.3);
}

.service-item h3 {
    color: #1a365d;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: var(--space-3);
}

.service-item p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

.service-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-item ul li {
    padding: var(--space-2) 0;
    color: #4a5568;
    border-bottom: 1px solid rgba(49, 130, 206, 0.1);
    transition: all 0.3s ease;
}

.service-item ul li:last-child {
    border-bottom: none;
}

.service-item ul li:hover {
    color: #2c5282;
    padding-left: var(--space-2);
}

/* Services Page - Third Distinct Design */
.services-page-new {
    background: var(--bgcolor);
    min-height: 100vh;
}

/* Hero Section */
.hero-section-new {
    position: relative;
    overflow: hidden;
    background: var(--bgcolor-hero);
    padding: var(--space-20) 0 var(--space-16);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(49, 130, 206, 0.35) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(44, 82, 130, 0.35) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(99, 179, 237, 0.28) 0%, transparent 50%);
    opacity: 0.7;
    animation: patternMove 20s ease-in-out infinite;
}

@keyframes patternMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-30px, -30px) rotate(120deg); }
    66% { transform: translate(30px, -30px) rotate(240deg); }
}

.hero-content-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    align-items: center;
    max-width: 1200px;
    position: relative;
    z-index: 2;
}

.hero-text-new h1 {
    color: #fff;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: var(--space-4);
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
}

.hero-text-new p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
}

.hero-visual-new {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    margin: var(--space-6) 0;
}

.floating-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    animation: float 6s ease-in-out infinite;
}

.icon-1 { animation-delay: 0s; }
.icon-2 { animation-delay: 2s; }
.icon-3 { animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-buttons-new {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    margin-top: var(--space-8);
}

.btn-primary-new {
    background: linear-gradient(135deg, #4299e1 0%, #2c5282 100%);
    color: #fff;
    padding: var(--space-4) var(--space-8);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(44, 82, 130, 0.35);
}

.btn-primary-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(44, 82, 130, 0.45);
}

.btn-secondary-new {
    background: transparent;
    color: #fff;
    padding: var(--space-4) var(--space-8);
    border: 2px solid #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-secondary-new:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

/* Features Section */
.features-section-new {
    padding: var(--space-16) 0;
    background: var(--bgcolor);
}

.section-header-new {
    text-align: center;
    margin-bottom: var(--space-12);
}

.section-header-new h2 {
    color: #1a365d;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--space-3);
}

.section-header-new p {
    color: #1e293b;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-8);
}

.feature-item-new {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.feature-item-new::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #63b3ed 50%, transparent 100%);
}

.feature-1 { border-color: rgba(49, 130, 206, 0.18); }
.feature-1::before { background: linear-gradient(90deg, transparent 0%, #63b3ed 50%, transparent 100%); }

.feature-2 { border-color: rgba(44, 82, 130, 0.18); }
.feature-2::before { background: linear-gradient(90deg, transparent 0%, #4299e1 50%, transparent 100%); }

.feature-3 { border-color: rgba(66, 153, 225, 0.18); }
.feature-3::before { background: linear-gradient(90deg, transparent 0%, #3182ce 50%, transparent 100%); }

.feature-4 { border-color: rgba(99, 179, 237, 0.18); }
.feature-4::before { background: linear-gradient(90deg, transparent 0%, #2c5282 50%, transparent 100%); }

.feature-item-new:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.2);
}

.feature-number {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(49, 130, 206, 0.16);
    z-index: 1;
}

.feature-content {
    position: relative;
    z-index: 2;
}

.feature-icon-new {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto var(--space-4);
    background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(49, 130, 206, 0.35);
}

.feature-item-new h3 {
    color: #1e293b;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: var(--space-3);
}

.feature-item-new p {
    color: #1e293b;
    line-height: 1.6;
}

/* Stats Section */
.stats-section-new {
    padding: var(--space-16) 0;
    background: linear-gradient(135deg, rgba(49, 130, 206, 0.1) 0%, rgba(66, 153, 225, 0.1) 100%);
}

.stats-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-6);
}

.stat-item-new {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-item-new::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #63b3ed 0%, #3182ce 50%, #2c5282 100%);
}

.stat-item-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(26, 54, 93, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #1a365d;
    margin-bottom: var(--space-2);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: var(--space-1);
}

.stat-desc {
    font-size: 0.95rem;
    color: #374151;
}

/* Process Section */
.process-section-new {
    padding: var(--space-16) 0;
    background: rgba(255, 255, 255, 0.3);
}

.process-timeline-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
}

.process-item-new {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 4px solid #3182ce;
}

.process-item-new:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 25px rgba(26, 54, 93, 0.2);
}

.process-step {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4299e1 0%, #2c5282 100%);
    color: white;
    box-shadow: 0 6px 15px rgba(44, 82, 130, 0.35);
}

.process-content {
    margin-left: 70px;
}

.process-item-new h3 {
    color: #1e293b;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: var(--space-3);
}

.process-item-new p {
    color: #1e293b;
    line-height: 1.6;
}

/* Services Detail Section */
.services-detail-section-new {
    padding: var(--space-16) 0;
    background: linear-gradient(135deg, rgba(66, 153, 225, 0.1) 0%, rgba(49, 130, 206, 0.1) 100%);
}

.services-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-8);
}

.service-card-new {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card-new::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #63b3ed 0%, #3182ce 50%, #2c5282 100%);
}

.service-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(26, 54, 93, 0.15);
}

.service-header-new {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.service-icon-large {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #4299e1 0%, #2c5282 100%);
    color: white;
    box-shadow: 0 6px 15px rgba(44, 82, 130, 0.3);
}

.service-card-new h3 {
    color: #1e293b;
    font-size: 1.3rem;
    font-weight: 700;
}

.service-card-new ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card-new li {
    padding: var(--space-2) 0;
    color: #1e293b;
    border-bottom: 1px solid rgba(49, 130, 206, 0.15);
    transition: all 0.3s ease;
}

.service-card-new li:last-child {
    border-bottom: none;
}

.service-card-new li:hover {
    color: #2c5282;
    padding-left: var(--space-2);
}

/* CTA Section */
.cta-section-new {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 55%, #3182ce 100%);
    color: #fff;
}

.cta-content-new {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content-new h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: var(--space-4);
}

.cta-content-new p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: var(--space-8);
}

.cta-buttons-new {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: var(--space-5) var(--space-10);
    font-size: 1.2rem;
}

/* Responsive Design for New Services Page */
@media only screen and (max-width: 768px) {
    .hero-content-new {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .hero-text-new h1 {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
    
    .hero-text-new p {
        font-size: 1.1rem;
    }
    
    .features-grid-new {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .stats-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }
    
    .process-timeline-new {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .services-grid-new {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .process-content {
        margin-left: 0;
        margin-top: 60px;
    }
}

@media only screen and (max-width: 480px) {
    .hero-section-new {
        padding: var(--space-16) 0 var(--space-12);
    }
    
    .hero-visual-new {
        flex-direction: column;
        gap: var(--space-4);
    }
    
    .floating-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .stats-grid-new {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons-new {
        flex-direction: column;
        align-items: center;
    }
}

/* Responsive Design for UAD3 Page */
@media only screen and (max-width: 768px) {
    .uad3-page .page-banner {
        padding: var(--space-12) 0;
    }
    
    .uad3-page .page-banner h1 {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: var(--space-4);
    }
    
    .uad3-hero-panel {
        padding: var(--space-4);
        max-width: 100%;
    }
    
    .uad3-hero-panel h2 {
        font-size: 1.2rem;
    }
    
    .uad3-hero-panel p {
        font-size: 1rem;
    }
    
    .uad3-main-card {
        padding: var(--space-4);
    }
    
    .uad3-section-card h3 {
        font-size: 1.3rem;
        padding-left: var(--space-3);
    }
    
    .uad3-section-card h3::before {
        width: 3px;
        height: 20px;
    }
    
    .uad3-section-card h2 {
        font-size: 1.5rem;
    }
    
    .uad3-section-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

@media only screen and (max-width: 480px) {
    .uad3-page .page-banner {
        padding: var(--space-8) 0;
    }
    
    .uad3-page .page-banner::before,
    .uad3-page .page-banner::after {
        display: none;
    }
    
    .uad3-hero-panel {
        padding: var(--space-3);
    }
    
    .uad3-main-card {
        padding: var(--space-3);
    }
    
    .uad3-section-card h3 {
        font-size: 1.2rem;
    }
    
    .uad3-section-card h2 {
        font-size: 1.3rem;
    }
}

/* Responsive Design for About Us Page */
@media only screen and (max-width: 768px) {
    .about-us-page .page-banner {
        padding: var(--space-12) 0;
    }
    
    .about-us-page .page-banner h1 {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: var(--space-4);
    }
    
    .about-hero-panel {
        padding: var(--space-4);
        max-width: 100%;
    }
    
    .about-hero-panel h2 {
        font-size: 1.2rem;
    }
    
    .about-hero-panel p {
        font-size: 1rem;
    }
    
    .about-main-card {
        padding: var(--space-4);
    }
    
    .about-story-card h3 {
        font-size: 1.3rem;
        padding-left: var(--space-3);
    }
    
    .about-story-card h3::before {
        width: 3px;
        height: 20px;
    }
    
    .about-story-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .about-callout {
        padding: var(--space-6);
    }
    
    .about-callout h2 {
        font-size: 1.5rem;
    }
    
    .about-callout .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

@media only screen and (max-width: 480px) {
    .about-us-page .page-banner {
        padding: var(--space-8) 0;
    }
    
    .about-us-page .page-banner::before,
    .about-us-page .page-banner::after {
        display: none;
    }
    
    .about-hero-panel {
        padding: var(--space-3);
    }
    
    .about-main-card {
        padding: var(--space-3);
    }
    
    .about-story-card h3 {
        font-size: 1.2rem;
    }
    
    .about-callout {
        padding: var(--space-4);
    }
    
    .about-callout h2 {
        font-size: 1.3rem;
    }
}

.tab-controls {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: var(--space-5);
}

.tab-btn {
    border: 1px solid var(--color-border);
    background: #fff;
    color: var(--color-secondary);
    border-radius: 999px;
    padding: 0.6rem 1rem;
    font-weight: 700;
}

.tab-btn.active {
    background: #69b2dc;
    border-color: #69b2dc;
    color: #fff;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.faq-list {
    display: grid;
    gap: var(--space-4);
}

.faq-item {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: #fff;
    border: 0;
    padding: var(--space-5);
    font-weight: 700;
    color: #113352;
    display: flex;
    justify-content: space-between;
    gap: var(--space-3);
}

.faq-answer {
    padding: 0 var(--space-5) var(--space-5);
    color: var(--color-text);
    display: none;
}

.faq-item.open .faq-answer {
    display: block;
}

.pricing-select {
    max-width: 320px;
}

.price-highlight {
    color: #6ab2dc;
}

.form-grid {
    display: grid;
    gap: var(--space-4);
}

.form-grid input,
.form-grid textarea,
.form-grid select {
    width: 100%;
    border: 1px solid #bdd2e4;
    border-radius: var(--radius-sm);
    padding: 0.75rem 0.9rem;
    background: #fff;
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: grid;
    place-items: center;
    padding: var(--space-4);
    z-index: 2200;
}

.modal-box {
    width: min(100%, 420px);
    background: #fff;
    border-radius: var(--radius-md);
    padding: var(--space-6);
    box-shadow: var(--shadow-medium);
}

.is-hidden {
    display: none;
}

.state-table td,
.state-table th {
    border: 1px solid #dbe7f1;
    padding: 0.6rem 0.75rem;
}

/* Stylish FAQ Section */
.faq-page-v2 {
    background: var(--bgcolor);
    padding: var(--space-12) 0;
    position: relative;
    overflow: hidden;
}

.workflow-banner,
.faq-banner {
    background: var(--bgcolor-hero);
}

.workflow-content {
    background: var(--bgcolor);
}

.faq-page-v2::before {
    content: """";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(49, 130, 206, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.faq-page-v2::after {
    content: """";
    position: absolute;
    bottom: -100px;
    left: -50px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(143, 57, 133, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.faq-grid-new {
    display: grid;
    gap: var(--space-5);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-card-new {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 25px rgba(26, 54, 93, 0.08);
    border: 1px solid rgba(49, 130, 206, 0.15);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

.faq-card-new::before {
    content: """";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #3182ce 0%, #8f3985 100%);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.faq-card-new:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(26, 54, 93, 0.15);
    border-color: rgba(49, 130, 206, 0.3);
}

.faq-card-new:hover::before {
    opacity: 1;
}

.faq-card-new .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    padding: var(--space-5) var(--space-6);
    background: none;
    border: none;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a365d;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-card-new .faq-question:hover,
.faq-card-new .faq-question[aria-expanded="true"] {
    color: #3182ce;
}

.faq-card-new .faq-question span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(49, 130, 206, 0.1);
    color: #3182ce;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: var(--space-4);
}

.faq-card-new .faq-question:hover span,
.faq-card-new .faq-question[aria-expanded="true"] span {
    background: linear-gradient(135deg, #3182ce 0%, #8f3985 100%);
    color: white;
    transform: rotate(180deg);
}

.faq-card-new .faq-answer {
    padding: 0 var(--space-6);
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0;
    color: #4a5568;
    line-height: 1.7;
}

.faq-card-new.open .faq-answer {
    display: block;
    padding: var(--space-2) var(--space-6) var(--space-5);
    max-height: 2000px;
    opacity: 1;
}

.faq-card-new .faq-answer a {
    color: #3182ce;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.faq-card-new .faq-answer a:hover {
    color: #8f3985;
    text-decoration: underline;
}

.faq-card-new .faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-card-new .faq-answer ul li {
    position: relative;
    padding-left: var(--space-6);
    margin-bottom: var(--space-2);
}

.faq-card-new .faq-answer ul li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: #3182ce;
}
