/* ANC Services Pro Ltd - Main Stylesheet */

:root {
    --primary: #0A2540;
    --primary-light: #0F3460;
    --secondary: #0066FF;
    --secondary-dark: #0052CC;
    --accent: #FF6B00;
    --accent-light: #FF8533;
    --accent-dark: #E55D00;
    --white: #FFFFFF;
    --bg-light: #F7F9FC;
    --bg-gray: #EEF2F7;
    --text: #2D3748;
    --text-light: #5A6578;
    --text-muted: #8896A8;
    --border: #E2E8F0;
    --shadow-sm: 0 1px 3px rgba(10, 37, 64, 0.08);
    --shadow-md: 0 4px 20px rgba(10, 37, 64, 0.1);
    --shadow-lg: 0 10px 40px rgba(10, 37, 64, 0.14);
    --radius: 10px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --header-height: 68px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 15px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.65;
    background: var(--white);
    overflow-x: hidden;
    font-size: 0.9375rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent);
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(1.625rem, 3.5vw, 2.375rem); }
h2 { font-size: clamp(1.375rem, 2.8vw, 1.875rem); }
h3 { font-size: clamp(1.0625rem, 2vw, 1.1875rem); }

p { margin-bottom: 0.875rem; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 64px 0;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 44px;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

.bg-light { background: var(--bg-light); }
.bg-primary { background: var(--primary); color: var(--white); }
.bg-primary h2, .bg-primary h3 { color: var(--white); }
.bg-primary p { color: rgba(255,255,255,0.85); }

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--accent);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 0 0 8px 8px;
    z-index: 10000;
    font-weight: 600;
}

.skip-link:focus { top: 0; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 26px;
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1.4;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 107, 0, 0.35);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-outline-dark {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-dark:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-group { display: flex; flex-wrap: wrap; gap: 16px; }

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: box-shadow var(--transition);
}

.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo img { height: 38px; width: auto; }

.logo-icon-only { display: none; }

.logo-full { display: block; max-width: 180px; }

.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 37, 64, 0.45);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--transition);
}

.nav-backdrop.visible {
    display: block;
    opacity: 1;
}

body.nav-open { overflow: hidden; }

.cards-grid--two {
    grid-template-columns: repeat(2, 1fr);
}

.section-cta {
    text-align: center;
    margin-top: 36px;
}

.section-cta--lg { margin-top: 40px; }

.main-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a {
    display: block;
    padding: 7px 12px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text);
    border-radius: 6px;
    transition: all var(--transition);
}

.main-nav a:hover, .main-nav a.active { color: var(--secondary); }
.main-nav a.active { font-weight: 600; }

.nav-cta {
    background: var(--accent) !important;
    color: var(--white) !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
}

.nav-cta:hover {
    background: var(--accent-dark) !important;
    color: var(--white) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.hero {
    padding: calc(var(--header-height) + 48px) 0 72px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 55%, #0F4C8A 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 { color: var(--white); margin-bottom: 20px; }
.hero-content h1 span { color: var(--accent-light); }

.hero-content p {
    color: rgba(255,255,255,0.85);
    font-size: 0.9375rem;
    margin-bottom: 28px;
    max-width: 480px;
}

.hero-visual img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    width: 100%;
    aspect-ratio: 4/3;
}

.hero-stats {
    display: flex;
    gap: 28px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.375rem;
    color: var(--accent-light);
}

.hero-stat span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.65);
}

.page-hero {
    padding: calc(var(--header-height) + 36px) 0 36px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    text-align: center;
}

.page-hero h1 { color: var(--white); margin-bottom: 10px; }

.page-hero p {
    color: rgba(255,255,255,0.85);
    font-size: 0.9375rem;
    max-width: 540px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.875rem;
}

.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--accent-light); }
.breadcrumb span { color: rgba(255,255,255,0.5); }

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.cards-grid .card {
    position: relative;
    overflow: hidden;
}

.cards-grid .card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--secondary), transparent);
    transition: left 0.6s ease;
}

.cards-grid .card:hover::after {
    left: 100%;
}

.card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.25rem;
}

.card h3 { margin-bottom: 10px; font-size: 1rem; }

.card p {
    color: var(--text-light);
    margin-bottom: 14px;
    font-size: 0.8125rem;
    line-height: 1.6;
}

.card-link {
    font-weight: 600;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.card-link::after {
    content: '→';
    transition: transform var(--transition);
}

.card-link:hover::after { transform: translateX(4px); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.feature-item { text-align: center; padding: 28px 16px; }

.feature-icon {
    width: 52px;
    height: 52px;
    background: rgba(0, 102, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.375rem;
}

.feature-item h3 { font-size: 0.875rem; margin-bottom: 6px; }

.feature-item p {
    font-size: 0.8125rem;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.55;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 16px;
}

.process-step { text-align: center; }

.process-number {
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    margin: 0 auto 10px;
}

.process-step h4 {
    font-size: 0.8125rem;
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: 3px;
}

.process-step p {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.industry-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.industry-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.industry-icon { font-size: 2.5rem; margin-bottom: 16px; }
.industry-card h3 { margin-bottom: 8px; }

.industry-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

.cta-section {
    padding: 64px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    text-align: center;
}

.cta-section h2 { color: var(--white); margin-bottom: 12px; }

.cta-section p {
    color: rgba(255,255,255,0.85);
    font-size: 0.9375rem;
    max-width: 520px;
    margin: 0 auto 28px;
}

.about-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-preview img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    object-fit: cover;
    width: 100%;
    aspect-ratio: 4/3;
}

.check-list { margin: 24px 0; }

.check-list li {
    padding: 8px 0 8px 32px;
    position: relative;
    color: var(--text);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.tech-category { margin-bottom: 48px; }

.tech-category h3 {
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.tech-tags { display: flex; flex-wrap: wrap; gap: 12px; }

.tech-tag {
    background: var(--bg-light);
    border: 1px solid var(--border);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all var(--transition);
}

.tech-tag:hover {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--white);
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary);
    text-align: left;
    transition: background var(--transition);
}

.faq-question:hover { background: var(--bg-light); }

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent);
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-question::after { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    color: var(--text-light);
}

.faq-item.active .faq-answer { max-height: 300px; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
}

.contact-info-card {
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-info-card h3 { color: var(--white); margin-bottom: 24px; }

.contact-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 0, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.contact-detail a { color: var(--accent-light); }
.contact-detail a:hover { color: var(--white); }
.contact-detail p { margin-bottom: 0; color: rgba(255,255,255,0.85); }

.contact-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.12);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-message {
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}

.form-message.success {
    background: #ECFDF5;
    color: #065F46;
    border: 1px solid #A7F3D0;
}

.form-message.error {
    background: #FEF2F2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 48px;
    border: 1px solid var(--border);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}

.service-block:nth-child(even) { direction: rtl; }
.service-block:nth-child(even) > * { direction: ltr; }
.service-block:last-child { border-bottom: none; }

.service-block img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    object-fit: cover;
    width: 100%;
    aspect-ratio: 4/3;
}

.service-benefits { margin: 20px 0; }

.service-benefits li {
    padding: 6px 0 6px 28px;
    position: relative;
    color: var(--text-light);
}

.service-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.tech-used {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0 24px;
}

.tech-used span {
    background: var(--bg-light);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--primary);
}

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

.value-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.value-card .feature-icon { background: rgba(255, 107, 0, 0.08); }

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0 80px;
}

.legal-content h2 { font-size: 1.5rem; margin: 32px 0 12px; }
.legal-content h3 { font-size: 1.25rem; margin: 24px 0 8px; }
.legal-content p, .legal-content li { color: var(--text-light); }

.legal-content ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}

.site-footer {
    background: var(--primary);
    color: rgba(255,255,255,0.8);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo { margin-bottom: 16px; }
.footer-desc { font-size: 0.9375rem; margin-bottom: 12px; }
.footer-reg { font-size: 0.8125rem; color: rgba(255,255,255,0.5); }

.footer-col h3 {
    color: var(--white);
    font-size: 1.0625rem;
    margin-bottom: 20px;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
}

.footer-col a:hover { color: var(--accent-light); }
.footer-contact li { font-size: 0.9375rem; line-height: 1.6; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.875rem;
}

.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,0.6); }
.footer-legal a:hover { color: var(--accent-light); }

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner[hidden] { display: none; }

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-content p { margin-bottom: 0; font-size: 0.9375rem; }
.cookie-content a { color: var(--accent-light); }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ── Lively animations & tech stack ── */

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

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.25); }
    50% { box-shadow: 0 0 20px 4px rgba(0, 102, 255, 0.15); }
}

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

@keyframes orbit-spin {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.float-animation { animation: float 5s ease-in-out infinite; }

.hero-visual { position: relative; }

.hero-visual-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.2) 0%, rgba(0, 102, 255, 0.1) 50%, transparent 70%);
    border-radius: var(--radius-lg);
    z-index: -1;
    animation: pulse-glow 4s ease-in-out infinite;
}

.section--mesh { position: relative; overflow: hidden; }

.section--mesh::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(0, 102, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 107, 0, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.tech-marquee-section {
    background: var(--primary);
    padding: 20px 0;
    overflow: hidden;
    border-top: 2px solid var(--accent);
    border-bottom: 2px solid rgba(0, 102, 255, 0.4);
}

.marquee-label {
    text-align: center;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
    padding: 0 24px;
}

.tech-marquee {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.tech-marquee-track {
    display: flex;
    gap: 48px;
    width: max-content;
    animation: marquee-scroll 35s linear infinite;
}

.tech-marquee:hover .tech-marquee-track { animation-play-state: paused; }

.marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition);
}

.marquee-item:hover {
    background: rgba(255, 107, 0, 0.15);
    border-color: rgba(255, 107, 0, 0.4);
    transform: scale(1.05);
}

.marquee-item img { width: 28px; height: 28px; object-fit: contain; }

.marquee-item span {
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
}

.tech-category-block { margin-bottom: 40px; }

.tech-category-title {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary);
    margin-bottom: 16px;
    padding-left: 12px;
    border-left: 3px solid var(--accent);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 16px;
}

.tech-grid--home { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }

.tech-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tech-card:hover {
    transform: translateY(-6px) scale(1.03);
    border-color: var(--secondary);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.12);
}

.tech-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.06), rgba(255, 107, 0, 0.06));
    border-radius: 12px;
    transition: all var(--transition);
}

.tech-card:hover .tech-card-icon {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.12), rgba(255, 107, 0, 0.12));
    transform: scale(1.1);
}

.tech-card-icon img { width: 36px; height: 36px; object-fit: contain; }

.tech-card-name {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
}

.page-hero--tech { position: relative; overflow: hidden; }

.hero-tech-orbit {
    position: absolute;
    top: 50%;
    right: 8%;
    width: 200px;
    height: 200px;
    animation: orbit-spin 30s linear infinite;
    opacity: 0.15;
    pointer-events: none;
}

.hero-tech-orbit img {
    position: absolute;
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.hero-tech-orbit img:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.hero-tech-orbit img:nth-child(2) { top: 25%; right: 0; }
.hero-tech-orbit img:nth-child(3) { bottom: 25%; right: 0; }
.hero-tech-orbit img:nth-child(4) { bottom: 0; left: 50%; transform: translateX(-50%); }
.hero-tech-orbit img:nth-child(5) { bottom: 25%; left: 0; }
.hero-tech-orbit img:nth-child(6) { top: 25%; left: 0; }
.hero-tech-orbit img:nth-child(7) { top: 15%; left: 25%; }
.hero-tech-orbit img:nth-child(8) { top: 15%; right: 25%; }

.card--glow { position: relative; overflow: hidden; }

.card--glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--secondary), transparent);
    transition: left 0.5s ease;
}

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

.card:hover .card-icon { transform: scale(1.1) rotate(-3deg); }

.card-icon { transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); }

.card-icon--pulse { animation: pulse-glow 3s ease-in-out infinite; }

.industry-card { transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); }

.industry-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 12px 32px rgba(255, 107, 0, 0.12);
}

.industry-card:hover .industry-icon { transform: scale(1.2); }

.industry-icon { transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); display: inline-block; }

.feature-item { transition: transform var(--transition); }
.feature-item:hover { transform: translateY(-4px); }
.feature-item:hover .feature-icon { background: rgba(255, 107, 0, 0.12); transform: scale(1.08); }

.process-step { transition: transform var(--transition); }
.process-step:hover { transform: translateY(-4px); }
.process-step:hover .process-number { background: var(--secondary); transform: scale(1.15); }
.process-number { transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); }

.stagger-item { transition-delay: var(--delay, 0ms); }

.cta-section--animated {
    background: linear-gradient(-45deg, var(--secondary), var(--primary), #0F4C8A, var(--accent-dark));
    background-size: 400% 400%;
    animation: gradient-shift 12s ease infinite;
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.check-list li { transition: transform var(--transition), padding-left var(--transition); }
.check-list li:hover { transform: translateX(4px); padding-left: 36px; }

/* Company legal / trading name */
.company-legal-notice {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.06), rgba(255, 107, 0, 0.06));
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin-bottom: 20px;
}

.company-legal-name {
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--primary);
    margin-bottom: 4px;
}

.company-trading-as {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.company-trading-as strong {
    color: var(--secondary);
}

.company-reg-no {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 0;
}
