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

:root {
    --gold-primary: #D4AF37;
    --gold-light: #F4D160;
    --gold-dark: #B8860B;
    --charcoal-deep: #1A1A1A;
    --charcoal-medium: #2D2D2D;
    --charcoal-light: #404040;
    --cyan-electric: #00FFFF;
    --cyan-soft: #00CED1;
    --white-pure: #FFFFFF;
    --white-off: #F8F9FA;
    --gray-neutral: #6C757D;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white-off);
    color: var(--charcoal-deep);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--charcoal-deep);
}

strong, p {
    color: inherit;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}


.cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background: linear-gradient(135deg, var(--charcoal-deep) 0%, var(--charcoal-medium) 100%);
    border: 2px solid var(--gold-primary);
    border-radius: 12px;
    padding: 24px;
    z-index: 9999;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    display: block;
}

.cookie-consent-banner h5 {
    color: var(--gold-primary);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.cookie-consent-banner p {
    color: var(--white-off);
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.5;
}

.cookie-btn-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    flex: 1;
    min-width: 120px;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid;
    font-family: 'Inter', sans-serif;
}

.btn-accept-all {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: var(--charcoal-deep);
}

.btn-accept-all:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
}

.btn-decline-all {
    background: transparent;
    border-color: var(--charcoal-light);
    color: var(--white-off);
}

.btn-decline-all:hover {
    border-color: var(--cyan-electric);
    color: var(--cyan-electric);
}


.main-header {
    background: var(--charcoal-deep);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--gold-primary);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--charcoal-deep);
    font-weight: 700;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white-pure);
    line-height: 1.1;
}

.logo-text span {
    color: var(--gold-primary);
}

.nav-main {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
}

.desktop-nav {
    display: flex !important;
}

@media (min-width: 992px) {
    .desktop-nav {
        display: flex !important;
    }
    
    .mobile-toggle {
        display: none !important;
    }
    
    .nav-main:not(.active) {
        position: static;
        top: auto;
        right: auto;
        width: auto;
        max-width: none;
        height: auto;
        background: transparent;
        flex-direction: row;
        justify-content: flex-end;
        padding: 0;
        transition: none;
        border-left: none;
        display: none;
    }
    #mobile-menu {
        display: none !important;
    }
}

.nav-link {
    color: var(--white-off);
    font-weight: 500;
    padding: 8px 16px;
    position: relative;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--gold-primary);
}

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

.nav-link:hover::after {
    width: 80%;
}

.mobile-toggle {
    display: none !important;
    background: transparent;
    border: 2px solid var(--gold-primary);
    border-radius: 6px;
    padding: 10px 14px;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white-pure);
    margin: 3px 0;
    transition: all 0.3s ease;
}


.hero-section {
    min-height: 85vh;
    background: linear-gradient(135deg, var(--charcoal-deep) 0%, var(--charcoal-medium) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold-primary);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white-pure);
    margin-bottom: 24px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-neutral);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-cta-primary {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--charcoal-deep);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    color: var(--charcoal-deep);
}

.hero-cta-secondary {
    background: transparent;
    color: var(--white-pure);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--charcoal-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-cta-secondary:hover {
    border-color: var(--cyan-electric);
    color: var(--cyan-electric);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    line-height: 1;
}

.stat-label {
    color: var(--gray-neutral);
    font-size: 0.95rem;
    margin-top: 4px;
}

.hero-image-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual-card {
    background: linear-gradient(135deg, var(--charcoal-medium) 0%, var(--charcoal-deep) 100%);
    border: 2px solid var(--gold-primary);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.hero-visual-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-visual-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 48px;
    color: var(--charcoal-deep);
}

.hero-visual-title {
    color: var(--white-pure);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 12px;
}

.hero-visual-text {
    color: var(--gray-neutral);
    text-align: center;
    font-size: 0.95rem;
}


.section-pad {
    padding: 100px 0;
}

.section-label {
    display: inline-block;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--cyan-electric);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--cyan-electric);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    position: relative;
}

.section-title-light {
    color: var(--white-pure);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-neutral);
    max-width: 600px;
}

.section-subtitle-light {
    color: rgba(255, 255, 255, 0.7);
}

.bg-dark-section {
    background: var(--charcoal-deep);
}

.bg-light-section {
    background: var(--white-pure);
}


.about-visual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-grid-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.about-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-grid-item:hover img {
    transform: scale(1.05);
}

.about-grid-item:first-child {
    grid-column: span 2;
}

.about-content-card {
    background: var(--charcoal-medium);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.about-icon-row {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.about-mini-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.about-content-card h3 {
    color: var(--white-pure);
    margin-bottom: 16px;
}

.about-content-card p {
    color: var(--gray-neutral);
    margin-bottom: 0;
}


.service-card {
    background: var(--white-pure);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary), var(--cyan-electric));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon-wrapper {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(0, 255, 255, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 32px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray-neutral);
    margin-bottom: 20px;
}

.service-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-dark);
    margin-bottom: 20px;
}

.service-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray-neutral);
}

.service-details {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.service-details li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--charcoal-medium);
}

.service-details li:last-child {
    border-bottom: none;
}

.service-check {
    color: var(--cyan-electric);
    font-weight: bold;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--charcoal-deep);
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--gold-primary);
    gap: 12px;
}


.process-step {
    text-align: center;
    padding: 32px;
    position: relative;
}

.process-step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal-deep);
    margin: 0 auto 24px;
    position: relative;
    z-index: 2;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 76px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-primary), transparent);
}

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

.process-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.process-step h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.process-step p {
    color: var(--gray-neutral);
    max-width: 280px;
    margin: 0 auto;
}


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

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

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

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

.team-card:hover .team-card-image img {
    transform: scale(1.05);
}

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

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

.team-card-content .role {
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.team-card-content .bio {
    color: var(--gray-neutral);
    font-size: 0.9rem;
}


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

.portfolio-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

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

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(26, 26, 26, 0.95));
    padding: 40px 24px 24px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.portfolio-overlay h4 {
    color: var(--white-pure);
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.portfolio-overlay p {
    color: var(--gold-primary);
    font-size: 0.9rem;
}


.testimonial-card {
    background: var(--charcoal-medium);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.testimonial-quote {
    font-size: 48px;
    color: var(--gold-primary);
    line-height: 1;
    margin-bottom: 16px;
}

.testimonial-text {
    color: var(--white-off);
    font-size: 1.05rem;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold-primary);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h5 {
    color: var(--white-pure);
    font-size: 1rem;
    margin-bottom: 2px;
}

.author-info p {
    color: var(--gray-neutral);
    font-size: 0.85rem;
}

.testimonial-stars {
    color: var(--gold-primary);
    margin-bottom: 16px;
}


.faq-item {
    background: var(--white-pure);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal-deep);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--gold-dark);
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--gold-primary);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: var(--gold-primary);
    color: var(--charcoal-deep);
    transform: rotate(45deg);
}

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

.faq-answer-content {
    padding: 0 24px 24px;
    color: var(--gray-neutral);
}

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

.faq-item.active .faq-answer-content {
    padding-top: 0;
}


.contact-info-card {
    background: var(--charcoal-medium);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    height: 100%;
}

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

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info-content h5 {
    color: var(--white-pure);
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-info-content p {
    color: var(--gray-neutral);
    margin: 0;
}

.contact-info-content a {
    color: var(--cyan-electric);
}

.contact-info-content a:hover {
    color: var(--gold-primary);
}

.contact-form-wrapper {
    background: var(--white-pure);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

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

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

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

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

.form-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--charcoal-deep);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}


.map-container {
    border-radius: 16px;
    overflow: hidden;
    margin-top: 40px;
}

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


.main-footer {
    background: var(--charcoal-deep);
    padding: 60px 0 30px;
    border-top: 3px solid var(--gold-primary);
}

.footer-brand {
    margin-bottom: 32px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-tagline {
    color: var(--gray-neutral);
    font-size: 0.95rem;
}

.footer-title {
    color: var(--white-pure);
    font-size: 1.1rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gold-primary);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-neutral);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-primary);
    padding-left: 8px;
}

.footer-bottom {
    border-top: 1px solid var(--charcoal-light);
    padding-top: 30px;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    color: var(--gray-neutral);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--gray-neutral);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--cyan-electric);
}


.text-gold {
    color: var(--gold-primary);
}

.bg-gold-gradient {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
}


@media (max-width: 991px) {
    .main-header .row {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    .main-header .row > * {
        width: auto;
    }
    .mobile-toggle {
        display: flex !important;
        flex-direction: column;
    }

    .desktop-nav {
        display: none !important;
    }

    .nav-main {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background: var(--charcoal-deep);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        transition: right 0.4s ease;
        border-left: 3px solid var(--gold-primary);
        z-index: 1001;
    }

    .nav-main.active {
        right: -50px;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 16px 0;
    }

    .hero-stats {
        margin-top: 40px;
        gap: 24px;
    }

    .about-visual-grid {
        margin-bottom: 40px;
    }

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

    .cookie-consent-banner {
        left: 10px;
        right: 10px;
        max-width: none;
    }
}

@media (max-width: 767px) {
    .section-pad {
        padding: 60px 0;
    }

    .hero-section {
        min-height: auto;
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-btn-group {
        flex-direction: column;
    }

    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-item {
        text-align: center;
    }

    .about-visual-grid {
        grid-template-columns: 1fr;
    }

    .about-grid-item:first-child {
        grid-column: span 1;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .contact-form-wrapper {
        padding: 24px;
    }
}