@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --brand-orange: #FF8C00;
    --brand-orange-hover: #E67300;
    --brand-teal: #2EC4B6;
    --dark-charcoal: #1A1A1A;
    --medium-grey: #333333;
    --light-grey: #F0F0F0;
    --white: #FFFFFF;
    --font-primary: 'Montserrat', Arial, sans-serif;
    --header-height: 80px;
    --header-height-mobile: 64px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--medium-grey);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

section {
    padding: 80px 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-charcoal);
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }

p {
    font-size: 16px;
    margin-bottom: 16px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: var(--dark-charcoal);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: var(--dark-charcoal);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    height: 70px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo {
    display: flex;
    align-items: center;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--brand-orange);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--brand-orange);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.customers-login {
    color: var(--light-grey);
    font-size: 14px;
    transition: color 0.3s ease;
}

.customers-login:hover {
    color: var(--brand-orange);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger {
    width: 28px;
    height: 20px;
    position: relative;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--white);
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }

.hamburger.active span:nth-child(1) {
    top: 9px;
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    top: 9px;
    transform: rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--dark-charcoal);
    padding: 100px 40px 40px;
    transition: right 0.4s ease;
    z-index: 999;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 998;
}

.mobile-menu-overlay.active {
    opacity: 1;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav-links a {
    color: var(--white);
    font-size: 20px;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
    color: var(--brand-orange);
}

.mobile-cta {
    margin-top: 32px;
}

.mobile-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: var(--brand-orange-hover);
    border-color: var(--brand-orange-hover);
    transform: scale(1.03);
    box-shadow: 0 4px 20px rgba(255, 140, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--dark-charcoal);
    border-color: var(--brand-orange);
}

.btn-secondary:hover {
    background: var(--brand-orange);
    color: var(--white);
    transform: scale(1.02);
}

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

.btn-white:hover {
    background: var(--light-grey);
    transform: scale(1.02);
}

/* Hero Sections */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0.6) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 24px;
    font-size: 56px;
    font-weight: 700;
}

.hero p {
    color: var(--light-grey);
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero .btn-primary {
    padding: 18px 48px;
    font-size: 16px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    opacity: 0.7;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Progress Bar */
.scroll-progress {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 100px;
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
    z-index: 100;
    display: none;
}

.scroll-progress-bar {
    width: 100%;
    background: var(--brand-teal);
    border-radius: 3px;
    transition: height 0.1s ease;
}

/* Sections */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    color: var(--medium-grey);
    font-size: 18px;
}

/* Value Proposition Section */
.value-prop {
    background: var(--light-grey);
}

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

.value-prop-content h2 {
    margin-bottom: 24px;
}

.value-prop-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.differentiators {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.differentiator {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.differentiator-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--brand-teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.differentiator-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.differentiator-text h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.differentiator-text p {
    font-size: 15px;
    margin-bottom: 0;
}

.value-prop-image img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* Expertise Section */
.expertise {
    background: var(--dark-charcoal);
    position: relative;
    overflow: hidden;
}

.expertise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 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='%232EC4B6' 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");
    opacity: 0.5;
}

.expertise h2 {
    color: var(--white);
    position: relative;
}

.expertise p {
    color: var(--light-grey);
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
    position: relative;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 64px;
    font-weight: 700;
    color: var(--brand-orange);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--light-grey);
    font-size: 18px;
    font-weight: 500;
}

.expertise .btn-secondary {
    margin-top: 48px;
    color: var(--white);
    border-color: var(--brand-orange);
}

.expertise .btn-secondary:hover {
    background: var(--brand-orange);
    color: var(--white);
}

/* Products Section */
.products {
    background: var(--white);
}

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

.product-card {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--brand-teal);
}

.product-card-image {
    height: 200px;
    overflow: hidden;
}

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

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

.product-card-content {
    padding: 24px;
}

.product-card-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.product-card-content p {
    font-size: 14px;
    color: var(--medium-grey);
    margin-bottom: 16px;
}

.product-card-link {
    color: var(--brand-teal);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.product-card-link:hover {
    color: var(--brand-orange);
}

.product-card-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

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

/* Service Differentiators */
.service-diff {
    background: var(--light-grey);
}

.service-diff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-diff-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-diff-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-diff-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--brand-teal) 0%, #1a9a8a 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-diff-card:hover .service-diff-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(46, 196, 182, 0.4);
}

.service-diff-icon svg {
    width: 36px;
    height: 36px;
    fill: var(--white);
}

.service-diff-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.service-diff-card p {
    font-size: 14px;
    color: var(--medium-grey);
    margin-bottom: 0;
}

/* Testimonials */
.testimonials {
    background: var(--white);
    position: relative;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.testimonial-card {
    background: var(--light-grey);
    padding: 40px;
    border-radius: 12px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 80px;
    font-family: Georgia, serif;
    color: var(--brand-teal);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-quote {
    font-size: 18px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark-charcoal);
}

.testimonial-role {
    font-size: 14px;
    color: var(--medium-grey);
}

/* Process Section */
.process {
    background: var(--dark-charcoal);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(46, 196, 182, 0.1) 0%, transparent 70%);
}

.process h2 {
    color: var(--white);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 40px 0;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -30%;
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-orange), var(--brand-teal));
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-orange-hover) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.process-step h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 8px;
}

.process-step p {
    color: var(--light-grey);
    font-size: 14px;
    margin-bottom: 0;
}

/* Final CTA Section */
.cta-final {
    background: var(--brand-orange);
    text-align: center;
    padding: 100px 0;
}

.cta-final h2 {
    color: var(--white);
    font-size: 48px;
    margin-bottom: 16px;
}

.cta-final p {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-final .btn-white {
    padding: 18px 48px;
    font-size: 16px;
}

.cta-final .btn-secondary-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    padding: 18px 48px;
    font-size: 16px;
    margin-left: 16px;
}

.cta-final .btn-secondary-white:hover {
    background: var(--white);
    color: var(--brand-orange);
}

/* Footer */
.footer {
    background: var(--dark-charcoal);
    padding: 80px 0 0;
}

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

.footer-brand p {
    color: var(--light-grey);
    font-size: 14px;
    margin-top: 16px;
    line-height: 1.7;
}

.footer h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a {
    display: block;
    color: var(--light-grey);
    font-size: 14px;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--brand-orange);
}

.footer-contact p {
    color: var(--light-grey);
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-contact a {
    color: var(--brand-teal);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--brand-orange);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--brand-orange);
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--light-grey);
    font-size: 14px;
    margin-bottom: 0;
}

/* About Page Styles */
.about-hero {
    background: var(--dark-charcoal);
}

.about-hero .hero-content h1 {
    font-size: 52px;
}

.about-mission {
    background: var(--white);
}

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

.about-mission-content h2 {
    margin-bottom: 24px;
}

.about-mission-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.value-card {
    background: var(--light-grey);
    padding: 28px;
    border-radius: 12px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.value-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--brand-orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.about-mission-image img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* Team Section */
.team {
    background: var(--light-grey);
}

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

.team-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.team-card-image {
    height: 300px;
    overflow: hidden;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card-content {
    padding: 24px;
}

.team-card-content h4 {
    font-size: 22px;
    margin-bottom: 4px;
}

.team-card-content .role {
    color: var(--brand-teal);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 12px;
}

.team-card-content p {
    font-size: 14px;
    margin-bottom: 0;
    color: var(--medium-grey);
}

/* Global Reach */
.global-reach {
    background: var(--dark-charcoal);
    position: relative;
    overflow: hidden;
}

.global-reach h2 {
    color: var(--white);
}

.global-reach p {
    color: var(--light-grey);
}

.global-map {
    margin-top: 48px;
}

.global-map img {
    width: 100%;
    border-radius: 12px;
}

.hotspots {
    position: relative;
}

.hotspot {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--brand-orange);
    border-radius: 50%;
    cursor: pointer;
    animation: pulse 2s infinite;
}

.hotspot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    background: var(--brand-orange);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse-ring 2s infinite;
}

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

@keyframes pulse-ring {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

/* Certifications */
.certifications {
    background: var(--white);
}

.cert-badges {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cert-badge {
    width: 120px;
    height: 120px;
    background: var(--light-grey);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-charcoal);
    text-align: center;
    transition: all 0.3s ease;
}

.cert-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(46, 196, 182, 0.3);
}

.certifications p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
}

/* Products Page */
.products-hero .hero-content h1 {
    font-size: 48px;
}

.products-nav {
    background: var(--white);
    padding: 20px 0;
    position: sticky;
    top: var(--header-height);
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.products-nav-list {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.products-nav-list a {
    color: var(--medium-grey);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.products-nav-list a:hover,
.products-nav-list a.active {
    color: var(--brand-orange);
}

.product-category {
    padding: 80px 0;
}

.product-category:nth-child(even) {
    background: var(--light-grey);
}

.product-category h2 {
    margin-bottom: 40px;
    text-align: center;
}

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

.product-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.product-item-image {
    height: 220px;
    overflow: hidden;
    background: var(--light-grey);
}

.product-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-item-content {
    padding: 24px;
}

.product-item-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.product-item-content p {
    font-size: 14px;
    margin-bottom: 16px;
}

/* Services Page */
.services-hero .hero-content h1 {
    font-size: 48px;
}

.core-offerings {
    background: var(--white);
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.offering-card {
    background: var(--light-grey);
    padding: 32px;
    border-radius: 12px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.offering-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.offering-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background: var(--brand-teal);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offering-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

.operational-advantages {
    background: var(--dark-charcoal);
}

.operational-advantages h2 {
    color: var(--white);
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.advantage-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.advantage-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: var(--brand-orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
}

.advantage-icon svg {
    width: 16px;
    height: 16px;
    fill: var(--white);
}

.advantage-item h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 4px;
}

.advantage-item p {
    color: var(--light-grey);
    font-size: 15px;
    margin-bottom: 0;
}

.advantages-image img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.custom-solutions {
    background: var(--white);
}

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

.solution-card {
    background: var(--light-grey);
    padding: 32px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.solution-icon {
    width: 56px;
    height: 56px;
    background: var(--brand-teal);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.solution-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.solution-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.solution-card p {
    font-size: 14px;
    margin-bottom: 0;
}

/* Document Central */
.doc-hero .hero-content h1 {
    font-size: 44px;
}

.doc-intro {
    background: var(--white);
}

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

.doc-intro-content h2 {
    margin-bottom: 24px;
}

.doc-intro-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.doc-intro-image img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.doc-types {
    background: var(--light-grey);
}

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

.accordion-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.accordion-header {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: var(--light-grey);
}

.accordion-header h4 {
    font-size: 18px;
    margin-bottom: 0;
}

.accordion-icon {
    width: 24px;
    height: 24px;
    position: relative;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background: var(--brand-teal);
    transition: transform 0.3s ease;
}

.accordion-icon::before {
    width: 16px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.accordion-icon::after {
    width: 2px;
    height: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.accordion-item.active .accordion-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-content {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.accordion-item.active .accordion-content {
    padding: 0 24px 24px;
    max-height: 300px;
}

.accordion-content ul {
    list-style: disc;
    padding-left: 20px;
}

.accordion-content li {
    color: var(--medium-grey);
    font-size: 15px;
    padding: 8px 0;
}

.access-instructions {
    background: var(--white);
}

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

.step-card {
    text-align: center;
    padding: 32px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-orange-hover) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.step-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--white);
}

.step-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 15px;
    margin-bottom: 20px;
}

.doc-cta {
    background: var(--dark-charcoal);
    position: relative;
    overflow: hidden;
}

.doc-cta h2 {
    color: var(--white);
}

.doc-cta p {
    color: var(--light-grey);
}

/* Contact Page */
.contact-hero .hero-content {
    text-align: left;
    max-width: 600px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    background: var(--white);
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.contact-form h3 {
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 15px;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-teal);
    box-shadow: 0 0 0 3px rgba(46, 196, 182, 0.1);
}

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

.contact-details {
    padding-left: 40px;
    border-left: 1px solid #e0e0e0;
}

.contact-details h3 {
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--brand-teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.contact-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 15px;
    margin-bottom: 0;
    color: var(--medium-grey);
}

.contact-item a {
    color: var(--brand-teal);
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--brand-orange);
}

/* Map Section */
.map-section {
    background: var(--light-grey);
}

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

.business-hours h3 {
    margin-bottom: 24px;
}

.hours-list {
    margin-bottom: 32px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.hours-item span:first-child {
    font-weight: 600;
}

.hours-item span:last-child {
    color: var(--medium-grey);
}

.map-container {
    height: 300px;
    background: var(--dark-charcoal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-grey);
}

/* Account Managers */
.account-managers {
    background: var(--white);
    text-align: center;
}

.account-managers h2 {
    margin-bottom: 16px;
}

.account-managers p {
    max-width: 700px;
    margin: 0 auto 32px;
    font-size: 17px;
}

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

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

.slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .fade-in, .slide-up {
        opacity: 1;
        transform: none;
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    :root {
        --header-height: 70px;
    }
    
    h1 { font-size: 40px; }
    h2 { font-size: 30px; }
    
    .header-inner {
        padding: 0 24px;
    }
    
    .nav-links, .header-actions {
        display: none;
    }
    
    .mobile-menu-btn, .mobile-menu {
        display: block;
    }
    
    .products-grid,
    .service-diff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .stat-number {
        font-size: 48px;
    }
    
    .value-prop-grid,
    .about-mission-grid,
    .advantages-grid,
    .doc-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        flex-wrap: wrap;
        gap: 40px;
    }
    
    .process-step {
        flex: 0 0 calc(33.333% - 30px);
    }
    
    .process-step::after {
        display: none;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .offerings-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-details {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #e0e0e0;
        padding-top: 40px;
    }
    
    .map-grid {
        grid-template-columns: 1fr;
    }
    
    .scroll-progress {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }
    
    section {
        padding: 60px 0;
    }
    
    h1 { font-size: 32px; }
    h2 { font-size: 26px; }
    h3 { font-size: 22px; }
    h4 { font-size: 18px; }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .products-grid,
    .service-diff-grid,
    .stats-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex: 0 0 100%;
    }
    
    .cta-final h2 {
        font-size: 32px;
    }
    
    .cta-final .btn-secondary-white {
        display: block;
        margin-left: 0;
        margin-top: 16px;
    }
    
    .products-nav-list {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .cert-badges {
        gap: 30px;
    }
    
    .cert-badge {
        width: 100px;
        height: 100px;
        font-size: 12px;
    }
    
    .contact-grid {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .hero .btn-primary {
        padding: 14px 32px;
        font-size: 15px;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .team-card-image {
        height: 250px;
    }
}
