/* Tesla-inspired design for South Jersey Web Studio */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header & Navigation */
header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    box-shadow: none;
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.3s ease,
        backdrop-filter 0.3s ease,
        border-bottom 0.3s ease,
        box-shadow 0.3s ease;
}

header.scrolled {
    position: fixed;
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
    animation: dropDown 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

header.scrolled.removing {
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(12px) !important;
}

@keyframes dropDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes slideUp {
    0% {
        transform: translateY(0);
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(12px);
    }

    99% {
        transform: translateY(-100%);
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(12px);
    }

    100% {
        transform: translateY(-100%);
        background: transparent;
        backdrop-filter: none;
    }
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px;
    height: 100px;
    transition: all 0.15s ease;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    gap: 20px;
}

header.scrolled nav .container {
    padding: 16px 24px;
    height: 80px;
    max-width: 1200px;
}

nav .logo {
    display: flex;
    align-items: center;
}

nav .logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: invert(1) brightness(1);
    transition: all 0.15s ease;
}

header.scrolled nav .logo img {
    height: 40px;
    filter: none;
}

nav .menu ul {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

nav .menu ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.15s ease;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

header.scrolled nav .menu ul li a {
    color: #1a1a1a;
    text-shadow: none;
    font-size: 14px;
}

nav .menu ul li a:hover {}

nav .menu ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3498db;
    transition: width 0.3s ease;
}

nav .menu ul li a:hover::after {
    width: 100%;
}

/* Phone Button */
li.nav-phone {
    display: flex;
    align-items: center;
    margin: 0 !important;
    padding: 0 !important;
}

.nav-phone {
    display: flex;
    align-items: center;
    height: 100%;
    margin: 0 !important;
}

.phone-button {
    display: inline-block;
    padding: 10px 16px;
    background: #ffffff;
    color: #1a1a1a !important;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-shadow: none !important;
    border: 1px solid #ffffff;
    line-height: 1.2;
    vertical-align: baseline;
}

.phone-button:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.phone-button::after {
    display: none !important;
}

header.scrolled .phone-button {
    padding: 8px 14px;
    font-size: 13px;
    background: #3498db;
    color: white !important;
    border: 1px solid #3498db;
}

header.scrolled .phone-button:hover {
    background: #2980b9;
    border: 1px solid #2980b9;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1000;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

header.scrolled .hamburger span {
    background: #1a1a1a;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Main Content */
main {
    margin-top: 0;
}

/* Section Styling */
section {
    padding: 100px 0;
    position: relative;
}

section:nth-child(even) {
    background: #f8f9fa;
}

/* Services Section Enhancement */
.services-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%233498db" fill-opacity="0.08"><circle cx="30" cy="30" r="2"/></g></svg>');
    pointer-events: none;
}

.services-section .container {
    position: relative;
    z-index: 2;
}

.services-section h2 {
    color: #1a1a1a;
    text-shadow: none;
}

.services-section>.container>p {
    color: #4a5568;
}

.services-section span {
    color: #3498db;
}

/* CTA Section */
.cta-section {
    background: #f8f9fa !important;
    color: #1a1a1a !important;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0 !important;
}

/* Homepage CTA - Keep Dark */
.cta-section.homepage-cta {
    background: linear-gradient(135deg, #0f1419 0%, #1a252f 50%, #2c3e50 100%) !important;
    color: white !important;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><circle cx="30" cy="30" r="2"/></g></svg>');
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2,
.cta-section p {
    color: #1a1a1a !important;
}

.cta-section.homepage-cta h2,
.cta-section.homepage-cta p {
    color: #ffffff !important;
}

.cta-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.cta-section h2 {
    color: #ffffff;
    margin-bottom: 32px;
}

.cta-section button {
    background: #ffffff;
    color: #000000 !important;
    font-weight: 600;
    padding: 18px 40px;
    font-size: 18px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 2px rgba(255, 255, 255, 0.8),
        0 0 8px rgba(255, 255, 255, 0.3);
    animation: buttonPulse 3s ease-in-out infinite;
}

.cta-section button:hover {
    background: #f8f9fa;
    color: #000000 !important;
    transform: translateY(-2px);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.9),
        0 0 15px rgba(255, 255, 255, 0.5);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0f1419 0%, #1a252f 50%, #2c3e50 100%);
    z-index: 1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><circle cx="30" cy="30" r="2"/></g></svg>');
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Button pulse animation */
@keyframes buttonPulse {
    0% {
        box-shadow:
            0 8px 32px rgba(0, 0, 0, 0.3),
            0 0 0 2px rgba(255, 255, 255, 0.8),
            0 0 8px rgba(255, 255, 255, 0.3);
    }

    50% {
        box-shadow:
            0 8px 32px rgba(0, 0, 0, 0.3),
            0 0 0 2px rgba(255, 255, 255, 0.9),
            0 0 15px rgba(255, 255, 255, 0.5),
            0 0 25px rgba(255, 255, 255, 0.3);
    }

    100% {
        box-shadow:
            0 8px 32px rgba(0, 0, 0, 0.3),
            0 0 0 2px rgba(255, 255, 255, 0.8),
            0 0 8px rgba(255, 255, 255, 0.3);
    }
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    height: 100%;
    max-width: 1400px;
}

.hero-content {
    color: white;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    color: #1e3a8a;
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-size: clamp(2.1rem, 4.2vw, 3.2rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 22px;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.005em;
    word-spacing: 0.1em;
}

.highlight-text {
    background: linear-gradient(135deg, #fff 0%, #e3f2fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #fff 0%, #e3f2fd 100%);
    border-radius: 2px;
}

.hero-description {
    font-size: 19px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 480px;
    letter-spacing: 0;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
    margin-top: 10px;
}

.btn-primary {
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
    text-transform: none;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 2px rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 180px;
    position: relative;
    z-index: 20;
    animation: buttonPulse 3s ease-in-out infinite;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #f8f9fa;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 0 3px rgba(255, 255, 255, 1),
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 60px rgba(255, 255, 255, 0.6),
        0 0 90px rgba(255, 255, 255, 0.4);
}

/* Service Learn More Buttons */
.service-button {
    background: #3498db;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.15s ease;
    cursor: pointer;
}

.service-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

/* About Learn More Button */
.about-button {
    background: #3498db;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.15s ease;
    cursor: pointer;
}

.about-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

/* Pricing Buttons */
.pricing-button {
    background: #3498db;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.15s ease;
    cursor: pointer;
    border: none;
}

.pricing-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.8);
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
    text-transform: none;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 180px;
    position: relative;
    z-index: 20;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.play-icon {
    font-size: 12px;
}

.hero-visual {
    position: relative;
    height: 500px;
    z-index: 3;
}

.dashboard-mockup {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mockup-header {
    background: #f8f9fa;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e9ecef;
}

.mockup-dots {
    display: flex;
    gap: 8px;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dee2e6;
}

.mockup-dots span:first-child {
    background: #ff5f56;
}

.mockup-dots span:nth-child(2) {
    background: #ffbd2e;
}

.mockup-dots span:last-child {
    background: #27ca3f;
}

.mockup-title {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
}

.mockup-content {
    padding: 24px;
    background: #1e1e1e;
    min-height: 300px;
}

.code-lines {
    font-family: 'Fira Code', 'Monaco', monospace;
    font-size: 14px;
    line-height: 1.6;
}

.code-line {
    margin-bottom: 8px;
    opacity: 0;
    animation: typewriter 3s forwards;
}

.code-line:nth-child(1) {
    animation-delay: 0.5s;
}

.code-line:nth-child(2) {
    animation-delay: 1s;
}

.code-line:nth-child(3) {
    animation-delay: 1.5s;
}

.code-line:nth-child(4) {
    animation-delay: 2s;
}

.code-tag {
    color: #f92672;
}

.code-attr {
    color: #a6e22e;
}

.code-value {
    color: #e6db74;
}

.code-text {
    color: #f8f8f2;
}

.code-indent {
    color: transparent;
}

@keyframes typewriter {
    to {
        opacity: 1;
    }
}

.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: cardFloat 6s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    right: -20px;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    left: -30px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 30%;
    right: -10px;
    animation-delay: 4s;
}

.card-icon {
    font-size: 18px;
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 600;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
    color: #1a1a1a;
    line-height: 1.2;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #1a1a1a;
}

p {
    color: #666666;
    line-height: 1.7;
    margin-bottom: 20px;
}

span {
    color: #3498db;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 16px;
}

/* Buttons */
button {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    letter-spacing: 0.5px;
    box-shadow:
        0 4px 12px rgba(52, 152, 219, 0.2),
        0 2px 4px rgba(52, 152, 219, 0.3);
    position: relative;
    overflow: hidden;
}



/* Hero section button styling */
section:first-child button {
    background: #ffffff;
    color: #000000 !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    font-weight: 600;
}

section:first-child button:hover {
    background: #f8f9fa;
    color: #000000 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

button:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(52, 152, 219, 0.3);
}

/* Services Grid */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service:nth-child(1) {
    animation: slideInUp 0.3s ease 0.05s both;
}

.service:nth-child(2) {
    animation: slideInUp 0.3s ease 0.1s both;
}

.service:nth-child(3) {
    animation: slideInUp 0.3s ease 0.15s both;
}

.service:nth-child(4) {
    animation: slideInUp 0.3s ease 0.2s both;
}

.service:nth-child(5) {
    animation: slideInUp 0.3s ease 0.25s both;
}

.service:nth-child(6) {
    animation: slideInUp 0.3s ease 0.3s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 48px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: box-shadow 0.3s ease;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 8px 40px rgba(0, 0, 0, 0.12),
        0 16px 80px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}




/*
.service:hover {
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.15),
        0 20px 80px rgba(0, 0, 0, 0.2),
        0 40px 160px rgba(0, 0, 0, 0.12);
}
*/

.services-section .service {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #1a1a1a;
}

.services-section .service h3 {
    color: #1a1a1a;
}

.services-section .service p {
    color: #4a5568;
}

.services-section .service svg {
    filter: none;
    transition: all 0s ease;
}

.service svg {
    transition: all 0s ease;
}



.services-section .service svg path,
.services-section .service svg rect,
.services-section .service svg circle,
.services-section .service svg line {
    stroke: #3498db;
}

/*
.services-section .service:hover {
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.15),
        0 20px 80px rgba(0, 0, 0, 0.2),
        0 40px 160px rgba(0, 0, 0, 0.12);
}
        */

.service img {
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 24px;
    border: 5px solid #3498db;
    border-radius: 60px;
    padding: 10px;
}

/* Pricing */
.pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.pricing-item {
    background: #ffffff;
    padding: 48px 40px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.15s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    color: inherit;
    display: block;
}

.pricing-item:hover {
    transform: translateY(-8px);
    border-color: rgba(52, 152, 219, 0.5);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.pricing-item.featured {
    border-color: #3498db;
    background: rgba(52, 152, 219, 0.05);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #3498db;
    color: white;
    padding: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    margin: 20px 0;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.pricing-item ul {
    list-style: none;
    text-align: left;
    margin: 32px 0;
}

.pricing-item ul li {
    padding: 8px 0;
    color: #666666;
    position: relative;
    padding-left: 24px;
}

.pricing-item ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

/* Portfolio */
/* Portfolio Section */
.portfolio-section {
    background: linear-gradient(135deg, #0f1419 0%, #1a252f 50%, #2c3e50 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><circle cx="30" cy="30" r="2"/></g></svg>');
    pointer-events: none;
}

.portfolio-section .container {
    position: relative;
    z-index: 2;
}

.portfolio-section h2 {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.portfolio-section>.container>p {
    color: rgba(255, 255, 255, 0.9);
}

.portfolio-section span {
    color: #ffffff;
}

.portfolio-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.portfolio {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.portfolio-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.portfolio-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.portfolio-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.portfolio-content p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.portfolio-description {
    color: #666 !important;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.6;
    margin-top: auto;
    font-style: normal;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.portfolio-button {
    background: #3498db;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    margin-top: 15px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.portfolio-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

/* Testimonials */
.testimonials-section {
    background: linear-gradient(135deg, #0f1419 0%, #1a252f 50%, #2c3e50 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><circle cx="30" cy="30" r="2"/></g></svg>');
    pointer-events: none;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

.testimonials-section h2 {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.testimonials-section span {
    color: #ffffff;
}

.testimonials-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.testimonial-single {
    max-width: 800px;
    margin: 60px auto 0;
    text-align: center;
}

.testimonial-single blockquote {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0;
}

.testimonial-single blockquote p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ffffff;
    font-style: italic;
}

.testimonial-single cite {
    font-weight: 600;
    color: #ffffff;
    font-style: normal;
    opacity: 0.9;
}

/* Contact */
.contact-content {
    display: flex;
    gap: 60px;
    margin-top: 60px;
    align-items: flex-start;
}

.contact-left {
    flex: 1;
    max-width: 400px;
}

.contact-right {
    flex: 1;
    max-width: 600px;
}

.contact-item {
    margin-bottom: 40px;
    padding: 30px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.contact-item h3 {
    color: #3498db;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-item p {
    color: #333;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form form {
    display: grid;
    gap: 24px;
}

.contact-form input,
.contact-form textarea {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 16px;
    color: #1a1a1a;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.15s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #3498db;
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(52, 152, 219, 0.15);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999999;
}

/* Footer */
/* Footer */
.footer-section {
    background: linear-gradient(135deg, #0f1419 0%, #1a252f 50%, #2c3e50 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 80px 0 40px;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><circle cx="30" cy="30" r="2"/></g></svg>');
    pointer-events: none;
}

.footer-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.footer-left img {
    height: 50px;
    width: auto;
    margin-bottom: 24px;
}

.footer-left p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #0f1419 0%, #1a252f 50%, #2c3e50 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    font-weight: 700;
    color: #ffffff;
}

.page-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.text-center {
    text-align: center;
    margin-top: 40px;
}

.cta-button {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
    background: #2980b9;
}

.cta-section.homepage-cta .cta-button {
    background: #ffffff;
    color: #1a1a1a;
}

.cta-section.homepage-cta .cta-button:hover {
    background: #f8f9fa;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* About Page Services - Dark Background */
.services-section.about-services {
    background: linear-gradient(135deg, #0f1419 0%, #1a252f 50%, #2c3e50 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.services-section.about-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><circle cx="30" cy="30" r="2"/></g></svg>');
    pointer-events: none;
}

.services-section.about-services .container {
    position: relative;
    z-index: 2;
}

.services-section.about-services h2,
.services-section.about-services p {
    color: #ffffff;
}

.services-section.about-services span {
    color: #ffffff;
}

.services-section.about-services .service h3,
.services-section.about-services .service p {
    color: #1a1a1a !important;
}

/* Services Page Pricing - Dark Background */
.pricing-section.services-pricing {
    background: linear-gradient(135deg, #0f1419 0%, #1a252f 50%, #2c3e50 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.pricing-section.services-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><circle cx="30" cy="30" r="2"/></g></svg>');
    pointer-events: none;
}

.pricing-section.services-pricing .container {
    position: relative;
    z-index: 2;
}

.pricing-section.services-pricing h2,
.pricing-section.services-pricing p {
    color: #ffffff;
}

.pricing-section.services-pricing span {
    color: #ffffff;
}

/* Fix pricing cards for dark backgrounds */
.pricing-section.services-pricing .pricing-item {
    color: #1a1a1a;
}

.pricing-section.services-pricing .pricing-item h3,
.pricing-section.services-pricing .pricing-item .price,
.pricing-section.services-pricing .pricing-item .price span,
.pricing-section.services-pricing .pricing-item ul li {
    color: #1a1a1a !important;
}

.pricing-section.services-pricing .pricing-item.featured {
    background: #f8f9fa;
    border: 2px solid #3498db;
}

.pricing-section.services-pricing .pricing-item.featured h3,
.pricing-section.services-pricing .pricing-item.featured .price,
.pricing-section.services-pricing .pricing-item.featured .price span,
.pricing-section.services-pricing .pricing-item.featured ul li {
    color: #1a1a1a !important;
}

/* Services Detailed List Styling */
.services-detailed-list {
    max-width: 1000px;
    margin: 0 auto;
}

.service-detail {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #3498db;
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.service-header .service-icon {
    width: 48px;
    height: 48px;
    margin-right: 20px;
    flex-shrink: 0;
}

.service-header h3 {
    margin: 0;
    color: #1a1a1a;
    font-size: 24px;
    font-weight: 600;
}

.service-detail > p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-features h4 {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

@media (max-width: 768px) {
    .service-detail {
        padding: 30px 20px;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
    }
    
    .service-header .service-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* Contact Page Pricing - Dark Background */
.pricing-section.contact-pricing {
    background: linear-gradient(135deg, #0f1419 0%, #1a252f 50%, #2c3e50 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.pricing-section.contact-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><circle cx="30" cy="30" r="2"/></g></svg>');
    pointer-events: none;
}

.pricing-section.contact-pricing .container {
    position: relative;
    z-index: 2;
}

.pricing-section.contact-pricing h2,
.pricing-section.contact-pricing p {
    color: #ffffff;
}

.pricing-section.contact-pricing span {
    color: #ffffff;
}

/* Fix pricing cards for dark backgrounds */
.pricing-section.contact-pricing .pricing-item {
    color: #1a1a1a;
}

.pricing-section.contact-pricing .pricing-item h3,
.pricing-section.contact-pricing .pricing-item .price,
.pricing-section.contact-pricing .pricing-item .price span,
.pricing-section.contact-pricing .pricing-item ul li {
    color: #1a1a1a !important;
}

.pricing-section.contact-pricing .pricing-item.featured {
    background: #f8f9fa;
    border: 2px solid #3498db;
}

.pricing-section.contact-pricing .pricing-item.featured h3,
.pricing-section.contact-pricing .pricing-item.featured .price,
.pricing-section.contact-pricing .pricing-item.featured .price span,
.pricing-section.contact-pricing .pricing-item.featured ul li {
    color: #1a1a1a !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav .container {
        padding: 12px 16px;
        height: 70px;
    }

    nav .menu ul li.nav-phone .phone-button {
        background: #3498db !important;
        color: #ffffff !important;
        border: none !important;
        padding: 12px 24px !important;
        border-radius: 8px;
        font-weight: 600;
        display: inline-block;
        text-decoration: none;
        transition: all 0.3s ease;
        text-align: center;
        margin: 0 auto;
        border-bottom: none !important;
    }
    
    nav .menu ul li.nav-phone .phone-button:hover {
        background: #2980b9 !important;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
    }

    header.scrolled nav .container {
        height: 60px;
    }

    /* Show hamburger on mobile */
    .hamburger {
        display: flex;
    }

    /* Hide menu by default on mobile */
    nav .menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease;
        z-index: 998;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    /* Ensure mobile menu doesn't interfere with hero navbar */
    header:not(.scrolled) nav .menu {
        background: rgba(255, 255, 255, 0.95);
    }

    header.scrolled nav .menu {
        top: 60px;
    }

    /* Show menu when active */
    nav .menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Ensure header has higher z-index */
    header {
        z-index: 999;
    }

    /* Only apply relative positioning when scrolled on mobile */
    header.scrolled {
        position: fixed;
    }

    /* Stack menu items vertically */
    nav .menu ul {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }

    nav .menu ul li {
        width: 100%;
        text-align: center;
    }

    nav .menu ul li a {
        display: block;
        padding: 15px 0;
        font-size: 16px;
        color: #1a1a1a;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        text-shadow: none;
    }

    nav .menu ul li:last-child a {
        border-bottom: none;
    }
    
    nav .menu ul li.nav-phone {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        border-bottom: none !important;
        padding: 20px 0 !important;
        width: 100% !important;
        text-align: center !important;
    }
    
    nav .menu ul li.nav-phone a {
        border-bottom: none !important;
        padding: 0 !important;
        display: flex !important;
        justify-content: center !important;
        width: auto !important;
    }

    /* Keep the same hero behavior - no margin-top override */
    main {
        margin-top: 0;
    }

    section {
        padding: 60px 0;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 0;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
        gap: 20px;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-visual {
        height: 400px;
    }

    .floating-cards .card {
        position: static;
        margin: 10px auto;
        display: inline-flex;
    }

    .services {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service {
        padding: 40px;
    }

    .pricing {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .portfolio {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonials {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-content {
        flex-direction: column;
        gap: 20px;
        margin-top: 20px;
    }

    .contact-left,
    .contact-right {
        max-width: 100%;
        width: 100%;
    }
    
    .contact-form {
        max-width: 100%;
        margin: 0 auto;
        width: 100%;
    }
    
    .contact-form form {
        gap: 20px;
    }
    
    .contact-form input,
    .contact-form textarea {
        width: 100%;
        box-sizing: border-box;
        font-size: 16px;
        padding: 18px;
    }
    
    .contact-form button {
        width: 100%;
        padding: 18px;
        font-size: 16px;
        margin-top: 8px;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Tablet specific styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .contact-form {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .contact-content {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    nav .menu ul {
        gap: 8px;
    }
    
    .contact-content {
        margin-top: 15px;
        gap: 15px;
    }
    
    .contact-form {
        padding: 0;
    }
    
    .contact-form form {
        gap: 16px;
    }

    section {
        padding: 40px 0;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    button {
        width: 100%;
        padding: 16px;
    }
}

/* Two-column section layout */
.content-left,
.content-right {
    flex: 1;
}

.container:has(.content-left) {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Founder Photo */
.founder-photo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    height: 100%;
    position: relative;
}

.founder-photo img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: cover;
    aspect-ratio: 1;
}

.founder-photo img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.2),
        0 12px 30px rgba(0, 0, 0, 0.15);
}

.founder-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    z-index: 10;
}

.founder-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.badge-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.badge-company {
    font-weight: 500;
    font-size: 0.8rem;
    color: #3498db;
    margin-bottom: 2px;
}

.badge-title {
    font-weight: 400;
    font-size: 0.75rem;
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container:has(.content-left) {
        flex-direction: column;
        gap: 40px;
    }

    .founder-photo {
        padding: 20px 10px;
    }

    .founder-photo img {
        max-width: 300px;
    }
}