/* ===================================
   4xPortal Theme - Main Styles
   =================================== */

/* CSS Variables */
:root {
    --color-primary: #1E60FF;
    --color-primary-hover: #1A54E6;
    --color-primary-active: #1649CC;
    --color-secondary: #2979FF;
    --color-text: #121212;
    --color-text-light: #6E6E6E;
    --color-bg: #FFFFFF;
    --color-bg-alt: #F8F9FA;
    --color-border: #EDEDED;
    --color-border-hover: #CFCFCF;
    --transition: all 0.3s ease;
}

/* Dark Mode Variables */
body.dark-mode {
    --color-primary: #4A82FF;
    --color-primary-hover: #3071E6;
    --color-primary-active: #2A63CC;
    --color-text: #FFFFFF;
    --color-text-light: #B3B3B3;
    --color-bg: #121212;
    --color-bg-alt: #1A1A1A;
    --color-border: #333333;
    --color-border-hover: #4A4A4A;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 3rem;
    }
}

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

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

@media (min-width: 768px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
}

@media (min-width: 1024px) {
    h1 { font-size: 3.75rem; }
    h2 { font-size: 3rem; }
}

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

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

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

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #FFFFFF;
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    color: #FFFFFF;
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: #FFFFFF;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
    transition: var(--transition);
}

.btn-link:hover {
    gap: 0.75rem;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--color-bg);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.site-header:hover {
    border-bottom-color: var(--color-border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* Logo */
.site-branding .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.site-logo {
    height: 70px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
}

@media (min-width: 768px) {
    .site-logo {
        height: 80px;
        max-width: 320px;
    }
}

.logo-icon {
    width: 32px;
    height: 32px;
    background-color: var(--color-secondary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.875rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-text);
}

/* Navigation */
.main-navigation {
    display: none;
}

@media (min-width: 1024px) {
    .main-navigation {
        display: block;
    }
}

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

.nav-menu li a {
    color: var(--color-text);
    opacity: 0.8;
    font-weight: 500;
    font-size: 0.875rem;
    padding-bottom: 0.25rem;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a {
    opacity: 1;
    border-bottom-color: var(--color-secondary);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--color-text);
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-toggle .close-icon {
    display: none;
}

.mobile-menu-toggle.active .menu-icon {
    display: none;
}

.mobile-menu-toggle.active .close-icon {
    display: block;
}

/* Dark Mode Toggle */
.dark-mode-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--color-text);
    cursor: pointer;
    padding: 0.5rem;
    margin-left: 1rem;
}

body:not(.dark-mode) .dark-mode-toggle .moon-icon {
    display: none;
}

body.dark-mode .dark-mode-toggle .sun-icon {
    display: none;
}

/* Header CTA */
.header-cta {
    display: none;
}

@media (min-width: 1024px) {
    .header-cta {
        display: inline-flex;
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid var(--color-border);
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-menu {
    list-style: none;
    margin-bottom: 1rem;
}

.mobile-nav-menu li {
    margin-bottom: 0.5rem;
}

.mobile-nav-menu li a {
    display: block;
    padding: 0.5rem 0;
    color: var(--color-text);
    opacity: 0.8;
    font-weight: 500;
}

.mobile-nav-menu li a:hover {
    opacity: 1;
}

.mobile-cta {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero-section {
        padding: 6rem 0;
    }
}

.hero-background {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: 
        radial-gradient(circle at center, rgba(244, 246, 249, 1) 0%, transparent 70%),
        linear-gradient(rgba(244, 246, 249, 1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(244, 246, 249, 1) 1px, transparent 1px);
    background-size: cover, 40px 40px, 40px 40px;
}

body.dark-mode .hero-background {
    opacity: 0.05;
}

.hero-wrapper {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .hero-wrapper {
        flex-direction: row;
        gap: 3rem;
    }
}

.hero-content {
    flex: 1;
    text-align: center;
}

@media (min-width: 768px) {
    .hero-content {
        text-align: left;
    }
}

.hero-title {
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title-line {
    display: block;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 540px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .hero-buttons {
        justify-content: center;
    }
}

.hero-image {
    flex: 1;
    max-width: 500px;
    width: 100%;
}

.hero-image-wrapper {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 120px 24px 120px 24px;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-image-wrapper:hover .hero-img {
    transform: scale(1.05);
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background-color: var(--color-bg-alt);
}

@media (min-width: 768px) {
    .services-section {
        padding: 8rem 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-title {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-description {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
    transition: var(--transition);
}

.service-link:hover {
    gap: 0.75rem;
}

.section-cta {
    text-align: center;
}

/* Industries Section */
.industries-section {
    padding: 5rem 0;
    background-color: var(--color-bg-alt);
}

@media (min-width: 768px) {
    .industries-section {
        padding: 8rem 0;
    }
}

.industries-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.industry-card {
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.industry-card:hover {
    border-color: var(--color-border-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.industry-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

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

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

.industry-stats {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    color: #FFFFFF;
    font-size: 0.875rem;
    font-weight: 600;
}

.industry-content {
    padding: 1.5rem 2rem;
}

.industry-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.industry-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-icon svg {
    width: 24px;
    height: 24px;
}

.industry-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
}

.industry-description {
    color: var(--color-text-light);
    line-height: 1.7;
}

.industries-cta {
    text-align: center;
}

.industries-cta-box {
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .industries-cta-box {
        padding: 3rem;
    }
}

.industries-cta-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .industries-cta-title {
        font-size: 1.875rem;
    }
}

.industries-cta-text {
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Statistics Section - New Design */
.stats-section-new {
    position: relative;
    padding: 4rem 0;
    background-color: var(--color-bg);
    overflow: hidden;
}

@media (min-width: 768px) {
    .stats-section-new {
        padding: 6rem 0;
    }
}

.stats-background {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image: 
        radial-gradient(circle at center, rgba(244, 246, 250, 1) 0%, transparent 70%),
        linear-gradient(rgba(244, 246, 250, 1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(244, 246, 250, 1) 1px, transparent 1px);
    background-size: cover, 80px 80px, 80px 80px;
}

body.dark-mode .stats-background {
    opacity: 0.08;
}

.stats-text-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .stats-text-row {
        grid-template-columns: 7fr 5fr;
        gap: 3rem;
        margin-bottom: 4.5rem;
    }
}

.stats-headline {
    position: relative;
}

.stats-title {
    font-weight: 300;
    line-height: 1.2;
}

.stats-title-line {
    display: block;
    font-size: 2.5rem;
}

@media (min-width: 768px) {
    .stats-title-line {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .stats-title-line {
        font-size: 3.75rem;
    }
}

.stats-description {
    display: flex;
    align-items: end;
}

.stats-description p {
    font-weight: 300;
    font-size: 1.125rem;
    color: #666666;
    line-height: 1.7;
    text-align: left;
}

body.dark-mode .stats-description p {
    color: #B3B3B3;
}

@media (min-width: 768px) {
    .stats-description p {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .stats-description p {
        text-align: right;
    }
}

.stats-grid-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .stats-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1280px) {
    .stats-grid-new {
        grid-template-columns: repeat(4, 1fr);
        gap: 3.5rem;
        margin-top: 4.5rem;
    }
}

.stat-card-new {
    padding: 1.5rem 2rem;
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .stat-card-new {
        padding: 2rem;
    }
}

.stat-card-new:hover {
    transform: translateY(-4px);
}

.stat-value {
    font-weight: 300;
    font-size: 3rem;
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .stat-value {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .stat-value {
        font-size: 4.5rem;
    }
}

.stat-caption {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

@media (min-width: 768px) {
    .stat-caption {
        font-size: 1.25rem;
    }
}

/* Testimonials Section - New Design */
.testimonials-section-new {
    position: relative;
    padding: 5rem 0;
    background-color: var(--color-bg);
    overflow: hidden;
}

@media (min-width: 768px) {
    .testimonials-section-new {
        padding: 8rem 0;
    }
}

@media (min-width: 1024px) {
    .testimonials-section-new {
        padding: 10rem 0;
    }
}

.testimonial-background-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    font-weight: 200;
    letter-spacing: 0.15em;
    color: #B7B7B7;
    opacity: 0.1;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

body.dark-mode .testimonial-background-text {
    color: #2A2A2A;
    opacity: 0.2;
}

@media (min-width: 768px) {
    .testimonial-background-text {
        font-size: 12rem;
    }
}

@media (min-width: 1024px) {
    .testimonial-background-text {
        font-size: 15rem;
    }
}

@media (min-width: 1536px) {
    .testimonial-background-text {
        font-size: 20rem;
    }
}

.testimonial-content-wrapper {
    position: relative;
    z-index: 10;
    text-align: center;
}

.testimonial-portrait {
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .testimonial-portrait {
        margin-bottom: 3rem;
    }
}

.testimonial-portrait img {
    width: 8rem;
    height: 8rem;
    border-radius: 0.5rem;
    object-fit: cover;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .testimonial-portrait img {
        width: 10rem;
        height: 10rem;
    }
}

@media (min-width: 1024px) {
    .testimonial-portrait img {
        width: 12rem;
        height: 12rem;
    }
}

.testimonial-quote {
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .testimonial-quote {
        margin-bottom: 2.5rem;
    }
}

.testimonial-quote p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #000000;
    max-width: 48rem;
    margin: 0 auto;
}

body.dark-mode .testimonial-quote p {
    color: #FFFFFF;
}

@media (min-width: 768px) {
    .testimonial-quote p {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .testimonial-quote p {
        font-size: 1.5rem;
    }
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author-name {
    font-size: 1rem;
    font-weight: 600;
    color: #222222;
}

body.dark-mode .testimonial-author-name {
    color: #FFFFFF;
}

@media (min-width: 768px) {
    .testimonial-author-name {
        font-size: 1.125rem;
    }
}

.testimonial-author-position {
    font-size: 0.875rem;
    color: #6B6B6B;
}

body.dark-mode .testimonial-author-position {
    color: #B3B3B3;
}

@media (min-width: 768px) {
    .testimonial-author-position {
        font-size: 1rem;
    }
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background-color: var(--color-bg);
}

@media (min-width: 768px) {
    .cta-section {
        padding: 8rem 0;
    }
}

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

.cta-title {
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .cta-subtitle {
        font-size: 1.25rem;
    }
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* Footer */
.site-footer {
    background-color: #0E1628;
    color: #FFFFFF;
    padding: 4rem 0 3rem;
}

body.dark-mode .site-footer {
    background-color: #0A0A0A;
}

.footer-cta-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .footer-cta-row {
        flex-direction: row;
        justify-content: space-between;
        gap: 4rem;
        margin-bottom: 4rem;
    }
}

.footer-cta-headline {
    flex: 1;
    text-align: center;
}

@media (min-width: 1024px) {
    .footer-cta-headline {
        text-align: left;
    }
}

.footer-cta-title {
    font-size: 1.875rem;
    line-height: 1.2;
    font-weight: 700;
    max-width: 720px;
}

@media (min-width: 768px) {
    .footer-cta-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .footer-cta-title {
        font-size: 3rem;
        margin: 0;
    }
}

@media (min-width: 1280px) {
    .footer-cta-title {
        font-size: 3.75rem;
    }
}

@media (max-width: 1023px) {
    .footer-cta-title {
        margin: 0 auto;
    }
}

.footer-cta-text {
    color: rgba(255, 255, 255, 0.9);
}

.footer-cta-highlight {
    color: #2E77FF;
}

body.dark-mode .footer-cta-highlight {
    color: #4A82FF;
}

.footer-cta-button-wrapper {
    flex-shrink: 0;
    text-align: center;
}

@media (min-width: 1024px) {
    .footer-cta-button-wrapper {
        text-align: right;
    }
}

.footer-cta-circles {
    position: relative;
    display: inline-block;
}

.footer-cta-ring-outer {
    position: absolute;
    top: -0.5rem;
    left: -0.5rem;
    width: 11rem;
    height: 11rem;
    border-radius: 50%;
    border: 1px solid #162033;
    opacity: 0.3;
}

@media (min-width: 768px) {
    .footer-cta-ring-outer {
        width: 15rem;
        height: 15rem;
    }
}

@media (min-width: 1024px) {
    .footer-cta-ring-outer {
        width: 16rem;
        height: 16rem;
    }
}

body.dark-mode .footer-cta-ring-outer {
    border-color: #2A2A2A;
}

.footer-cta-ring-inner {
    position: absolute;
    top: -0.25rem;
    left: -0.25rem;
    width: 10.5rem;
    height: 10.5rem;
    border-radius: 50%;
    border: 2px solid #1B2435;
}

@media (min-width: 768px) {
    .footer-cta-ring-inner {
        width: 14.5rem;
        height: 14.5rem;
    }
}

@media (min-width: 1024px) {
    .footer-cta-ring-inner {
        width: 15.5rem;
        height: 15.5rem;
    }
}

body.dark-mode .footer-cta-ring-inner {
    border-color: #333333;
}

.footer-cta-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 11rem;
    height: 11rem;
    border-radius: 50%;
    background-color: #2E77FF;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.2s ease-out;
}

@media (min-width: 768px) {
    .footer-cta-button {
        width: 14rem;
        height: 14rem;
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .footer-cta-button {
        width: 15rem;
        height: 15rem;
    }
}

body.dark-mode .footer-cta-button {
    background-color: #4A82FF;
}

.footer-cta-button:hover {
    background-color: #3E86FF;
    transform: scale(1.05);
    color: #FFFFFF;
}

body.dark-mode .footer-cta-button:hover {
    background-color: #5A92FF;
}

.footer-cta-button:active {
    background-color: #1E5FCC;
    transform: scale(0.95);
}

body.dark-mode .footer-cta-button:active {
    background-color: #3071E6;
}

.footer-nav-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .footer-nav-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-nav-grid {
        grid-template-columns: repeat(4, 1fr);
        margin-bottom: 3.5rem;
    }
}

.footer-nav-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-nav-title {
    font-size: 1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0;
}

.footer-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.2s;
}

.footer-nav-links a:hover {
    color: rgba(255, 255, 255, 1);
    text-decoration: underline;
}

.footer-legal-bar {
    border-top: 1px solid #1B2435;
    padding-top: 1.5rem;
}

body.dark-mode .footer-legal-bar {
    border-top-color: #333333;
}

@media (min-width: 768px) {
    .footer-legal-bar {
        padding-top: 2rem;
    }
}

.footer-legal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-legal-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .footer-legal-links {
        gap: 1rem;
    }
}

.footer-legal-links a {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.2s;
}

.footer-legal-links a:hover {
    color: rgba(255, 255, 255, 1);
}

.footer-legal-separator {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-copyright {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-copyright {
        text-align: right;
    }
}

.footer-copyright p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.fade-in.animate-in {
    opacity: 1;
}

.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.scale-up {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scale-up.animate-in {
    opacity: 1;
    transform: scale(1);
}

/* Stagger Animation */
.stagger-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.stagger-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Hover Animations */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.hover-scale {
    transition: transform 0.3s ease;
}

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

.hover-glow {
    transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(30, 96, 255, 0.3);
}

body.dark-mode .hover-glow:hover {
    box-shadow: 0 0 30px rgba(74, 130, 255, 0.3);
}

/* Parallax */
.parallax-element {
    will-change: transform;
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Bounce Animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.bounce {
    animation: bounce 2s ease-in-out infinite;
}

/* Rotate Animation */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.rotate {
    animation: rotate 20s linear infinite;
}

/* Utility Classes */
.main-content {
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .main-content {
        padding: 8rem 0;
    }
}

/* About Page Styles */
.about-hero-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

@media (min-width: 768px) {
    .about-hero-section {
        padding: 8rem 0;
    }
}

.mission-vision-section {
    padding: 5rem 0;
    background-color: var(--color-bg-alt);
}

@media (min-width: 768px) {
    .mission-vision-section {
        padding: 8rem 0;
    }
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .mission-vision-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

.mission-box,
.vision-box {
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    padding: 2rem;
}

@media (min-width: 768px) {
    .mission-box,
    .vision-box {
        padding: 3rem;
    }
}

.mission-title,
.vision-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .mission-title,
    .vision-title {
        font-size: 1.875rem;
    }
}

.mission-text,
.vision-text {
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.values-section {
    padding: 5rem 0;
    background-color: var(--color-bg);
}

@media (min-width: 768px) {
    .values-section {
        padding: 8rem 0;
    }
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.value-card {
    background-color: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: var(--transition);
}

@media (min-width: 768px) {
    .value-card {
        padding: 2.5rem;
    }
}

.value-card:hover {
    border-color: var(--color-border-hover);
}

.value-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(30, 96, 255, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

body.dark-mode .value-icon {
    background-color: rgba(74, 130, 255, 0.1);
}

.value-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
}

.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.value-description {
    color: var(--color-text-light);
    line-height: 1.7;
}

.about-cta-section {
    padding: 5rem 0;
    background-color: var(--color-bg-alt);
}

@media (min-width: 768px) {
    .about-cta-section {
        padding: 8rem 0;
    }
}

.about-cta-content {
    text-align: center;
}

.about-cta-title {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .about-cta-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .about-cta-title {
        font-size: 3rem;
    }
}

.about-cta-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 3rem;
}

@media (min-width: 768px) {
    .about-cta-subtitle {
        font-size: 1.25rem;
    }
}

.about-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .about-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* Services Page Styles */
.services-hero-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

@media (min-width: 768px) {
    .services-hero-section {
        padding: 8rem 0;
    }
}

.services-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.services-hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .services-hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .services-hero-title {
        font-size: 3.75rem;
    }
}

.services-hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .services-hero-subtitle {
        font-size: 1.25rem;
    }
}

.services-detail-section {
    padding: 5rem 0;
    background-color: var(--color-bg-alt);
}

@media (min-width: 768px) {
    .services-detail-section {
        padding: 8rem 0;
    }
}

.services-detail-list {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

@media (min-width: 768px) {
    .services-detail-list {
        gap: 8rem;
    }
}

.service-detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .service-detail-item {
        flex-direction: row;
        gap: 4rem;
    }
    
    .service-detail-item.reversed {
        flex-direction: row-reverse;
    }
}

.service-detail-image {
    flex: 1;
    width: 100%;
}

.service-detail-image img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 1.5rem;
}

.service-detail-content {
    flex: 1;
    width: 100%;
}

.service-detail-box {
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    padding: 2rem;
}

@media (min-width: 768px) {
    .service-detail-box {
        padding: 3rem;
    }
}

.service-detail-icon {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-detail-icon svg {
    width: 32px;
    height: 32px;
}

.service-detail-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .service-detail-title {
        font-size: 1.875rem;
    }
}

.service-detail-description {
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-features-list {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.service-feature-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.service-feature-item span {
    color: var(--color-text-light);
    line-height: 1.6;
}

.service-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    color: #FFFFFF;
    font-weight: 600;
    transition: all 0.2s;
}

.service-detail-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    color: #FFFFFF;
}

.service-detail-btn svg {
    width: 18px;
    height: 18px;
}

.services-cta-section {
    padding: 5rem 0;
    background-color: var(--color-bg);
}

@media (min-width: 768px) {
    .services-cta-section {
        padding: 8rem 0;
    }
}

.services-cta-content {
    text-align: center;
}

.services-cta-title {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .services-cta-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .services-cta-title {
        font-size: 3rem;
    }
}

.services-cta-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 3rem;
}

@media (min-width: 768px) {
    .services-cta-subtitle {
        font-size: 1.25rem;
    }
}

.services-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .services-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* Blog Page Styles */
.blog-hero-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

@media (min-width: 768px) {
    .blog-hero-section {
        padding: 8rem 0;
    }
}

.blog-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.blog-hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .blog-hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .blog-hero-title {
        font-size: 3.75rem;
    }
}

.blog-hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .blog-hero-subtitle {
        font-size: 1.25rem;
    }
}

.blog-featured-section {
    padding: 5rem 0;
    background-color: var(--color-bg-alt);
}

@media (min-width: 768px) {
    .blog-featured-section {
        padding: 8rem 0;
    }
}

.blog-featured-card {
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: var(--transition);
}

.blog-featured-card:hover {
    border-color: var(--color-border-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-featured-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

@media (min-width: 1024px) {
    .blog-featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.blog-featured-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .blog-featured-image {
        aspect-ratio: 1/1;
    }
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-featured-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .blog-featured-content {
        padding: 3rem;
    }
}

.blog-featured-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgba(30, 96, 255, 0.1);
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    margin-bottom: 1rem;
    width: fit-content;
}

body.dark-mode .blog-featured-badge {
    background-color: rgba(74, 130, 255, 0.1);
}

.blog-featured-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .blog-featured-title {
        font-size: 1.875rem;
    }
}

.blog-featured-title a {
    color: var(--color-text);
    transition: var(--transition);
}

.blog-featured-title a:hover {
    color: var(--color-primary);
}

.blog-featured-excerpt {
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-meta-item svg {
    width: 16px;
    height: 16px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
    transition: var(--transition);
}

.blog-read-more:hover {
    gap: 0.75rem;
}

.blog-read-more svg {
    width: 18px;
    height: 18px;
}

.blog-categories-section {
    padding: 3rem 0;
    background-color: var(--color-bg);
}

.blog-categories-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.blog-category-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    background-color: var(--color-bg-alt);
    color: var(--color-text-light);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.blog-category-btn:hover,
.blog-category-btn.active {
    background-color: var(--color-primary);
    color: #FFFFFF;
}

.blog-posts-section {
    padding: 0 0 5rem 0;
    background-color: var(--color-bg);
}

@media (min-width: 768px) {
    .blog-posts-section {
        padding: 0 0 8rem 0;
    }
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-posts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-post-card {
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

body.dark-mode .blog-post-card {
    background-color: #1E1E1E;
}

.blog-post-card:hover {
    border-color: var(--color-border-hover);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-post-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

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

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

.blog-post-content {
    padding: 1.5rem;
}

.blog-post-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--color-bg-alt);
    color: var(--color-text-light);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
    margin-bottom: 0.75rem;
}

body.dark-mode .blog-post-category {
    background-color: #2A2A2A;
}

.blog-post-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.blog-post-title a {
    color: var(--color-text);
    transition: var(--transition);
}

.blog-post-card:hover .blog-post-title a {
    color: var(--color-primary);
}

.blog-post-excerpt {
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--color-text-light);
}

.blog-post-meta-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-post-meta-left svg {
    width: 14px;
    height: 14px;
}

.blog-post-meta-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.blog-post-meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-post-meta-item svg {
    width: 14px;
    height: 14px;
}

.blog-no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
}

.blog-no-posts p {
    font-size: 1.125rem;
    color: var(--color-text-light);
}

.blog-load-more {
    text-align: center;
    margin-top: 4rem;
}

.blog-newsletter-section {
    padding: 5rem 0;
    background-color: var(--color-bg-alt);
}

@media (min-width: 768px) {
    .blog-newsletter-section {
        padding: 8rem 0;
    }
}

.blog-newsletter-content {
    text-align: center;
}

.blog-newsletter-title {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .blog-newsletter-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .blog-newsletter-title {
        font-size: 3rem;
    }
}

.blog-newsletter-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 3rem;
}

@media (min-width: 768px) {
    .blog-newsletter-subtitle {
        font-size: 1.25rem;
    }
}

.blog-newsletter-form {
    max-width: 28rem;
    margin: 0 auto;
}

.blog-newsletter-input-group {
    display: flex;
    gap: 0.75rem;
}

.blog-newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid var(--color-border);
    background-color: var(--color-bg);
    color: var(--color-text);
    font-size: 1rem;
    transition: var(--transition);
}

.blog-newsletter-input::placeholder {
    color: var(--color-text-light);
}

.blog-newsletter-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(30, 96, 255, 0.1);
}

body.dark-mode .blog-newsletter-input:focus {
    box-shadow: 0 0 0 3px rgba(74, 130, 255, 0.1);
}

.blog-newsletter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    background-color: var(--color-primary);
    color: #FFFFFF;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.blog-newsletter-btn:hover {
    background-color: var(--color-primary-hover);
}

.blog-newsletter-btn:active {
    background-color: var(--color-primary-active);
}

.blog-newsletter-btn svg {
    width: 18px;
    height: 18px;
}

/* Service Detail Page Styles */
.service-detail-hero {
    position: relative;
    padding: 5rem 0 3rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .service-detail-hero {
        padding: 8rem 0 4rem;
    }
}

.service-detail-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.service-detail-hero-icon {
    width: 80px;
    height: 80px;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.service-detail-hero-icon svg {
    width: 40px;
    height: 40px;
}

.service-detail-hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .service-detail-hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .service-detail-hero-title {
        font-size: 3.75rem;
    }
}

.service-detail-hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

@media (min-width: 768px) {
    .service-detail-hero-subtitle {
        font-size: 1.5rem;
    }
}

.service-detail-image-section {
    padding: 0 0 5rem;
    background-color: var(--color-bg);
}

@media (min-width: 768px) {
    .service-detail-image-section {
        padding: 0 0 8rem;
    }
}

.service-detail-hero-image {
    border-radius: 1.5rem;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-detail-description-section {
    padding: 5rem 0;
    background-color: var(--color-bg-alt);
}

@media (min-width: 768px) {
    .service-detail-description-section {
        padding: 8rem 0;
    }
}

.service-detail-description-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .service-detail-description-grid {
        grid-template-columns: 1.5fr 1fr;
        gap: 4rem;
    }
}

.service-detail-section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .service-detail-section-title {
        font-size: 2.5rem;
    }
}

.service-detail-description-text {
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

.service-detail-benefits {
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    padding: 2rem;
}

@media (min-width: 768px) {
    .service-detail-benefits {
        padding: 2.5rem;
    }
}

.service-detail-benefits-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-detail-benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-detail-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.service-detail-benefits-list li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.service-detail-benefits-list li span {
    color: var(--color-text);
    line-height: 1.6;
}

.service-detail-services-section {
    padding: 5rem 0;
    background-color: var(--color-bg);
}

@media (min-width: 768px) {
    .service-detail-services-section {
        padding: 8rem 0;
    }
}

.service-detail-section-title-center {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .service-detail-section-title-center {
        font-size: 2.5rem;
        margin-bottom: 4rem;
    }
}

.service-detail-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .service-detail-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-detail-service-card {
    background-color: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: var(--transition);
}

.service-detail-service-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
}

.service-detail-service-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-detail-service-card-description {
    color: var(--color-text-light);
    line-height: 1.7;
}

.service-detail-tech-section {
    padding: 5rem 0;
    background-color: var(--color-bg-alt);
}

@media (min-width: 768px) {
    .service-detail-tech-section {
        padding: 8rem 0;
    }
}

.service-detail-tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.service-detail-tech-badge {
    padding: 0.75rem 1.5rem;
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    transition: var(--transition);
}

.service-detail-tech-badge:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.service-detail-case-study-section {
    padding: 5rem 0;
    background-color: var(--color-bg);
}

@media (min-width: 768px) {
    .service-detail-case-study-section {
        padding: 8rem 0;
    }
}

.service-detail-case-study-card {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1A54E6 100%);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .service-detail-case-study-card {
        padding: 4rem 3rem;
    }
}

.service-detail-case-study-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.service-detail-case-study-title {
    font-size: 1.875rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .service-detail-case-study-title {
        font-size: 2.5rem;
    }
}

.service-detail-case-study-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

@media (min-width: 768px) {
    .service-detail-case-study-description {
        font-size: 1.25rem;
    }
}

.service-detail-cta-section {
    padding: 5rem 0;
    background-color: var(--color-bg-alt);
}

@media (min-width: 768px) {
    .service-detail-cta-section {
        padding: 8rem 0;
    }
}

.service-detail-cta-content {
    text-align: center;
}

.service-detail-cta-title {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .service-detail-cta-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .service-detail-cta-title {
        font-size: 3rem;
    }
}

.service-detail-cta-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 3rem;
}

@media (min-width: 768px) {
    .service-detail-cta-subtitle {
        font-size: 1.25rem;
    }
}

.service-detail-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .service-detail-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* ===================================
   Mega Menu Dropdown Styles
   =================================== */

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

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--color-text);
    font-weight: 500;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav-menu > li > a:hover {
    color: var(--color-primary);
}

.nav-menu > li.has-dropdown {
    position: relative;
}

.dropdown-toggle svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.has-dropdown:hover .dropdown-toggle svg {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    min-width: 800px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateX(-50%) translateY(10px);
    z-index: 1000;
    margin-top: 1rem;
}

body.dark-mode .mega-menu {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.has-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.mega-menu-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mega-menu-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.mega-menu-title svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
}

.mega-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mega-menu-list li a {
    display: flex;
    flex-direction: column;
    padding: 0.75rem;
    border-radius: 8px;
    transition: var(--transition);
    color: var(--color-text);
    font-weight: 500;
}

.mega-menu-list li a:hover {
    background: var(--color-bg-alt);
    color: var(--color-primary);
}

.mega-menu-list li a span {
    font-size: 0.75rem;
    color: var(--color-text-light);
    font-weight: 400;
    margin-top: 0.25rem;
}

/* ===================================
   Product Page Styles
   =================================== */

.product-hero {
    position: relative;
    padding: 8rem 0 6rem;
    overflow: hidden;
}

.product-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .product-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.product-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--color-primary);
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.product-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .product-hero-title {
        font-size: 4rem;
    }
}

.product-hero-subtitle {
    font-size: 1.5rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.product-hero-description {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.product-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.product-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.product-features-section {
    padding: 6rem 0;
    background: var(--color-bg-alt);
}

.product-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .product-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .product-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-feature-card {
    background: var(--color-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.product-feature-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
}

.product-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.product-feature-icon svg {
    width: 28px;
    height: 28px;
}

.product-feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.product-feature-card p {
    color: var(--color-text-light);
    line-height: 1.7;
}

.product-benefits-section {
    padding: 6rem 0;
}

.product-benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 768px) {
    .product-benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.product-benefits-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.product-benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-benefits-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.product-benefits-list li svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.product-benefits-list li strong {
    display: block;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.product-benefits-list li p {
    color: var(--color-text-light);
}

.product-benefits-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.product-how-section {
    padding: 6rem 0;
    background: var(--color-bg-alt);
}

.product-steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .product-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .product-steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-step-card {
    background: var(--color-bg);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.product-step-number {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.product-step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.product-step-card p {
    color: var(--color-text-light);
}

.product-cta-section {
    padding: 6rem 0;
}

.product-cta-card {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    padding: 4rem 2rem;
    border-radius: 16px;
    text-align: center;
    color: white;
}

.product-cta-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.product-cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

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

/* ===================================
   Industry Page Styles
   =================================== */

.industry-hero {
    position: relative;
    padding: 8rem 0 6rem;
    text-align: center;
}

.industry-hero-icon {
    width: 80px;
    height: 80px;
    background: var(--color-bg-alt);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.industry-hero-icon svg {
    width: 40px;
    height: 40px;
}

.industry-hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .industry-hero-title {
        font-size: 4rem;
    }
}

.industry-hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.industry-stats-section {
    padding: 4rem 0;
    background: var(--color-bg-alt);
}

.industry-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .industry-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .industry-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.industry-stat-card {
    background: var(--color-bg);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--color-border);
}

.industry-stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.industry-stat-label {
    color: var(--color-text-light);
    font-size: 1rem;
}

.industry-challenges-section {
    padding: 6rem 0;
}

.industry-challenges-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .industry-challenges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .industry-challenges-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.industry-challenge-card {
    background: var(--color-bg-alt);
    padding: 2rem;
    border-radius: 12px;
    transition: var(--transition);
}

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

.industry-challenge-card svg {
    width: 40px;
    height: 40px;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.industry-challenge-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.industry-challenge-card p {
    color: var(--color-text-light);
    line-height: 1.7;
}

.industry-products-section {
    padding: 6rem 0;
    background: var(--color-bg-alt);
}

.industry-products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .industry-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.industry-product-card {
    background: var(--color-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

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

.industry-product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.industry-product-content {
    padding: 2rem;
}

.industry-product-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.industry-product-subtitle {
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.industry-product-description {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.industry-product-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.industry-product-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-light);
}

.industry-product-features li svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.industry-cta-section {
    padding: 6rem 0;
    text-align: center;
}

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

.industry-cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.industry-cta-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

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

/* ===================================
   Careers Page Styles
   =================================== */

.careers-hero {
    position: relative;
    padding: 8rem 0 6rem;
    text-align: center;
}

.careers-hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .careers-hero-title {
        font-size: 4rem;
    }
}

.careers-hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.careers-why-section {
    padding: 6rem 0;
    background: var(--color-bg-alt);
}

.careers-benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .careers-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .careers-benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.careers-benefit-card {
    background: var(--color-bg);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

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

.careers-benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.careers-benefit-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.careers-benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.careers-benefit-card p {
    color: var(--color-text-light);
    line-height: 1.7;
}

.careers-positions-section {
    padding: 6rem 0;
}

.careers-jobs-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.job-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.job-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    cursor: pointer;
    gap: 1rem;
}

.job-title-section {
    flex: 1;
}

.job-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.job-meta svg {
    width: 16px;
    height: 16px;
}

.job-toggle {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-border);
    background: var(--color-bg-alt);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.job-toggle:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.job-toggle:hover svg {
    color: white;
}

.job-toggle svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.job-card.open .job-toggle svg {
    transform: rotate(180deg);
}

.job-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 2rem;
}

.job-card.open .job-details {
    padding: 0 2rem 2rem;
}

.job-section {
    margin-bottom: 2rem;
}

.job-section h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.job-section p {
    color: var(--color-text-light);
    line-height: 1.7;
}

.job-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.job-section ul li {
    color: var(--color-text-light);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
}

.job-section ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.careers-cta-section {
    padding: 6rem 0;
    background: var(--color-bg-alt);
}

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

.careers-cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.careers-cta-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

@media (max-width: 767px) {
    .job-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .job-toggle {
        align-self: flex-end;
    }
    
    .job-meta {
        flex-direction: column;
        gap: 0.75rem;
    }
}
