/* Web Development Page Styles */

/* Page-level webdev styles */
.webdev-page {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #bae6fd 100%);
    font-family: 'JetBrains Mono', monospace;
}

.webdev-page h1, .webdev-page h2, .webdev-page h3, .webdev-page h4, .webdev-page h5, .webdev-page h6 {
    font-family: 'Orbitron', monospace;
}

/* Enhanced gradient effects for webdev theme */
.webdev-gradient-text {
    background: linear-gradient(135deg, #0ea5e9, #0284c7, #0369a1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Webdev-themed animations */
@keyframes webdevPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.webdev-icon {
    animation: webdevPulse 2s ease-in-out infinite;
}

/* Pixel grid background effect */
.pixel-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(14, 165, 233, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(2, 132, 199, 0.1) 0%, transparent 50%),
        linear-gradient(90deg, transparent 24%, rgba(14, 165, 233, 0.05) 25%, rgba(14, 165, 233, 0.05) 26%, transparent 27%, transparent 74%, rgba(14, 165, 233, 0.05) 75%, rgba(14, 165, 233, 0.05) 76%, transparent 77%);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: -1;
}

/* Web Development Hero Section Styles */
.webdev-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 4rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #bae6fd 100%);
    position: relative;
    overflow: hidden;
}

.webdev-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.webdev-hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.webdev-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(14, 165, 233, 0.1);
    border: 2px solid rgba(14, 165, 233, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    width: fit-content;
    backdrop-filter: blur(10px);
}

.webdev-badge .badge-icon {
    font-size: 1.2rem;
}

.webdev-badge .badge-text {
    font-weight: 600;
    color: #0369a1;
    font-size: 0.9rem;
}

.webdev-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: #1e293b;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.webdev-hero-title .greeting-text-bold {
    font-weight: 700;
    color: #334155;
}

.webdev-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #475569;
    font-weight: 400;
}

.webdev-hero-benefits {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.webdev-hero-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(14, 165, 233, 0.1);
}

.webdev-hero-benefits .benefit-icon {
    font-size: 1.2rem;
}

.webdev-hero-benefits .benefit-text {
    font-weight: 600;
    color: #334155;
    font-size: 0.9rem;
}

.webdev-hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.webdev-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.webdev-cta-button.primary {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
    border: 2px solid transparent;
}

.webdev-cta-button.primary:hover {
    background: linear-gradient(135deg, #0284c7, #0369a1);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.3);
}

.webdev-cta-button.secondary {
    background: rgba(255, 255, 255, 0.8);
    color: #0369a1;
    border: 2px solid rgba(14, 165, 233, 0.2);
    backdrop-filter: blur(10px);
}

.webdev-cta-button.secondary:hover {
    background: rgba(14, 165, 233, 0.1);
    border-color: rgba(14, 165, 233, 0.3);
    transform: translateY(-2px);
}

.webdev-cta-button .cta-icon {
    width: 20px;
    height: 20px;
}

/* Web Development Visual Showcase */
.webdev-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.webdev-showcase-container {
    width: 100%;
    max-width: 500px;
}

.website-showcase {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(14, 165, 233, 0.1);
    box-shadow: 0 20px 50px rgba(14, 165, 233, 0.1);
}

.showcase-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
}

.showcase-icon {
    font-size: 1.5rem;
}

.showcase-title {
    font-weight: 700;
    color: #1e293b;
    font-size: 1.1rem;
}

.showcase-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #059669;
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #059669;
}

.status-dot.active {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.website-layers {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.website-layer {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05), rgba(2, 132, 199, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(14, 165, 233, 0.1);
    transition: all 0.3s ease;
}

.website-layer:hover {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(2, 132, 199, 0.1));
    border-color: rgba(14, 165, 233, 0.2);
    transform: translateY(-2px);
}

.website-layer .layer-icon {
    font-size: 1.8rem;
    width: 50px;
    text-align: center;
}

.layer-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.layer-title {
    font-weight: 700;
    color: #1e293b;
    font-size: 1rem;
}

.layer-subtitle {
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 500;
}

.layer-techs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.tech-tag {
    background: rgba(14, 165, 233, 0.1);
    color: #0369a1;
    padding: 0.25rem 0.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.layer-metrics {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.metric-value {
    font-weight: 700;
    color: #0ea5e9;
    font-size: 0.9rem;
    line-height: 1;
}

.metric-label {
    font-size: 0.7rem;
    color: #64748b;
    font-weight: 500;
}

.showcase-stats {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(14, 165, 233, 0.1);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat-item {
    text-align: center;
}

.stat-label {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.stat-value {
    font-weight: 700;
    color: #0ea5e9;
    font-size: 1.2rem;
}

/* Web Development Overview Section */
.webdev-overview {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.webdev-overview-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(14, 165, 233, 0.1);
    border: 2px solid rgba(14, 165, 233, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.section-badge .badge-icon {
    font-size: 1.2rem;
}

.section-badge .badge-text {
    font-weight: 600;
    color: #0369a1;
    font-size: 0.9rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #475569;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.webdev-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.overview-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(14, 165, 233, 0.1);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.05);
    transition: all 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(14, 165, 233, 0.15);
    border-color: rgba(14, 165, 233, 0.2);
}

.card-icon {
    margin-bottom: 1.5rem;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(2, 132, 199, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border: 2px solid rgba(14, 165, 233, 0.2);
}

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.card-description {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* Transformation Demo */
.webdev-transformation-demo {
    margin: 4rem 0;
}

.demo-header {
    text-align: center;
    margin-bottom: 3rem;
}

.demo-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.demo-subtitle {
    font-size: 1.1rem;
    color: #475569;
}

.transformation-grid {
    display: flex;
    justify-content: center;
}

.before-after-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(14, 165, 233, 0.1);
    box-shadow: 0 20px 50px rgba(14, 165, 233, 0.1);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 900px;
    width: 100%;
}

.before-section, .after-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section-label {
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    text-align: center;
}

.section-label.before {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 2px solid rgba(239, 68, 68, 0.2);
}

.section-label.after {
    background: rgba(14, 165, 233, 0.1);
    color: #0369a1;
    border: 2px solid rgba(14, 165, 233, 0.2);
}

.performance-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: rgba(248, 250, 252, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(14, 165, 233, 0.1);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-number.positive {
    color: #059669;
}

.stat-number.negative {
    color: #dc2626;
}

.stat-description {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.impact-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.impact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
}

.impact-item.positive {
    background: rgba(5, 150, 105, 0.1);
    border: 1px solid rgba(5, 150, 105, 0.2);
}

.impact-item.negative {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.impact-icon {
    font-size: 1.2rem;
}

.impact-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #334155;
}

.arrow-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.transformation-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.3);
    animation: float 3s ease-in-out infinite;
}

.transformation-arrow svg {
    width: 24px;
    height: 24px;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Website Types */
.website-types {
    margin: 4rem 0;
}

.types-header {
    text-align: center;
    margin-bottom: 3rem;
}

.types-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.type-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(14, 165, 233, 0.1);
    transition: all 0.3s ease;
}

.type-item:hover {
    background: rgba(14, 165, 233, 0.05);
    border-color: rgba(14, 165, 233, 0.2);
    transform: translateY(-2px);
}

.type-icon {
    font-size: 2rem;
    width: 60px;
    text-align: center;
}

.type-content h4 {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.type-content p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Business Impact */
.business-impact {
    margin: 4rem 0;
}

.impact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.impact-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.impact-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(14, 165, 233, 0.1);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #0ea5e9;
    margin-bottom: 0.5rem;
}

.stat-description {
    color: #64748b;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Web Development Technologies Section */
.webdev-technologies {
    padding: 8rem 0;
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
    position: relative;
}

.webdev-technologies-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.tech-showcase {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 4rem;
}

.tech-category {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(14, 165, 233, 0.1);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.05);
}

.category-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.category-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.category-description {
    color: #64748b;
    font-size: 1.1rem;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.tech-item {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(14, 165, 233, 0.05));
    border-radius: 15px;
    border: 1px solid rgba(14, 165, 233, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tech-item:hover,
.tech-item.tech-highlight {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(2, 132, 199, 0.1));
    border-color: rgba(14, 165, 233, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(14, 165, 233, 0.15);
}

.tech-logo {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tech-name {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.tech-description {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.tech-usage {
    color: #0ea5e9;
    font-weight: 600;
    font-size: 0.8rem;
    background: rgba(14, 165, 233, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    display: inline-block;
}


/* Performance Comparison Table */
.performance-comparison {
    margin: 4rem 0;
}

.comparison-header {
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.comparison-subtitle {
    color: #64748b;
    font-size: 1.1rem;
}

.comparison-table {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(14, 165, 233, 0.1);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.05);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
}

.comparison-row.header {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(2, 132, 199, 0.1));
    font-weight: 700;
    color: #1e293b;
}

.comparison-cell {
    padding: 1.5rem 2rem;
    text-align: center;
    border-right: 1px solid rgba(14, 165, 233, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-cell:last-child {
    border-right: none;
}

.comparison-cell.advantage {
    color: #059669;
    font-weight: 600;
    background: rgba(5, 150, 105, 0.05);
}

/* Technology Benefits */
.technology-benefits {
    margin: 4rem 0;
}

.benefits-header {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(14, 165, 233, 0.1);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(14, 165, 233, 0.15);
    border-color: rgba(14, 165, 233, 0.2);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.benefit-description {
    color: #475569;
    line-height: 1.6;
    font-size: 1rem;
}

/* Web Development Process Section */
.webdev-process {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.webdev-process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 80px;
    bottom: 80px;
    width: 3px;
    background: linear-gradient(to bottom, #0ea5e9, #0284c7);
    border-radius: 50px;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(14, 165, 233, 0.1);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(14, 165, 233, 0.15);
    border-color: rgba(14, 165, 233, 0.2);
}

.timeline-item.active {
    border-color: rgba(14, 165, 233, 0.3);
    background: rgba(14, 165, 233, 0.05);
}

.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 100px;
    z-index: 2;
}

.marker-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(14, 165, 233, 0.3);
}

.marker-icon {
    font-size: 1.5rem;
    background: rgba(14, 165, 233, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(14, 165, 233, 0.2);
}

.timeline-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
}


.timeline-description {
    color: #475569;
    line-height: 1.6;
    font-size: 1rem;
}

.timeline-deliverables {
    margin: 1rem 0;
}

.timeline-deliverables h4 {
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.timeline-deliverables ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.timeline-deliverables li {
    color: #64748b;
    font-size: 0.9rem;
    padding-left: 1.5rem;
    position: relative;
}

.timeline-deliverables li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: 600;
}


/* Process Advantages */
.process-advantages {
    margin: 4rem 0;
}

.advantages-header {
    text-align: center;
    margin-bottom: 3rem;
}

.advantages-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.advantage-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(14, 165, 233, 0.1);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    background: rgba(14, 165, 233, 0.05);
    border-color: rgba(14, 165, 233, 0.2);
    transform: translateY(-2px);
}

.advantage-icon {
    font-size: 2rem;
    color: #0ea5e9;
    min-width: 50px;
}

.advantage-content h4 {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.advantage-content p {
    color: #64748b;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Timeline Comparison */
.timeline-comparison {
    margin: 4rem 0;
}

.comparison-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.comparison-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(14, 165, 233, 0.1);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.05);
}

.comparison-card.traditional {
    border-color: rgba(239, 68, 68, 0.2);
    background: rgba(239, 68, 68, 0.02);
}

.comparison-card.ai-enhanced {
    border-color: rgba(14, 165, 233, 0.3);
    background: rgba(14, 165, 233, 0.05);
    position: relative;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
}

.card-icon {
    font-size: 2rem;
}

.card-title {
    font-weight: 700;
    color: #1e293b;
    font-size: 1.2rem;
}

.card-timeline {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.timeline-phase {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(248, 250, 252, 0.8);
    border-radius: 8px;
    border: 1px solid rgba(14, 165, 233, 0.1);
}

.phase-name {
    font-weight: 600;
    color: #334155;
    font-size: 0.9rem;
}

.phase-duration {
    font-weight: 600;
    color: #64748b;
    font-size: 0.85rem;
}

.card-total {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(2, 132, 199, 0.1));
    border-radius: 10px;
    border: 1px solid rgba(14, 165, 233, 0.2);
    font-size: 1.1rem;
}

.card-savings {
    position: absolute;
    top: -10px;
    right: 20px;
}

.savings-badge {
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 5px 15px rgba(5, 150, 105, 0.3);
}


/* Web Development Examples Section */
.webdev-examples {
    padding: 8rem 0;
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
    position: relative;
}

.webdev-examples-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.examples-showcase {
    margin-bottom: 4rem;
}

.example-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(14, 165, 233, 0.1);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.example-card:hover,
.example-card.website-highlight {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(14, 165, 233, 0.15);
    border-color: rgba(14, 165, 233, 0.3);
}

.example-card.featured {
    margin-bottom: 3rem;
    border-color: rgba(14, 165, 233, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(14, 165, 233, 0.05));
}

.example-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
}

.example-category {
    background: rgba(14, 165, 233, 0.1);
    color: #0369a1;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.example-timeline {
    color: #64748b;
    font-weight: 600;
    font-size: 0.9rem;
}

.example-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.example-description {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.example-tech-stack {
    margin-bottom: 1.5rem;
}

.tech-label {
    font-weight: 600;
    color: #334155;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.tech-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tech-tag {
    background: rgba(14, 165, 233, 0.1);
    color: #0369a1;
    padding: 0.25rem 0.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.example-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(248, 250, 252, 0.8);
    border-radius: 8px;
    border: 1px solid rgba(14, 165, 233, 0.1);
}

.feature-icon {
    font-size: 1rem;
}

.feature-item span {
    font-size: 0.85rem;
    font-weight: 500;
    color: #334155;
}

.example-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    background: rgba(248, 250, 252, 0.8);
    border-radius: 8px;
    border: 1px solid rgba(14, 165, 233, 0.1);
}

.highlight-icon {
    font-size: 1rem;
}

.highlight-item span {
    font-size: 0.85rem;
    font-weight: 500;
    color: #334155;
}

.example-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(14, 165, 233, 0.1);
}

.result-item {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05), rgba(2, 132, 199, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(14, 165, 233, 0.1);
}

.result-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0ea5e9;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.result-label {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

.example-outcome {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(5, 150, 105, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(5, 150, 105, 0.2);
    color: #047857;
    font-weight: 600;
    font-size: 0.9rem;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Performance Showcase */
.performance-showcase {
    margin: 4rem 0;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(14, 165, 233, 0.1);
}

.performance-header {
    text-align: center;
    margin-bottom: 3rem;
}

.performance-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.performance-subtitle {
    color: #64748b;
    font-size: 1.1rem;
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.performance-item {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05), rgba(2, 132, 199, 0.05));
    border-radius: 15px;
    border: 1px solid rgba(14, 165, 233, 0.1);
}

.perf-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.perf-metric {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0ea5e9;
    margin-bottom: 0.5rem;
}

.perf-label {
    color: #64748b;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Development Comparison */
.development-comparison {
    margin: 4rem 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.comparison-section {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(14, 165, 233, 0.1);
}

.comparison-subtitle {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
    text-align: center;
}

.comparison-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comparison-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid;
}

.comparison-items.traditional .comparison-item {
    background: rgba(239, 68, 68, 0.05);
    border-color: rgba(239, 68, 68, 0.1);
}

.comparison-items.devstack .comparison-item {
    background: rgba(5, 150, 105, 0.05);
    border-color: rgba(5, 150, 105, 0.1);
}

.item-icon {
    font-size: 1.2rem;
    min-width: 20px;
}

.item-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: #334155;
}


/* Web Development CTA Section */
.webdev-cta {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.webdev-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(14, 165, 233, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(2, 132, 199, 0.1) 0%, transparent 50%);
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
}

.cta-header {
    max-width: 800px;
}

.cta-badge .badge-text {
    color: #7dd3fc;
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #cbd5e1;
}

.cta-value-props {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 900px;
}

.value-prop-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.prop-icon {
    font-size: 2rem;
    color: #7dd3fc;
    min-width: 50px;
    text-align: center;
}

.prop-content {
    flex: 1;
    text-align: left;
}

.prop-title {
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.prop-description {
    color: #cbd5e1;
    font-size: 0.9rem;
}

.cta-process-preview {
    width: 100%;
    max-width: 1000px;
}

.process-header {
    margin-bottom: 2rem;
}

.process-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(14, 165, 233, 0.3);
}

.step-title {
    font-weight: 700;
    color: white;
    font-size: 1rem;
}

.step-description {
    color: #cbd5e1;
    font-size: 0.85rem;
    line-height: 1.4;
}

.cta-urgency {
    width: 100%;
    max-width: 800px;
}

.urgency-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.urgency-icon {
    font-size: 2rem;
    color: #fbbf24;
}

.urgency-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.urgency-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.urgency-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fca5a5;
    margin-bottom: 0.5rem;
}

.stat-description {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.primary-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cta-button.primary-large {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
    border: 2px solid transparent;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.cta-button.primary-large:hover {
    background: linear-gradient(135deg, #0284c7, #0369a1);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(14, 165, 233, 0.4);
}

.button-text {
    font-size: 1.2rem;
}

.button-icon svg {
    width: 24px;
    height: 24px;
}

.action-note {
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 500;
}

.secondary-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.button-icon svg {
    width: 18px;
    height: 18px;
}

/* Animation classes */
.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Initial state for animations - only specific elements when JS loads */
.js-enabled .webdev-overview-grid .overview-card:not(.animate-in),
.js-enabled .webdev-technologies .tech-category:not(.animate-in),
.js-enabled .webdev-process .timeline-item:not(.animate-in),
.js-enabled .webdev-examples .example-card:not(.animate-in) {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

/* Make sure page content is visible by default */
.webdev-page {
    opacity: 1;
}

.webdev-hero {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .webdev-hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .webdev-hero-benefits {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .website-layers {
        gap: 0.75rem;
    }
    
    .website-layer {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .layer-techs {
        justify-content: center;
    }
    
    .before-after-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .arrow-section {
        display: flex;
        justify-content: center;
    }
    
    .transformation-arrow {
        transform: rotate(90deg);
    }
    
    .webdev-hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .comparison-cards {
        grid-template-columns: 1fr;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-value-props {
        grid-template-columns: 1fr;
    }
    
    .urgency-stats {
        grid-template-columns: 1fr;
    }
    
    
    .secondary-actions {
        flex-direction: column;
        align-items: center;
    }
    
}

@media (max-width: 480px) {
    .webdev-hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .webdev-overview-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .types-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
    }
    
    .performance-grid {
        grid-template-columns: 1fr;
    }
    
}