/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.5;
    color: #4b5563;
    background-color: #ffffff;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #111827;
    letter-spacing: -0.02em;
    text-rendering: optimizeLegibility;
}

h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 200;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 2rem;
}

h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 200;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
}

h3 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

/* Navigation */
.navbar {
    background: rgba(255,255,255,0.98);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    backdrop-filter: blur(20px);
}

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

.logo-img {
    height: 80px;
    width: auto;
    max-width: none;
    max-height: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-menu li {
    display: block;
}

.nav-menu a {
    text-decoration: none !important;
    color: #4b5563 !important;
    font-weight: 400 !important;
    font-size: 0.95rem !important;
    letter-spacing: 0.01em;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #111827 !important;
    border-bottom-color: #111827;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #111827;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero-section {
    background: #ffffff;
    padding: 140px 0 80px;
    border-bottom: 1px solid #e5e7eb;
}

.hero-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-image {
    position: relative;
}

.hero-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

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

/* Enhanced Animated Network Background */
.animated-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.network-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #3b82f6 0%, #2563eb 70%, transparent 100%);
    border-radius: 50%;
    opacity: 0.8;
    animation: pulse 4s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.network-dot::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    width: 18px;
    height: 18px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: ripple 5s ease-in-out infinite;
}

.network-dot::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: glow 3s ease-in-out infinite;
}

.network-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(59, 130, 246, 0.1) 20%, 
        rgba(59, 130, 246, 0.6) 50%, 
        rgba(59, 130, 246, 0.1) 80%, 
        transparent 100%);
    transform-origin: left center;
    animation: drawLine 8s ease-in-out infinite;
    border-radius: 1px;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.2);
}

/* Enhanced positioning with more dots */
.network-dot:nth-child(1) { top: 15%; left: 8%; animation-delay: 0s; }
.network-dot:nth-child(2) { top: 12%; left: 35%; animation-delay: 0.7s; }
.network-dot:nth-child(3) { top: 30%; left: 20%; animation-delay: 1.4s; }
.network-dot:nth-child(4) { top: 40%; left: 65%; animation-delay: 2.1s; }
.network-dot:nth-child(5) { top: 22%; left: 85%; animation-delay: 2.8s; }
.network-dot:nth-child(6) { top: 55%; left: 12%; animation-delay: 3.5s; }
.network-dot:nth-child(7) { top: 68%; left: 75%; animation-delay: 4.2s; }
.network-dot:nth-child(8) { top: 78%; left: 45%; animation-delay: 4.9s; }
.network-dot:nth-child(9) { top: 85%; left: 18%; animation-delay: 5.6s; }
.network-dot:nth-child(10) { top: 45%; left: 92%; animation-delay: 6.3s; }
.network-dot:nth-child(11) { top: 65%; left: 35%; animation-delay: 7s; }
.network-dot:nth-child(12) { top: 25%; left: 55%; animation-delay: 7.7s; }

.network-line:nth-child(13) { 
    top: 15%; left: 8%; 
    width: 280px; 
    transform: rotate(25deg);
    animation-delay: 1s;
}
.network-line:nth-child(14) { 
    top: 30%; left: 20%; 
    width: 350px; 
    transform: rotate(-15deg);
    animation-delay: 2.5s;
}
.network-line:nth-child(15) { 
    top: 40%; left: 65%; 
    width: 200px; 
    transform: rotate(55deg);
    animation-delay: 4s;
}
.network-line:nth-child(16) { 
    top: 55%; left: 12%; 
    width: 320px; 
    transform: rotate(8deg);
    animation-delay: 5.5s;
}
.network-line:nth-child(17) { 
    top: 22%; left: 85%; 
    width: 180px; 
    transform: rotate(-55deg);
    animation-delay: 7s;
}
.network-line:nth-child(18) { 
    top: 68%; left: 75%; 
    width: 240px; 
    transform: rotate(-25deg);
    animation-delay: 1.5s;
}
.network-line:nth-child(19) { 
    top: 45%; left: 92%; 
    width: 160px; 
    transform: rotate(-75deg);
    animation-delay: 3s;
}
.network-line:nth-child(20) { 
    top: 65%; left: 35%; 
    width: 290px; 
    transform: rotate(35deg);
    animation-delay: 6s;
}

@keyframes pulse {
    0%, 100% { 
        opacity: 0.4; 
        transform: scale(0.8); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1.4); 
    }
}

@keyframes ripple {
    0% { 
        transform: scale(0.5); 
        opacity: 0.8; 
    }
    50% { 
        transform: scale(2.5); 
        opacity: 0.1; 
    }
    100% { 
        transform: scale(0.5); 
        opacity: 0.8; 
    }
}

@keyframes glow {
    0%, 100% { 
        opacity: 0.3; 
        transform: scale(0.5); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1); 
    }
}

@keyframes drawLine {
    0% { 
        transform: scaleX(0); 
        opacity: 0; 
    }
    20% { 
        opacity: 0.6; 
    }
    50% { 
        transform: scaleX(1); 
        opacity: 1; 
    }
    80% { 
        opacity: 0.6; 
    }
    100% { 
        transform: scaleX(0); 
        opacity: 0; 
    }
}

.hero-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #111827;
    line-height: 1.2;
    padding-top: 1rem;
}

.hero-content h2 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #2563eb;
    line-height: 1.3;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #4b5563;
    line-height: 1.6;
}

.services-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin: 2rem 0;
}

.service-item {
    font-size: 0.95rem;
    color: #111827;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.phone-button {
    background: #10b981;
    color: white;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.phone-button:hover {
    background: #059669;
}

/* Contact Section */
.contact-section {
    background: #f8fafc;
    padding: 80px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #111827;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #4b5563;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.contact-item span {
    font-size: 1.25rem;
}

.contact-item a {
    color: #111827;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    color: #2563eb;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.quick-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.quick-form input,
.quick-form select,
.quick-form textarea {
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    background: #ffffff;
    color: #111827;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.quick-form input:focus,
.quick-form select:focus,
.quick-form textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.submit-btn {
    background: #2563eb;
    color: white;
    border: none;
    padding: 1.25rem;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #1d4ed8;
}

.cta-button, .quote-button, .ai-button, .whatsapp-button {
    display: inline-block;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 400;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    text-align: center;
    letter-spacing: 0.01em;
    min-width: 160px;
}

.cta-button {
    background: #2563eb;
    color: #ffffff;
    border: 1px solid #2563eb;
}

.cta-button:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
}

.quote-button {
    background: transparent;
    color: #4b5563;
    border: 1px solid #d1d5db;
}

.quote-button:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
}

.whatsapp-button {
    background: #25D366;
    color: #ffffff;
    border: 1px solid #25D366;
}

.whatsapp-button:hover {
    background: #1DA851;
    border-color: #1DA851;
}

.ai-button {
    background: transparent;
    color: #4b5563;
    border: 1px solid #d1d5db;
}

.ai-button:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
}

/* Sections */
.features-overview,
.cta-section,
.services,
.about,
.contact,
.ai-section,
.finance-section,
.xero-section,
.portfolio {
    padding: 120px 0;
}

.features-overview {
    background: #f3f4f6;
}

.features-overview h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300;
    color: #111827;
}

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

.feature-card {
    text-align: center;
    padding: 3rem 2rem;
    background: #ffffff;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #111827;
}

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

/* CTA Section */
.cta-section {
    background: #f9fafb;
    color: #111827;
    text-align: center;
}

.cta-content h2 {
    color: #111827;
    margin-bottom: 1.5rem;
}

.cta-content p {
    color: #4b5563;
    margin-bottom: 3rem;
    font-size: 1.25rem;
}

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

.cta-section .cta-button {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
}

.cta-section .cta-button:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
}

.cta-section .quote-button {
    background: transparent;
    color: #111827;
    border-color: #d1d5db;
}

.cta-section .quote-button:hover {
    background: #3f3f46;
    color: #ffffff;
}

/* Services */
.services h2 {
    text-align: center;
    margin-bottom: 5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 0;
}

.service-card {
    background: #ffffff;
    padding: 4rem 3rem;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
    position: relative;
}

.service-card:hover {
    background: #f3f4f6;
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 2rem;
    display: block;
    opacity: 0.8;
}

.service-card h3 {
    margin-bottom: 1.5rem;
    color: #111827;
    font-size: 1.75rem;
    font-weight: 300;
}

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

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

.service-features li {
    padding: 0.5rem 0;
    color: #4b5563;
    font-size: 0.95rem;
}

.service-btn {
    display: inline-block;
    background: transparent;
    color: #111827;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.3s ease;
    border: 2px solid #d1d5db;
    margin-top: 1rem;
}

.service-btn:hover {
    background: #111827;
    color: #ffffff;
    border-color: #111827;
}

/* Page Hero */
.page-hero {
    background: #f3f4f6;
    padding: 140px 0 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 200;
    margin-bottom: 1.5rem;
    color: #111827;
}

.page-hero p {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 700px;
    margin: 0 auto;
}

/* About Page */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.expertise-item {
    padding: 2rem;
    background: #ffffff;
    border-left: 4px solid #111827;
}

.expertise-item h4 {
    margin-bottom: 1rem;
    color: #111827;
    font-weight: 400;
    font-size: 1.25rem;
}

.about-cta {
    margin-top: 5rem;
    text-align: center;
    background: #ffffff;
    padding: 4rem 3rem;
}

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

.features-list li {
    padding: 0.75rem 0;
    color: #4b5563;
    font-size: 1rem;
}

/* Contact Page */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-section h2 {
    margin-bottom: 2rem;
    font-weight: 300;
}

.contact-details {
    margin: 3rem 0;
}

.featured-contact {
    background: #ffffff;
    padding: 2rem;
    border-left: 4px solid #111827;
    margin-bottom: 2rem;
}

.email-link {
    font-size: 1.125rem;
    font-weight: 400;
    color: #111827;
    text-decoration: none;
}

.email-link:hover {
    text-decoration: underline;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #ffffff;
}

.contact-icon {
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.form-container {
    background: #f3f4f6;
    padding: 3rem;
    border: 1px solid rgba(0,0,0,0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1.25rem;
    border: 2px solid #d1d5db;
    background: #ffffff;
    color: #111827;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 300;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #111827;
}

.submit-btn {
    background: #2563eb;
    color: white;
    border: none;
    padding: 1.25rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #1d4ed8;
}

/* XERO Hero Image */
.xero-hero-image {
    text-align: center;
    margin: 3rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.xero-banner {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* AI Training, Finance, Portfolio specific styles */
.ai-topics, .finance-services, .xero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 1024px) {
    .ai-topics, .finance-services, .xero-features {
        grid-template-columns: 1fr;
    }
}

.ai-topic, .finance-service, .xero-feature {
    padding: 2.5rem;
    background: #ffffff;
    border-left: 4px solid #111827;
}

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

.portfolio-item {
    cursor: pointer;
    transition: transform 0.3s ease;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.1);
}

.portfolio-item:hover {
    transform: translateY(-10px);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

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

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.9);
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background: #f3f4f6;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    align-items: center;
    justify-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.partner-logo img {
    height: 50px;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.partner-logo:hover img {
    opacity: 1;
}

/* Footer */
footer {
    background: #f9fafb;
    color: #111827;
    padding: 80px 0 40px;
}

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

.footer-section h3 {
    margin-bottom: 2rem;
    color: #111827;
    font-weight: 400;
    font-size: 1.125rem;
}

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

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #4b5563;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #111827;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    margin-top: 1.5rem;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid #e5e7eb;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #71717a;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background-color: rgba(255,255,255,0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.3);
        z-index: 999;
        padding: 3rem 0;
        gap: 2rem;
        backdrop-filter: blur(20px);
    }

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

    .hamburger {
        display: flex;
    }

    .hero-section {
        padding: 100px 0 60px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-image {
        order: 1;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-content {
        order: 2;
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-grid,
    .portfolio-grid,
    .ai-topics,
    .finance-services,
    .xero-features {
        grid-template-columns: 1fr;
    }

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

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles */
*:focus {
    outline: 2px solid #1a1a1a;
    outline-offset: 2px;
}