/* ==================================================
   SERVICIOS - ESTILOS BASE Y COMPONENTES
   Estilo armónico con ContentMain.css y MainView.css
================================================== */

/* Hero base de servicios */
.service-hero {
    min-height: 480px;
    padding: 100px 24px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    text-align: center;
}

.service-hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.breadcrumb-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 6px 18px;
    background-color: rgba(232, 237, 214, 0.18);
    border: 1px solid rgba(232, 237, 214, 0.35);
    border-radius: 999px;
    color: #e8edd6;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}

.service-hero h1 {
    margin-bottom: 22px;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(40px, 6vw, 76px);
    font-weight: 400;
    line-height: 1.1;
}

.service-hero h1 span {
    color: #dce4c1;
    font-style: italic;
}

.service-hero p {
    max-width: 760px;
    margin: 0 auto 36px;
    color: #f1f1f1;
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    background-color: #e8edd6;
    border: 1px solid #e8edd6;
    border-radius: 999px;
    color: #24271e;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.hero-button:hover {
    background-color: transparent;
    color: #ffffff;
    transform: translateY(-3px);
}

.hero-button-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    background-color: transparent;
    border: 1px solid #e8edd6;
    border-radius: 999px;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.hero-button-outline:hover {
    background-color: #e8edd6;
    color: #24271e;
    transform: translateY(-3px);
}

/* ==================================================
   1. DESARROLLO WEB: ESTILO EDITORIAL & DIGITAL STUDIO
================================================== */
.web-hero {
    background: linear-gradient(rgba(20, 24, 18, 0.78), rgba(20, 24, 18, 0.78)), url("../images/Desarrollo.jpg");
    background-size: cover;
    background-position: center;
}

/* Timeline Horizontal de Proceso Web */
.web-process-section {
    padding: 90px 24px 70px;
    background-color: #ffffff;
    border-bottom: 1px solid #e8ebd8;
}

.process-stepper-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.process-step-box {
    padding: 30px 24px;
    background-color: #f7f5ef;
    border: 1px solid #e9ede0;
    border-radius: 8px;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.process-step-box:hover {
    border-color: #7f8767;
    transform: translateY(-5px);
}

.step-header-tag {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.step-num-badge {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e4e9d2;
    border-radius: 50%;
    color: #4d533e;
    font-size: 13px;
    font-weight: 700;
}

.step-icon-wrap {
    font-size: 24px;
    color: #7f8767;
}

.process-step-box h4 {
    margin-bottom: 10px;
    color: #242424;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: 400;
}

.process-step-box p {
    margin: 0;
    color: #656565;
    font-size: 13.5px;
    line-height: 1.7;
}

/* Tarjetas de Proyectos Web estilo Ventana de Navegador */
.web-browser-card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border: 1px solid #dde3ce;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.web-browser-card:hover {
    border-color: #7f8767;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

.browser-header-bar {
    padding: 12px 18px;
    background-color: #24271e;
    display: flex;
    align-items: center;
    gap: 14px;
}

.browser-dots {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.browser-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: inline-block;
}

.dot-red { background-color: #ff5f56; }
.dot-yellow { background-color: #ffbd2e; }
.dot-green { background-color: #27c93f; }

.browser-url-pill {
    flex: 1;
    min-width: 0;
    background-color: rgba(255, 255, 255, 0.12);
    padding: 4px 12px;
    border-radius: 999px;
    color: #dce4c1;
    font-size: 11px;
    letter-spacing: 0.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.browser-metric-tag {
    font-size: 11px;
    color: #27c93f;
    font-weight: 600;
    flex-shrink: 0;
}

.web-card-body {
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* ==================================================
   2. APLICACIONES MÓVILES: ESTILO SMARTPHONE & APP STUDIO
================================================== */
.movil-hero {
    background: linear-gradient(rgba(18, 30, 25, 0.82), rgba(18, 30, 25, 0.82)), url("../images/Flores.jpg");
    background-size: cover;
    background-position: center;
}

/* Notificaciones Flotantes en Hero */
.mobile-floating-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 35px;
}

.floating-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    color: #ffffff;
    font-size: 13px;
    backdrop-filter: blur(6px);
}

.floating-pill i {
    color: #92e3be;
    font-size: 16px;
}

/* Comparativa Nativo vs Multiplataforma */
.mobile-architecture-section {
    padding: 95px 24px 80px;
    background-color: #f7f5ef;
}

.mobile-arch-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 45px;
}

.mobile-arch-card {
    padding: 40px 34px;
    background-color: #ffffff;
    border: 1px solid #dbe3d2;
    border-radius: 8px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.mobile-arch-card:hover {
    border-color: #387a67;
    transform: translateY(-4px);
}

.mobile-arch-badge {
    display: inline-block;
    padding: 4px 12px;
    background-color: #e2f2ec;
    border-radius: 999px;
    color: #215949;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.mobile-arch-card h3 {
    margin-bottom: 12px;
    color: #1f2e27;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 400;
}

.mobile-arch-card p {
    color: #55625c;
    font-size: 14.5px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Tarjeta en Formato Smartphone Vertical */
.smartphone-card-frame {
    background-color: #ffffff;
    border: 2px solid #202b26;
    border-radius: 28px;
    padding: 18px 20px 26px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 16px 36px rgba(18, 30, 25, 0.08);
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.smartphone-card-frame:hover {
    border-color: #387a67;
    box-shadow: 0 24px 50px rgba(18, 30, 25, 0.15);
    transform: translateY(-8px);
}

.phone-notch-bar {
    width: 90px;
    height: 12px;
    background-color: #202b26;
    border-radius: 0 0 10px 10px;
    margin: -18px auto 14px;
}

.phone-top-icons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    color: #7b8882;
    margin-bottom: 16px;
    padding: 0 4px;
}

.phone-app-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.phone-app-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1c2b24 0%, #387a67 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    flex-shrink: 0;
}

.phone-app-meta h4 {
    margin: 0 0 4px;
    color: #202723;
    font-size: 16px;
    font-weight: 600;
}

.phone-app-rating {
    font-size: 12px;
    color: #e59a18;
}

.phone-app-rating span {
    color: #697771;
    margin-left: 4px;
}

.smartphone-card-frame p {
    color: #55625c;
    font-size: 13.5px;
    line-height: 1.75;
    margin-bottom: 18px;
}

/* ==================================================
   3. SISTEMAS DE ESCRITORIO: ESTILO CONSOLA & HARDWARE
================================================== */
.escritorio-hero {
    background: linear-gradient(rgba(24, 27, 28, 0.85), rgba(24, 27, 28, 0.85)), url("../images/Desarrollo.jpg");
    background-size: cover;
    background-position: center;
}

/* Consola de Estado en Hero */
.desktop-console-status {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 8px 22px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(232, 237, 214, 0.25);
    border-radius: 999px;
    margin-top: 30px;
    font-family: Consolas, monospace;
    font-size: 13px;
    color: #dce4c1;
}

.console-indicator-dot {
    width: 8px;
    height: 8px;
    background-color: #27c93f;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #27c93f;
}

/* Estación de Periféricos Conectados */
.hardware-station-section {
    padding: 95px 24px 80px;
    background-color: #ffffff;
    border-bottom: 1px solid #e7ebe8;
}

.hardware-station-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 45px;
}

.hardware-item-card {
    padding: 30px 22px;
    background-color: #f6f7f5;
    border: 1px solid #e0e4e1;
    border-radius: 6px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.hardware-item-card:hover {
    border-color: #55625c;
    background-color: #ffffff;
    transform: translateY(-5px);
}

.hardware-icon-wrap {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e5ebe7;
    border-radius: 50%;
    color: #313d37;
    font-size: 26px;
}

.hardware-item-card h4 {
    margin-bottom: 8px;
    color: #232825;
    font-size: 18px;
    font-weight: 600;
}

.hardware-item-card p {
    margin: 0;
    color: #636e68;
    font-size: 13px;
    line-height: 1.65;
}

/* Tarjetas Estilo Módulo de Aplicación Windows */
.desktop-module-window {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border: 1px solid #d4ded8;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.desktop-module-window:hover {
    border-color: #4f5f58;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.09);
    transform: translateY(-7px);
}

.window-title-bar {
    padding: 10px 16px;
    background-color: #2a312e;
    color: #e8ebe9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12.5px;
    font-weight: 500;
    gap: 10px;
    min-width: 0;
}

.window-title-bar span {
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.window-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8c9792;
    font-size: 10px;
    flex-shrink: 0;
}

.window-body {
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.window-footer-bar {
    padding: 10px 20px;
    background-color: #f6f8f7;
    border-top: 1px solid #eef1ef;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: #616e68;
}

/* ==================================================
   4. BASES DE DATOS: ESTILO CENTRO DE DATOS & TUNING
================================================== */
.bd-hero {
    background: linear-gradient(rgba(18, 25, 32, 0.88), rgba(18, 25, 32, 0.88)), url("../images/Desarrollo.jpg");
    background-size: cover;
    background-position: center;
}

/* Telemetría de Rendimiento en Hero */
.bd-telemetry-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 35px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    backdrop-filter: blur(8px);
}

.telemetry-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #dce4c1;
    font-size: 13.5px;
    font-family: Consolas, monospace;
}

.telemetry-item i {
    color: #64b5f6;
}

/* Comparativa Antes vs Después del Tuning */
.bd-tuning-section {
    padding: 95px 24px 80px;
    background-color: #f7f5ef;
}

.tuning-comparison-card {
    max-width: 980px;
    margin: 45px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #ffffff;
    border: 1px solid #dbe2d6;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.05);
}

.tuning-side {
    padding: 38px 32px;
}

.tuning-side-before {
    background-color: #faf7f7;
    border-right: 1px solid #ece7e7;
}

.tuning-side-after {
    background-color: #f7faf7;
}

.tuning-label {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.label-red {
    background-color: #fee2e2;
    color: #b91c1c;
}

.label-green {
    background-color: #dcfce7;
    color: #15803d;
}

.tuning-metric-num {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    margin-bottom: 8px;
}

.num-red { color: #b91c1c; }
.num-green { color: #15803d; }

.tuning-side ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13.5px;
}

.tuning-side-before li {
    color: #6b7280;
}

.tuning-side-after li {
    color: #374151;
    font-weight: 500;
}

/* Tarjetas Estilo Pilar de Datos */
.data-pillar-card {
    background-color: #ffffff;
    border: 1px solid #e0e8ea;
    border-radius: 8px;
    padding: 34px 28px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    border-top: 4px solid #3a506b;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.data-pillar-card:hover {
    border-top-color: #7f8767;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    transform: translateY(-7px);
}

.pillar-header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.pillar-icon-box {
    width: 50px;
    height: 50px;
    background-color: #eaf1f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3a506b;
    font-size: 22px;
}

/* ==================================================
   PORTAFOLIO COMÚN Y BOTONES "COTIZAR PROYECTO SIMILAR"
================================================== */
.portfolio-section {
    padding: 110px 24px;
    background-color: #ffffff;
}

.portfolio-heading {
    width: min(100%, 780px);
    margin: 0 auto 70px;
    text-align: center;
}

.portfolio-heading h2 {
    margin-bottom: 20px;
    color: #252525;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    line-height: 1.15;
}

.portfolio-heading h2 span {
    color: #7f8767;
    font-style: italic;
}

.portfolio-heading p {
    color: #696969;
    font-size: 16px;
    line-height: 1.8;
}

.portfolio-grid {
    width: min(100%, 1250px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Tipografía y elementos de tarjetas de proyectos */
.web-card-body h3,
.window-body h3,
.data-pillar-card h3 {
    margin: 0 0 12px;
    color: #202422;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.35;
}

.web-card-body p,
.window-body p,
.data-pillar-card p {
    color: #55625c;
    font-size: 13.5px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.project-category-badge,
.pillar-badge {
    display: inline-block;
    padding: 4px 12px;
    background-color: #eaf1f4;
    border: 1px solid #d0e0e6;
    border-radius: 999px;
    color: #3a506b;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Etiquetas y Chips Tecnológicos */
.project-tech-tags {
    margin-top: auto;
    margin-bottom: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    display: inline-block;
    padding: 4px 11px;
    background-color: #eef2e2;
    border: 1px solid #dfe5c9;
    border-radius: 999px;
    color: #4a513c;
    font-size: 12px;
    font-weight: 500;
}

/* BOTÓN "COTIZAR PROYECTO SIMILAR" */
.project-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 22px;
    margin-top: auto;
    background-color: #20221c;
    border: 1px solid #20221c;
    border-radius: 999px;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.2px;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 12px rgba(32, 34, 28, 0.12);
}

.project-link:hover {
    background-color: #7f8767;
    border-color: #7f8767;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(127, 135, 103, 0.25);
}

.project-link span {
    display: inline-block;
    transition: transform 0.25s ease;
}

.project-link:hover span {
    transform: translateX(4px);
}

/* Franja de Tecnologías */
.tech-strip-section {
    padding: 80px 24px;
    background-color: #f7f5ef;
    border-top: 1px solid #e9ede0;
    border-bottom: 1px solid #e9ede0;
}

.tech-strip-container {
    width: min(100%, 1250px);
    margin: 0 auto;
    text-align: center;
}

.tech-strip-container h3 {
    margin-bottom: 35px;
    color: #252525;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 400;
}

.tech-strip-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

.tech-strip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 22px;
    background-color: #ffffff;
    border: 1px solid #dfe5c9;
    border-radius: 999px;
    color: #383c30;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.tech-strip-item:hover {
    transform: translateY(-3px);
    background-color: #f0f4e4;
}

.tech-strip-item i {
    color: #7f8767;
    font-size: 18px;
}

/* ==================================================
   RESPONSIVE PARA TODOS LOS COMPONENTES
================================================== */
@media (max-width: 1050px) {
    .process-stepper-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hardware-station-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mobile-arch-grid {
        grid-template-columns: 1fr;
    }

    .tuning-comparison-card {
        grid-template-columns: 1fr;
    }

    .tuning-side-before {
        border-right: none;
        border-bottom: 1px solid #ece7e7;
    }

    /* Grilla de proyectos en tablets (2 columnas para balancear los 6 proyectos) */
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 800px) {
    .service-hero {
        padding-top: 80px;
        padding-bottom: 60px;
        min-height: 420px;
    }

    .web-process-section,
    .mobile-architecture-section,
    .hardware-station-section,
    .bd-tuning-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    /* Grilla de proyectos en pantallas intermedias (1 columna centrada) */
    .portfolio-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .portfolio-heading {
        margin-bottom: 40px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        width: min(100%, 580px);
        margin: 0 auto;
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .service-hero {
        min-height: 380px;
        padding-left: 18px;
        padding-right: 18px;
    }

    .process-stepper-grid,
    .hardware-station-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-button,
    .hero-button-outline {
        width: 100%;
        text-align: center;
    }

    .mobile-floating-pills,
    .bd-telemetry-bar {
        flex-direction: column;
        gap: 12px;
    }

    /* Adaptación móvil óptima de proyectos para evitar compresión */
    .portfolio-section {
        padding: 55px 16px;
    }

    .portfolio-heading {
        margin-bottom: 28px;
    }

    .portfolio-heading h2 {
        font-size: clamp(26px, 7vw, 36px);
        margin-bottom: 12px;
    }

    .portfolio-heading p {
        font-size: 14.5px;
        line-height: 1.6;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        width: 100%;
        gap: 20px;
    }

    .web-card-body,
    .window-body,
    .data-pillar-card {
        padding: 22px 18px;
    }

    .smartphone-card-frame {
        padding: 16px 16px 22px;
        border-radius: 22px;
    }

    .web-card-body h3,
    .window-body h3,
    .data-pillar-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .web-card-body p,
    .window-body p,
    .data-pillar-card p,
    .smartphone-card-frame p {
        font-size: 13px;
        line-height: 1.65;
        margin-bottom: 16px;
    }

    .browser-header-bar {
        padding: 9px 12px;
        gap: 8px;
    }

    .browser-url-pill {
        font-size: 10px;
        padding: 3px 8px;
    }

    .browser-metric-tag {
        font-size: 10px;
    }

    .window-title-bar {
        padding: 8px 12px;
        font-size: 11.5px;
    }

    .window-footer-bar {
        padding: 8px 14px;
        font-size: 11px;
    }

    .phone-app-header {
        gap: 12px;
        margin-bottom: 14px;
    }

    .phone-app-icon {
        width: 42px;
        height: 42px;
        font-size: 19px;
    }

    .phone-app-meta h4 {
        font-size: 15px;
    }

    .pillar-header-wrap {
        margin-bottom: 16px;
    }

    .pillar-icon-box {
        width: 44px;
        height: 44px;
        font-size: 19px;
    }

    .project-tech-tags {
        margin-bottom: 16px;
        gap: 6px;
    }

    .tech-tag {
        font-size: 11px;
        padding: 3px 9px;
    }

    .project-category-badge,
    .pillar-badge {
        font-size: 10.5px;
        padding: 3px 10px;
    }

    .project-link {
        padding: 11px 18px;
        font-size: 13px;
    }
}

