/*
--- TABLE OF CONTENTS ---
1.  Global Styles & Variables
2.  Utility & Helper Classes
3.  Custom Cursor
4.  Header & Navigation (Glassmorphism)
5.  Footer
6.  Hero Section (Animated Shapes)
7.  Services Section (Modern Cards)
8.  Approach Section (Accordion)
9.  Data Visualization Section (Animated Charts)
10. Testimonials Section (Infinite Carousel)
11. CTA Section
12. Page-Specific Styles (Contact, Legal)
13. Animations & Keyframes
14. Live Chat Widget
15. Responsive Design
*/

/* 1. Global Styles & Variables
-------------------------------------------------- */
:root {
    --primary-color: #FF3366;
    --secondary-color: #14213D;

    /* Deep Blue */
    --bg-light: #F8F9FA;
    --bg-dark: #111827;
    --text-dark: #212529;
    --text-light: #F9FAFB;
    --text-muted: #6B7280;
    --border-color: #E5E7EB;
    --font-primary: 'Space Grotesk', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --transition-speed: 0.3s;
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    background-color: #fff;
    color: var(--text-dark);
    overflow-x: hidden;
    cursor: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 4.5rem;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color var(--transition-speed) ease;
    cursor: none;
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* 2. Utility & Helper Classes
-------------------------------------------------- */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 500;
    text-align: center;
    transition: all var(--transition-speed) ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--secondary-color);
    transition: width var(--transition-speed) ease;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    color: #fff;
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background-color: #fff;
    color: var(--text-dark);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.bg-dark h2,
.bg-dark h3,
.bg-dark h4 {
    color: var(--text-light);
}

.bg-dark p {
    color: var(--text-muted);
}

.text-center {
    text-align: center;
}

.section-title {
    margin-bottom: 4rem;
}

.section-title .subtitle {
    font-family: var(--font-primary);
    color: var(--primary-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title h2 {
    margin-bottom: 1rem;
}

.section-title p {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

.bg-dark .section-title .subtitle {
    color: #A78BFA;
}

/* Lighter purple on dark bg */

/* 3. Custom Cursor
-------------------------------------------------- */
.cursor,
.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
}

.cursor {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.cursor-follower {
    width: 30px;
    height: 30px;
    background-color: rgba(122, 82, 179, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out, width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
}

body:hover .cursor {
    opacity: 1;
}

.cursor-follower.active {
    transform: translate(-50%, -50%) scale(1.5);
    background-color: rgba(122, 82, 179, 0.4);
}

/* 4. Header & Navigation (Glassmorphism)
-------------------------------------------------- */
#main-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    z-index: 1000;
    border-radius: 50px;
    transition: all var(--transition-speed) ease;
    padding: 0.5rem 0;
}

#main-header.scrolled {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    top: 10px;
}

#main-header.is-static {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    max-width: none;
    border-radius: 0;
    background-color: #fff;
    box-shadow: var(--box-shadow);
    color: var(--text-dark);
}

#main-header.is-static .logo,
#main-header.is-static .nav-link {
    color: var(--text-dark);
}

#main-header.is-static .hamburger .bar {
    background-color: var(--text-dark);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    color: var(--text-dark);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.5rem;
}

.logo img {
    height: 50px;
    margin-right: 0.75rem;
    transition: transform 0.5s ease;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: none;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    background-color: var(--text-dark);
    transition: all var(--transition-speed) ease-in-out;
}

/* 5. Footer
-------------------------------------------------- */
#main-footer {
    background-color: var(--bg-dark);
    color: var(--text-muted);
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 40px;
}

.footer-column h4 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.footer-about .logo {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-about p {
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--text-muted);
    font-size: 1.1rem;
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--text-muted);
    border-radius: 50%;
}

.social-links a:hover {
    color: #fff;
    border-color: #fff;
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links ul li,
.footer-legal ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a,
.footer-legal ul li a {
    color: var(--text-muted);
}

.footer-links ul li a:hover,
.footer-legal ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-contact i {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* 6. Hero Section (Animated Shapes)
-------------------------------------------------- */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-light);
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
}

.shape-1 {
    width: 40vw;
    height: 40vw;
    background: rgba(122, 82, 179, 0.4);
    top: -10%;
    left: -10%;
    animation: blob-move 20s infinite alternate;
}

.shape-2 {
    width: 30vw;
    height: 30vw;
    background: rgba(30, 58, 138, 0.3);
    bottom: -15%;
    right: -5%;
    animation: blob-move 25s infinite alternate-reverse;
}

.shape-3 {
    width: 25vw;
    height: 25vw;
    background: rgba(167, 139, 250, 0.3);
    top: 50%;
    left: 30%;
    animation: blob-move 15s infinite;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-title .line {
    display: block;
}

.hero-title .highlight {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.hero-buttons .btn {
    margin: 0 0.5rem;
}

/* 7. Services Section (Modern Cards)
-------------------------------------------------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 180deg at 50% 50%, var(--secondary-color), var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
    animation: rotate 6s linear infinite;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-icon {
    font-size: 2.5rem;
    color: #fff;
    width: 70px;
    height: 70px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.learn-more-link {
    font-family: var(--font-primary);
    font-weight: 500;
    margin-top: 1.5rem;
    display: inline-block;
}

.learn-more-link span {
    transition: transform var(--transition-speed) ease;
    display: inline-block;
}

.learn-more-link:hover span {
    transform: translateX(5px);
}

/* 8. Approach Section (Accordion)
-------------------------------------------------- */
.approach-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.approach-visual img {
    border-radius: 12px;
}

.accordion-item {
    border-bottom: 1px solid #374151;
    margin-bottom: 1rem;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: none;
}

.accordion-icon {
    font-size: 1.5rem;
    transition: transform var(--transition-speed) ease;
    color: var(--primary-color);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.accordion-content p {
    padding-bottom: 1.5rem;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    /* Adjust as needed */
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

/* 9. Data Visualization Section (Animated Charts)
-------------------------------------------------- */
.data-viz-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.viz-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.viz-card h4 {
    margin-bottom: 2rem;
}

.viz-card p {
    font-size: 0.9rem;
    max-width: 250px;
    margin: 1rem auto 0;
}

/* Bar Chart */
.bar-chart {
    height: 150px;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
}

.bar-group {
    display: flex;
    gap: 0.5rem;
    align-items: flex-end;
}

.bar {
    width: 25px;
    background-color: #ccc;
    border-radius: 4px 4px 0 0;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 1s ease-out;
}

.bar.last-year {
    background-color: var(--secondary-color);
}

.bar.this-year {
    background-color: var(--primary-color);
}

.chart-legend {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.8rem;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 0.5rem;
}

/* Circle Chart */
.circle-chart {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto;
}

.circle-chart svg {
    transform: rotate(-90deg);
}

.circle-bg,
.circle {
    fill: none;
    stroke-width: 2.8;
}

.circle-bg {
    stroke: var(--border-color);
}

.circle {
    stroke: var(--primary-color);
    stroke-linecap: round;
    transition: stroke-dasharray 1.5s ease;
}

.percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-primary);
    font-size: 2rem;
}

/* Count Up */
.roas-value {
    font-family: var(--font-primary);
    font-size: 4rem;
    color: var(--primary-color);
}

/* 10. Testimonials Section (Infinite Carousel)
-------------------------------------------------- */
.testimonial-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

.testimonial-carousel {
    display: flex;
    width: fit-content;
    animation: scroll 40s linear infinite;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    width: 350px;
    margin: 1rem;
    flex-shrink: 0;
}

.testimonial-card p {
    font-size: 1rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.author-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.author-details span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* 11. CTA Section
-------------------------------------------------- */
#cta {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.cta-container {
    text-align: center;
    color: #fff;
}

.cta-container h2 {
    color: #fff;
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-container p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-container .btn-primary {
    background-color: #fff;
    color: var(--primary-color);
}

.cta-container .btn-primary:hover {
    color: #fff;
}

.cta-container .btn-primary::before {
    background: var(--secondary-color);
}

/* 12. Page-Specific Styles (Contact, Legal)
-------------------------------------------------- */
.page-header {
    background-color: var(--bg-light);
    padding: 140px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.form-group {
    position: relative;
    margin-bottom: 2.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 0;
    border: none;
    border-bottom: 2px solid var(--border-color);
    background: transparent;
    font-size: 1rem;
    font-family: var(--font-secondary);
    position: relative;
    z-index: 1;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group label {
    position: absolute;
    top: 0.8rem;
    left: 0;
    color: var(--text-muted);
    transition: all var(--transition-speed) ease;
    z-index: 0;
}

.form-group input:focus+label,
.form-group input:valid+label,
.form-group textarea:focus+label,
.form-group textarea:valid+label {
    top: -1.2rem;
    font-size: 0.8rem;
    color: var(--primary-color);
}

.error-message {
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

#form-status {
    margin-top: 1rem;
}

.contact-details-container h3 {
    margin-bottom: 1rem;
}

.contact-details-list {
    margin-top: 2rem;
}

.contact-details-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-details-list i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.contact-map {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
}

/* Legal Pages */
.legal-content .container {
    max-width: 800px;
}

.legal-content h2 {
    margin: 2.5rem 0 1rem;
}

.legal-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
}

/* 13. Animations & Keyframes
-------------------------------------------------- */
@keyframes blob-move {
    0% {
        transform: scale(1) translate(0, 0);
    }

    50% {
        transform: scale(1.2) translate(50px, -50px);
    }

    100% {
        transform: scale(1) translate(0, 0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-384px * 3));
    }
}

/* (card width + margin) * num cards */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
}

[data-animation="fade-in-up"] {
    transform: translateY(50px);
}

[data-animation="fade-in-up"].is-visible {
    transform: translateY(0);
}

[data-animation="fade-in-left"] {
    transform: translateX(-50px);
}

[data-animation="fade-in-left"].is-visible {
    transform: translateX(0);
}

[data-animation="fade-in-right"] {
    transform: translateX(50px);
}

[data-animation="fade-in-right"].is-visible {
    transform: translateX(0);
}

[data-animation="zoom-in"] {
    transform: scale(0.9);
}

[data-animation="zoom-in"].is-visible {
    transform: scale(1);
}

[data-animation="fade-in"].is-visible {
    opacity: 1;
}

/* 14. Live Chat Widget
-------------------------------------------------- */
#chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

#chat-bubble {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

#chat-bubble:hover {
    transform: scale(1.1);
}

#chat-window {
    width: 350px;
    height: 450px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: absolute;
    bottom: 80px;
    right: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.5) translateY(100px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: bottom right;
}

#chat-window:not(.hidden) {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.chat-header {
    background: var(--bg-dark);
    color: #fff;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h5 {
    color: #fff;
    margin: 0;
}

#close-chat {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
}

.chat-body {
    flex-grow: 1;
    padding: 1rem;
    overflow-y: auto;
    background: var(--bg-light);
}

.message.received {
    background-color: #fff;
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    border-top-left-radius: 0;
    max-width: 80%;
}

.chat-footer {
    display: flex;
    padding: 0.5rem;
    border-top: 1px solid var(--border-color);
}

.chat-footer input {
    flex-grow: 1;
    border: none;
    padding: 0.5rem;
    background: transparent;
}

.chat-footer input:focus {
    outline: none;
}

.chat-footer button {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

/* 15. Responsive Design
-------------------------------------------------- */
@media (max-width: 1024px) {
    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        justify-content: center;
        background-color: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.5rem;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    #main-header {
        width: 90%;
    }

    .nav-cta {
        display: none;
    }

    .approach-wrapper {
        grid-template-columns: 1fr;
    }

    .approach-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-about,
    .footer-contact {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {

    body,
    a,
    .hamburger {
        cursor: auto;
    }

    .cursor,
    .cursor-follower {
        display: none;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .section-padding {
        padding: 80px 0;
    }

    #main-header {
        padding: 0.2rem 0;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo img {
        width: 35px;
        height: 35px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-contact p {
        justify-content: center;
    }
}