/* Base Styles */
:root {
    --primary-color: #1A2B3C;
    --secondary-color: #00B4D8;
    --accent-color: #FF7700;
    --light-bg: #F0F2F5;
    --white: #FFFFFF;
    --dark-gray: #333333;
    --medium-gray: #666666;
    --light-gray: #CCCCCC;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--light-bg);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

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

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

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    font-size: 2rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 0.5rem auto 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

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

.primary-btn:hover {
    background-color: #e66c00;
    color: var(--white);
}

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

.secondary-btn:hover {
    background-color: #0099b8;
    color: var(--white);
}

.outline-btn {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

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

.small-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Header */
header {
    background-color: var(--primary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--box-shadow);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: var(--white);
    margin-bottom: 0;
    font-size: 1.8rem;
}

.logo span {
    color: var(--secondary-color);
}

nav {
    display: flex;
    align-items: center;
}

.menu {
    display: flex;
    list-style: none;
}

.menu li {
    margin-left: 1.5rem;
}

.menu a {
    color: var(--white);
    font-weight: 600;
    padding: 0.5rem;
}

.menu a:hover, .menu a.active {
    color: var(--secondary-color);
}

.search-bar {
    display: flex;
    margin-left: 1.5rem;
}

.search-bar input {
    padding: 0.5rem;
    border: none;
    border-radius: 4px 0 0 4px;
    width: 200px;
}

.search-bar button {
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 0 4px 4px 0;
    padding: 0.5rem 1rem;
    cursor: pointer;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 2px 0;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(26, 43, 60, 0.9), rgba(26, 43, 60, 0.8)), url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b') no-repeat center center/cover;
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

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

.hero h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero .btn {
    margin: 0 0.5rem;
}

/* Categories Section */
.categories {
    padding: 5rem 0;
    background-color: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.category-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.category-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.category-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.category-card p {
    margin-bottom: 1.5rem;
    color: var(--medium-gray);
}

/* Popular Tools Section */
.popular-tools {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.tool-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tool-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.tool-header h3 {
    margin-bottom: 0;
}

.tool-badge {
    font-size: 0.8rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
}

.free {
    background-color: var(--success-color);
    color: var(--white);
}

.paid {
    background-color: var(--warning-color);
    color: var(--dark-gray);
}

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

.tool-card p {
    margin-bottom: 1rem;
    color: var(--medium-gray);
    flex-grow: 1;
}

.tool-category {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.tool-actions {
    display: flex;
    justify-content: space-between;
}

.view-all {
    text-align: center;
    margin-top: 3rem;
}

/* Resources Section */
.resources {
    padding: 5rem 0;
    background-color: var(--white);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.resource-card {
    background-color: var(--light-bg);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.resource-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.resource-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.resource-card p {
    margin-bottom: 1.5rem;
    color: var(--medium-gray);
}

/* Security Notice */
.security-notice {
    padding: 3rem 0;
    background-color: #f8f9fa;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

.notice-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.notice-content h2 {
    color: var(--danger-color);
}

.notice-content p {
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-logo h2 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-logo span {
    color: var(--secondary-color);
}

.footer-logo p {
    color: var(--light-gray);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
}

.footer-column {
    margin-right: 3rem;
    margin-bottom: 2rem;
}

.footer-column:last-child {
    margin-right: 0;
}

.footer-column h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: var(--light-gray);
}

.footer-column a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--light-gray);
}

.footer-legal a {
    color: var(--light-gray);
    margin-left: 1.5rem;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .menu {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .search-bar {
        display: none;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-logo {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .footer-links {
        flex-direction: column;
    }

    .footer-column {
        margin-right: 0;
    }

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

    .footer-legal {
        margin-top: 1rem;
    }

    .footer-legal a {
        margin: 0 0.75rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 3rem 0;
    }

    .hero .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }

    .section-title {
        font-size: 1.5rem;
    }
}


/* DSR — Identidade institucional e visual */
:root {
    --primary-dark: #1A2942;
    --primary-medium: #2E5C8A;
    --primary-light: #4A90E2;
    --accent-gold: #D4AF37;
    --light-gold: #F0E68C;
    --accent-green: #2E8B57;
    --dsr-light-bg: #F5F7FA;
    --dsr-dark-bg: #2C3E50;
}

body {
    background: var(--dsr-light-bg);
}

header {
    background: var(--primary-dark);
    border-bottom: 3px solid var(--accent-gold);
}

header .container {
    gap: 1.25rem;
}

.logo {
    min-width: 285px;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
}

.brand-link:hover {
    color: var(--white);
}

.brand-link img {
    display: block;
    width: 76px;
    height: 42px;
    object-fit: contain;
    border-radius: 4px;
    background: #fff;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-copy strong {
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
}

.brand-copy small {
    color: var(--light-gold);
    font-size: 0.72rem;
    margin-top: 0.25rem;
}

.menu a:hover, .menu a.active {
    color: var(--light-gold);
}

.search-bar button,
.secondary-btn {
    background-color: var(--primary-medium);
}

.search-bar button:hover,
.secondary-btn:hover {
    background-color: var(--primary-light);
}

.primary-btn {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.primary-btn:hover {
    background: var(--light-gold);
    color: var(--primary-dark);
}

.outline-btn {
    border-color: var(--accent-gold);
    color: var(--primary-dark);
}

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

.hero,
.page-header {
    background-image: linear-gradient(rgba(26, 41, 66, 0.88), rgba(26, 41, 66, 0.93)), url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31');
    border-bottom: 4px solid var(--accent-gold);
}

.hero h2,
.page-header h1 {
    letter-spacing: -0.02em;
}

.section-title::after {
    background: var(--accent-gold);
}

.category-icon,
.tool-category,
a {
    color: var(--primary-medium);
}

.category-card:hover,
.tool-card:hover,
.resource-card:hover {
    border-top: 3px solid var(--accent-gold);
}

.security-notice {
    background: #fffdf3;
    border-color: rgba(212, 175, 55, 0.45);
}

.security-notice h2 {
    color: var(--primary-dark);
}

footer {
    background: var(--primary-dark);
    border-top: 3px solid var(--accent-gold);
}

.footer-column h3,
.footer-contact h3 {
    color: var(--light-gold);
}

.footer-contact {
    max-width: 260px;
    margin-left: 2rem;
}

.footer-contact p {
    color: #d9e1ec;
    margin-bottom: 0.85rem;
}

.footer-contact a {
    color: var(--light-gold);
}

.dsr-contact-panel {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-medium));
    color: #fff;
}

.dsr-contact-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.dsr-contact-panel h2 {
    color: #fff;
    margin: 0.35rem 0 0.8rem;
}

.dsr-contact-panel p {
    max-width: 680px;
    color: #e4ebf4;
    margin-bottom: 0;
}

.eyebrow {
    color: var(--light-gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.dsr-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    flex-shrink: 0;
}

.light-outline {
    color: #fff;
    border-color: var(--light-gold);
}

.light-outline:hover {
    color: var(--primary-dark);
    background: var(--light-gold);
}

@media (max-width: 992px) {
    .logo {
        min-width: 0;
    }

    .dsr-contact-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-contact {
        margin: 0 0 2rem;
        max-width: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}


/* DSR — perfil profissional, localização e presença digital */
.dsr-professional-panel,
.dsr-location-panel {
    padding: 4.5rem 0;
    background: #fff;
}

.dsr-professional-panel {
    background: linear-gradient(180deg, #f5f7fa 0%, #ffffff 100%);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 2rem;
    text-align: center;
}

.section-heading h2 {
    color: var(--primary-dark);
    margin: 0.35rem 0 0.75rem;
}

.section-heading p {
    color: #526171;
}

.professional-grid,
.location-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.professional-card,
.location-details {
    border: 1px solid #dce4ee;
    border-top: 3px solid var(--accent-gold);
    border-radius: 10px;
    background: #fff;
    padding: 1.5rem;
    box-shadow: 0 10px 28px rgba(26, 41, 66, 0.08);
}

.professional-number {
    display: inline-block;
    color: var(--accent-gold);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin-bottom: 0.75rem;
}

.professional-card h3,
.location-details h3 {
    color: var(--primary-dark);
    margin-bottom: 0.6rem;
}

.professional-card p,
.location-details p {
    color: #526171;
    margin-bottom: 0;
}

.location-heading {
    margin-bottom: 2.25rem;
}

.location-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
    align-items: stretch;
}

.map-frame {
    min-height: 360px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(26, 41, 66, 0.12);
    background: #e1e8ed;
}

.map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
}

.location-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.9rem;
}

.location-details p {
    margin-bottom: 0.25rem;
}

.location-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.footer-contact .fa-linkedin {
    color: var(--light-gold);
}

@media (max-width: 800px) {
    .professional-grid,
    .location-grid {
        grid-template-columns: 1fr;
    }

    .map-frame,
    .map-frame iframe {
        min-height: 300px;
    }
}


/* DSR content hub: videos, talks and articles */
.content-hero {
    border-bottom: 3px solid var(--accent-gold);
}

.content-intro {
    padding: 4rem 0;
    background: #f5f7fa;
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
    gap: 2rem;
    align-items: center;
}

.intro-grid h2 {
    color: var(--primary-dark);
    margin: 0.35rem 0 0.75rem;
}

.intro-grid p {
    color: #526171;
    max-width: 720px;
}

.intro-callout {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: 1.5rem;
    border-left: 4px solid var(--accent-gold);
    border-radius: 0 10px 10px 0;
    background: var(--primary-dark);
    color: white;
    box-shadow: 0 10px 30px rgba(26, 41, 66, 0.16);
}

.intro-callout strong {
    color: var(--light-gold);
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.intro-callout span {
    font-size: 1.35rem;
    font-weight: 800;
}

.video-feature-section,
.source-library {
    padding: 4rem 0;
    background: #fff;
}

.video-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    gap: 2rem;
    align-items: stretch;
    padding: 1.25rem;
    border: 1px solid #dce4ee;
    border-radius: 12px;
    background: #f5f7fa;
    box-shadow: 0 10px 28px rgba(26, 41, 66, 0.08);
}

.video-embed {
    min-height: 340px;
    overflow: hidden;
    border-radius: 8px;
    background: #172c48;
}

.video-embed iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 340px;
    border: 0;
}

.video-feature-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.85rem;
    padding: 0.75rem;
}

.video-feature-copy h3 {
    color: var(--primary-dark);
    margin: 0;
}

.video-feature-copy p {
    color: #526171;
}

.text-link {
    color: var(--primary-blue);
    font-weight: 700;
}

.text-link:hover,
.text-link:focus-visible {
    color: var(--primary-dark);
}

.content-sources {
    padding: 4rem 0;
    background: #f5f7fa;
}

.source-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.source-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 1.5rem;
    border: 1px solid #dce4ee;
    border-top: 3px solid var(--accent-gold);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(26, 41, 66, 0.07);
}

.source-card h3 {
    color: var(--primary-dark);
    margin: 0;
}

.source-card p {
    color: #526171;
    flex: 1;
}

.source-tag {
    display: inline-block;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    background: #e7eef6;
    color: var(--primary-blue);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.source-resource {
    min-height: 230px;
}

.ethical-note {
    padding: 2.5rem 0;
    background: var(--primary-dark);
    color: #e9f0f7;
}

.ethical-note h2 {
    color: var(--light-gold);
    margin-bottom: 0.5rem;
}

.ethical-note p {
    max-width: 920px;
    margin: 0;
}

@media (max-width: 900px) {
    .intro-grid,
    .video-feature {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 620px) {
    .source-grid {
        grid-template-columns: 1fr;
    }

    .video-embed,
    .video-embed iframe {
        min-height: 240px;
    }
}


/* DSR — Menu de contato por público e páginas setoriais */
.menu > li.has-submenu {
    position: relative;
    display: flex;
    align-items: center;
}

.submenu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem;
    border: 0;
    background: transparent;
    color: var(--white);
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submenu-toggle i {
    font-size: 0.72rem;
    transition: transform 180ms ease-out;
}

.has-submenu:hover > .submenu-toggle,
.has-submenu:focus-within > .submenu-toggle,
.has-submenu.submenu-open > .submenu-toggle {
    color: var(--light-gold);
}

.has-submenu.submenu-open > .submenu-toggle i {
    transform: rotate(180deg);
}

.submenu {
    position: absolute;
    top: calc(100% + 0.7rem);
    right: 0;
    z-index: 1100;
    display: block;
    width: min(340px, 86vw);
    padding: 0.55rem;
    margin: 0;
    border-top: 3px solid var(--accent-gold);
    border-radius: 0 0 8px 8px;
    background: var(--primary-dark);
    box-shadow: 0 16px 30px rgba(10, 20, 35, 0.28);
    list-style: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 180ms ease-out, transform 180ms ease-out;
}

.has-submenu:hover > .submenu,
.has-submenu:focus-within > .submenu,
.has-submenu.submenu-open > .submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.submenu li {
    margin: 0;
}

.submenu a {
    display: block;
    padding: 0.75rem 0.8rem;
    border-radius: 5px;
    color: #f5f7fa;
    font-size: 0.88rem;
    line-height: 1.35;
}

.submenu a:hover,
.submenu a:focus-visible {
    background: var(--primary-medium);
    color: var(--light-gold);
}

.service-intro {
    padding: 4rem 0;
    background: var(--dsr-light-bg);
}

.service-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
    gap: 2rem;
    align-items: center;
}

.service-intro h2,
.service-list h2,
.service-process h2,
.service-audience-section h2 {
    color: var(--primary-dark);
}

.service-intro p {
    max-width: 760px;
    color: #526171;
}

.service-callout {
    padding: 1.5rem;
    border-left: 4px solid var(--accent-gold);
    border-radius: 0 10px 10px 0;
    background: var(--primary-dark);
    color: #fff;
    box-shadow: 0 12px 28px rgba(26, 41, 66, 0.16);
}

.service-callout strong {
    display: block;
    margin-bottom: 0.6rem;
    color: var(--light-gold);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.service-callout p {
    color: #e5edf5;
    margin-bottom: 1rem;
}

.service-list {
    padding: 4rem 0;
    background: #fff;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    border-top: 3px solid var(--accent-gold);
    border-radius: 9px;
    background: #f5f7fa;
    box-shadow: 0 8px 22px rgba(26, 41, 66, 0.07);
}

.service-icon,
.audience-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: var(--primary-dark);
    color: var(--light-gold);
    font-size: 1.15rem;
}

.service-card h3,
.audience-card h3 {
    color: var(--primary-dark);
    margin-bottom: 0.55rem;
}

.service-card p,
.service-card li,
.audience-card p {
    color: #526171;
}

.service-card ul {
    display: grid;
    gap: 0.55rem;
    margin: 1rem 0 0;
    padding-left: 1.1rem;
    font-size: 0.9rem;
}

.service-card li::marker {
    color: var(--accent-gold);
}

.service-process {
    padding: 3.5rem 0;
    background: var(--primary-dark);
    color: #eaf0f6;
}

.service-process h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 2rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.process-grid > div {
    padding: 1.25rem;
    border-left: 2px solid var(--accent-gold);
    background: rgba(255, 255, 255, 0.06);
}

.process-grid span {
    color: var(--light-gold);
    font-family: 'Fira Code', monospace;
    font-weight: 700;
}

.process-grid h3 {
    color: #fff;
    margin: 0.55rem 0;
}

.process-grid p {
    color: #d5e0eb;
    margin: 0;
}

.service-audience-section {
    padding: 4rem 0;
    background: #f5f7fa;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.audience-card {
    display: block;
    padding: 1.75rem;
    border-top: 3px solid var(--accent-gold);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(26, 41, 66, 0.08);
    transition: transform 180ms ease-out, box-shadow 180ms ease-out;
}

.audience-card:hover,
.audience-card:focus-visible {
    color: inherit;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(26, 41, 66, 0.14);
}

.audience-card .text-link {
    display: inline-block;
    margin-top: 1rem;
}

@media (max-width: 1100px) {
    .menu li {
        margin-left: 0.65rem;
    }

    .menu a,
    .submenu-toggle {
        font-size: 0.88rem;
    }

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

@media (max-width: 992px) {
    .menu {
        position: absolute;
        top: calc(100% + 3px);
        left: 0;
        right: 0;
        flex-direction: column;
        padding: 0.9rem 1rem 1.2rem;
        background: var(--primary-dark);
        box-shadow: 0 14px 25px rgba(10, 20, 35, 0.25);
    }

    .menu.active {
        display: flex;
    }

    .menu > li {
        width: 100%;
        margin: 0;
    }

    .menu > li > a,
    .submenu-toggle {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: space-between;
        padding: 0.75rem 0.55rem;
        text-align: left;
    }

    .submenu {
        position: static;
        width: 100%;
        margin: 0;
        padding: 0 0.4rem 0.4rem 1rem;
        border-top: 0;
        border-left: 2px solid var(--accent-gold);
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        display: none;
    }

    .has-submenu.submenu-open > .submenu {
        display: block;
    }

    .submenu a {
        font-size: 0.84rem;
    }

    .service-intro-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .service-grid,
    .process-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .service-intro,
    .service-list,
    .service-audience-section {
        padding: 3rem 0;
    }
}
